Skip to content

Commit

Permalink
fixed tuple args
Browse files Browse the repository at this point in the history
  • Loading branch information
0xNe0x1 committed Sep 23, 2024
1 parent 259e129 commit 8ff2f0b
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions demo.html
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@

window._debug(`window?.WorldApp: ${window?.WorldApp ? JSON.stringify(window?.WorldApp) : undefined}`)

window._debug(`v12`)
window._debug(`v13`)

});

Expand Down Expand Up @@ -325,14 +325,12 @@ <h5 class="px-4">WorldApp SendTransaction tuple</h5>
],
[ // permitTransferFromAndSignature
[ // permitTransferFrom
[
[ // permitted
USDCE, // token
amount // amount
],
nonce, // nonce
permitDeadline // deadline
]
[ // permitted
USDCE, // token
amount.toString() // amount
],
nonce.toString(), // nonce
permitDeadline.toString() // deadline
],
"PERMIT2_SIGNATURE_PLACEHOLDER_0"
]
Expand Down

0 comments on commit 8ff2f0b

Please sign in to comment.