Skip to content

Commit f61d2ef

Browse files
pantaovaygitbook-bot
authored andcommitted
GITBOOK-1177: No subject
1 parent d63f2ac commit f61d2ef

File tree

1 file changed

+6
-3
lines changed
  • developers/account-abstraction

1 file changed

+6
-3
lines changed

developers/account-abstraction/web.md

+6-3
Original file line numberDiff line numberDiff line change
@@ -88,17 +88,20 @@ Before send transactions, you can get fee quotes and display on UI Modal, users
8888

8989
<pre class="language-typescript"><code class="lang-typescript">const tx = {
9090
to: '0x...',
91-
value: '0x...'
91+
value: '0x...',
92+
data: '0x...',
9293
}
9394
// or bacth transactions
9495
const txs = [
9596
{
9697
to: '0x...',
97-
value: '0x...'
98+
value: '0x...',
99+
data: '0x...',
98100
},
99101
{
100102
to: '0x...',
101-
value: '0x...'
103+
value: '0x...',
104+
data: '0x...',
102105
}
103106
]
104107
//get fee quotes with tx or txs

0 commit comments

Comments
 (0)