Skip to content

Commit

Permalink
base: update
Browse files Browse the repository at this point in the history
  • Loading branch information
HoangVD2 committed May 7, 2024
1 parent ab7a164 commit 0bf6a88
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions gas-tank/balance-services.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,16 +146,16 @@ await fetch(`${GAS_TANK_ENDPOINT}/balances/increase`, {
"Authorization": `Bearer ${jwtToken}`, // JWT token // [!code highlight]
},
body: {
address: "string", // [!code highlight]
address: address, // [!code highlight]
tokenAddress: "string", // [!code highlight]
chain: "string", // [!code highlight]
owner: "string", // [!code highlight]
spender: "string", // [!code highlight]
value: "string", // [!code highlight]
deadline: 0, // [!code highlight]
v: 0, // [!code highlight]
r: "string", // [!code highlight]
s: "string" // [!code highlight]
v: v, // [!code highlight]
r: r, // [!code highlight]
s: s // [!code highlight]
},
})
.then((response) => {
Expand Down

0 comments on commit 0bf6a88

Please sign in to comment.