@swapkit/toolboxes 4.19.0 → 4.20.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. package/CHANGELOG.md +25 -0
  2. package/dist/chunk-3pne8gaa.js +1 -0
  3. package/dist/chunk-44m22jy1.js +1 -0
  4. package/dist/chunk-54gntgt1.js +2 -0
  5. package/dist/chunk-ntbvmmch.js +2 -0
  6. package/dist/chunk-x9db9hmg.js +1 -0
  7. package/dist/chunk-xs0j1eze.js +2 -0
  8. package/dist/src/aptos/index.js +1 -1
  9. package/dist/src/cardano/index.cjs +1 -1
  10. package/dist/src/cardano/index.js +1 -1
  11. package/dist/src/cosmos/index.cjs +1 -1
  12. package/dist/src/cosmos/index.js +1 -1
  13. package/dist/src/evm/index.cjs +1 -1
  14. package/dist/src/evm/index.js +1 -1
  15. package/dist/src/hypercore/index.cjs +1 -1
  16. package/dist/src/hypercore/index.js +1 -1
  17. package/dist/src/index.cjs +1 -1
  18. package/dist/src/index.js +1 -1
  19. package/dist/src/near/index.cjs +1 -1
  20. package/dist/src/near/index.js +1 -1
  21. package/dist/src/radix/index.cjs +1 -1
  22. package/dist/src/radix/index.js +1 -1
  23. package/dist/src/ripple/index.cjs +1 -1
  24. package/dist/src/ripple/index.js +1 -1
  25. package/dist/src/solana/index.js +1 -1
  26. package/dist/src/starknet/index.js +1 -1
  27. package/dist/src/stellar/index.js +1 -1
  28. package/dist/src/substrate/index.cjs +1 -1
  29. package/dist/src/substrate/index.js +1 -1
  30. package/dist/src/sui/index.js +1 -1
  31. package/dist/src/ton/index.cjs +1 -1
  32. package/dist/src/ton/index.js +1 -1
  33. package/dist/src/tron/index.cjs +1 -1
  34. package/dist/src/tron/index.js +1 -1
  35. package/dist/src/utxo/index.js +1 -1
  36. package/dist/types/cardano/toolbox.d.ts +1 -1
  37. package/dist/types/cosmos/toolbox/cosmos.d.ts +2 -3
  38. package/dist/types/evm/helpers.d.ts +11 -1
  39. package/dist/types/evm/toolbox/baseEVMToolbox.d.ts +90 -5
  40. package/dist/types/evm/toolbox/evm.d.ts +1584 -88
  41. package/dist/types/evm/toolbox/op.d.ts +72 -4
  42. package/dist/types/evm/types.d.ts +7 -7
  43. package/dist/types/near/toolbox.d.ts +1 -2
  44. package/dist/types/radix/index.d.ts +2 -2
  45. package/dist/types/ripple/index.d.ts +4 -8
  46. package/dist/types/substrate/substrate.d.ts +1 -1
  47. package/dist/types/ton/toolbox.d.ts +6 -6
  48. package/dist/types/ton/types.d.ts +5 -0
  49. package/dist/types/tron/index.d.ts +2 -2
  50. package/dist/types/tron/toolbox.d.ts +3 -1
  51. package/dist/types/tron/types.d.ts +5 -0
  52. package/package.json +4 -2
@@ -9,11 +9,79 @@ export declare function ETHToolbox(params: EVMToolboxParams): {
9
9
  approvedAmount: ({ assetAddress, spenderAddress, from }: import("..").IsApprovedParams) => Promise<bigint>;
10
10
  broadcastTransaction: ((signedTx: string) => Promise<import("ethers").TransactionResponse>) | ((signedTx: string) => Promise<import("ethers").TransactionResponse>);
11
11
  call: <T>({ callProvider, contractAddress, abi, funcName, funcParams, txOverrides, feeOption, }: import("..").CallParams) => Promise<T>;
12
- createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<import("ethers").ContractTransaction>;
12
+ createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<{
13
+ value: string;
14
+ to: string;
15
+ data: string;
16
+ from?: string;
17
+ type?: number;
18
+ nonce?: number;
19
+ gasLimit?: bigint;
20
+ gasPrice?: bigint;
21
+ maxPriorityFeePerGas?: bigint;
22
+ maxFeePerGas?: bigint;
23
+ chainId?: bigint;
24
+ accessList?: import("ethers").AccessList;
25
+ authorizationList?: Array<import("ethers").Authorization>;
26
+ customData?: any;
27
+ blockTag?: import("ethers").BlockTag;
28
+ enableCcipRead?: boolean;
29
+ }>;
13
30
  createContract: (address: string, abi: readonly (import("ethers").JsonFragment | import("ethers").Fragment)[]) => import("ethers").Contract;
14
- createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<import("ethers").ContractTransaction>;
15
- createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
16
- createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
31
+ createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<{
32
+ value: string;
33
+ to: string;
34
+ data: string;
35
+ from?: string;
36
+ type?: number;
37
+ nonce?: number;
38
+ gasLimit?: bigint;
39
+ gasPrice?: bigint;
40
+ maxPriorityFeePerGas?: bigint;
41
+ maxFeePerGas?: bigint;
42
+ chainId?: bigint;
43
+ accessList?: import("ethers").AccessList;
44
+ authorizationList?: Array<import("ethers").Authorization>;
45
+ customData?: any;
46
+ blockTag?: import("ethers").BlockTag;
47
+ enableCcipRead?: boolean;
48
+ }>;
49
+ createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<{
50
+ value: string;
51
+ to: string;
52
+ data: string;
53
+ from?: string;
54
+ type?: number;
55
+ nonce?: number;
56
+ gasLimit?: bigint;
57
+ gasPrice?: bigint;
58
+ maxPriorityFeePerGas?: bigint;
59
+ maxFeePerGas?: bigint;
60
+ chainId?: bigint;
61
+ accessList?: import("ethers").AccessList;
62
+ authorizationList?: Array<import("ethers").Authorization>;
63
+ customData?: any;
64
+ blockTag?: import("ethers").BlockTag;
65
+ enableCcipRead?: boolean;
66
+ }>;
67
+ createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<{
68
+ value: string;
69
+ to: string;
70
+ data: string;
71
+ from?: string;
72
+ type?: number;
73
+ nonce?: number;
74
+ gasLimit?: bigint;
75
+ gasPrice?: bigint;
76
+ maxPriorityFeePerGas?: bigint;
77
+ maxFeePerGas?: bigint;
78
+ chainId?: bigint;
79
+ accessList?: import("ethers").AccessList;
80
+ authorizationList?: Array<import("ethers").Authorization>;
81
+ customData?: any;
82
+ blockTag?: import("ethers").BlockTag;
83
+ enableCcipRead?: boolean;
84
+ }>;
17
85
  EIP1193SendTransaction: ({ value, ...params }: import("..").EVMTxParams | import("ethers").ContractTransaction) => Promise<string>;
18
86
  estimateCall: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").EstimateCallParams) => Promise<bigint>;
19
87
  estimateGasLimit: ({ assetValue, recipient, memo, data, sender, funcName, funcParams, txOverrides, }: import("..").EVMTransferParams & {
@@ -54,11 +122,79 @@ export declare const ADIToolbox: ({ provider, ...toolboxParams }: EVMToolboxPara
54
122
  approvedAmount: ({ assetAddress, spenderAddress, from }: import("..").IsApprovedParams) => Promise<bigint>;
55
123
  broadcastTransaction: ((signedTx: string) => Promise<import("ethers").TransactionResponse>) | ((signedTx: string) => Promise<import("ethers").TransactionResponse>);
56
124
  call: <T>({ callProvider, contractAddress, abi, funcName, funcParams, txOverrides, feeOption, }: import("..").CallParams) => Promise<T>;
57
- createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<import("ethers").ContractTransaction>;
125
+ createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<{
126
+ value: string;
127
+ to: string;
128
+ data: string;
129
+ from?: string;
130
+ type?: number;
131
+ nonce?: number;
132
+ gasLimit?: bigint;
133
+ gasPrice?: bigint;
134
+ maxPriorityFeePerGas?: bigint;
135
+ maxFeePerGas?: bigint;
136
+ chainId?: bigint;
137
+ accessList?: import("ethers").AccessList;
138
+ authorizationList?: Array<import("ethers").Authorization>;
139
+ customData?: any;
140
+ blockTag?: import("ethers").BlockTag;
141
+ enableCcipRead?: boolean;
142
+ }>;
58
143
  createContract: (address: string, abi: readonly (import("ethers").JsonFragment | import("ethers").Fragment)[]) => import("ethers").Contract;
59
- createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<import("ethers").ContractTransaction>;
60
- createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
61
- createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
144
+ createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<{
145
+ value: string;
146
+ to: string;
147
+ data: string;
148
+ from?: string;
149
+ type?: number;
150
+ nonce?: number;
151
+ gasLimit?: bigint;
152
+ gasPrice?: bigint;
153
+ maxPriorityFeePerGas?: bigint;
154
+ maxFeePerGas?: bigint;
155
+ chainId?: bigint;
156
+ accessList?: import("ethers").AccessList;
157
+ authorizationList?: Array<import("ethers").Authorization>;
158
+ customData?: any;
159
+ blockTag?: import("ethers").BlockTag;
160
+ enableCcipRead?: boolean;
161
+ }>;
162
+ createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<{
163
+ value: string;
164
+ to: string;
165
+ data: string;
166
+ from?: string;
167
+ type?: number;
168
+ nonce?: number;
169
+ gasLimit?: bigint;
170
+ gasPrice?: bigint;
171
+ maxPriorityFeePerGas?: bigint;
172
+ maxFeePerGas?: bigint;
173
+ chainId?: bigint;
174
+ accessList?: import("ethers").AccessList;
175
+ authorizationList?: Array<import("ethers").Authorization>;
176
+ customData?: any;
177
+ blockTag?: import("ethers").BlockTag;
178
+ enableCcipRead?: boolean;
179
+ }>;
180
+ createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<{
181
+ value: string;
182
+ to: string;
183
+ data: string;
184
+ from?: string;
185
+ type?: number;
186
+ nonce?: number;
187
+ gasLimit?: bigint;
188
+ gasPrice?: bigint;
189
+ maxPriorityFeePerGas?: bigint;
190
+ maxFeePerGas?: bigint;
191
+ chainId?: bigint;
192
+ accessList?: import("ethers").AccessList;
193
+ authorizationList?: Array<import("ethers").Authorization>;
194
+ customData?: any;
195
+ blockTag?: import("ethers").BlockTag;
196
+ enableCcipRead?: boolean;
197
+ }>;
62
198
  EIP1193SendTransaction: ({ value, ...params }: import("..").EVMTxParams | import("ethers").ContractTransaction) => Promise<string>;
63
199
  estimateCall: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").EstimateCallParams) => Promise<bigint>;
64
200
  estimateGasLimit: ({ assetValue, recipient, memo, data, sender, funcName, funcParams, txOverrides, }: import("..").EVMTransferParams & {
@@ -99,11 +235,79 @@ export declare const ARBToolbox: ({ provider, ...toolboxParams }: EVMToolboxPara
99
235
  approvedAmount: ({ assetAddress, spenderAddress, from }: import("..").IsApprovedParams) => Promise<bigint>;
100
236
  broadcastTransaction: ((signedTx: string) => Promise<import("ethers").TransactionResponse>) | ((signedTx: string) => Promise<import("ethers").TransactionResponse>);
101
237
  call: <T>({ callProvider, contractAddress, abi, funcName, funcParams, txOverrides, feeOption, }: import("..").CallParams) => Promise<T>;
102
- createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<import("ethers").ContractTransaction>;
238
+ createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<{
239
+ value: string;
240
+ to: string;
241
+ data: string;
242
+ from?: string;
243
+ type?: number;
244
+ nonce?: number;
245
+ gasLimit?: bigint;
246
+ gasPrice?: bigint;
247
+ maxPriorityFeePerGas?: bigint;
248
+ maxFeePerGas?: bigint;
249
+ chainId?: bigint;
250
+ accessList?: import("ethers").AccessList;
251
+ authorizationList?: Array<import("ethers").Authorization>;
252
+ customData?: any;
253
+ blockTag?: import("ethers").BlockTag;
254
+ enableCcipRead?: boolean;
255
+ }>;
103
256
  createContract: (address: string, abi: readonly (import("ethers").JsonFragment | import("ethers").Fragment)[]) => import("ethers").Contract;
104
- createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<import("ethers").ContractTransaction>;
105
- createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
106
- createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
257
+ createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<{
258
+ value: string;
259
+ to: string;
260
+ data: string;
261
+ from?: string;
262
+ type?: number;
263
+ nonce?: number;
264
+ gasLimit?: bigint;
265
+ gasPrice?: bigint;
266
+ maxPriorityFeePerGas?: bigint;
267
+ maxFeePerGas?: bigint;
268
+ chainId?: bigint;
269
+ accessList?: import("ethers").AccessList;
270
+ authorizationList?: Array<import("ethers").Authorization>;
271
+ customData?: any;
272
+ blockTag?: import("ethers").BlockTag;
273
+ enableCcipRead?: boolean;
274
+ }>;
275
+ createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<{
276
+ value: string;
277
+ to: string;
278
+ data: string;
279
+ from?: string;
280
+ type?: number;
281
+ nonce?: number;
282
+ gasLimit?: bigint;
283
+ gasPrice?: bigint;
284
+ maxPriorityFeePerGas?: bigint;
285
+ maxFeePerGas?: bigint;
286
+ chainId?: bigint;
287
+ accessList?: import("ethers").AccessList;
288
+ authorizationList?: Array<import("ethers").Authorization>;
289
+ customData?: any;
290
+ blockTag?: import("ethers").BlockTag;
291
+ enableCcipRead?: boolean;
292
+ }>;
293
+ createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<{
294
+ value: string;
295
+ to: string;
296
+ data: string;
297
+ from?: string;
298
+ type?: number;
299
+ nonce?: number;
300
+ gasLimit?: bigint;
301
+ gasPrice?: bigint;
302
+ maxPriorityFeePerGas?: bigint;
303
+ maxFeePerGas?: bigint;
304
+ chainId?: bigint;
305
+ accessList?: import("ethers").AccessList;
306
+ authorizationList?: Array<import("ethers").Authorization>;
307
+ customData?: any;
308
+ blockTag?: import("ethers").BlockTag;
309
+ enableCcipRead?: boolean;
310
+ }>;
107
311
  EIP1193SendTransaction: ({ value, ...params }: import("..").EVMTxParams | import("ethers").ContractTransaction) => Promise<string>;
108
312
  estimateCall: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").EstimateCallParams) => Promise<bigint>;
109
313
  estimateGasLimit: ({ assetValue, recipient, memo, data, sender, funcName, funcParams, txOverrides, }: import("..").EVMTransferParams & {
@@ -144,11 +348,79 @@ export declare const AURORAToolbox: ({ provider, ...toolboxParams }: EVMToolboxP
144
348
  approvedAmount: ({ assetAddress, spenderAddress, from }: import("..").IsApprovedParams) => Promise<bigint>;
145
349
  broadcastTransaction: ((signedTx: string) => Promise<import("ethers").TransactionResponse>) | ((signedTx: string) => Promise<import("ethers").TransactionResponse>);
146
350
  call: <T>({ callProvider, contractAddress, abi, funcName, funcParams, txOverrides, feeOption, }: import("..").CallParams) => Promise<T>;
147
- createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<import("ethers").ContractTransaction>;
351
+ createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<{
352
+ value: string;
353
+ to: string;
354
+ data: string;
355
+ from?: string;
356
+ type?: number;
357
+ nonce?: number;
358
+ gasLimit?: bigint;
359
+ gasPrice?: bigint;
360
+ maxPriorityFeePerGas?: bigint;
361
+ maxFeePerGas?: bigint;
362
+ chainId?: bigint;
363
+ accessList?: import("ethers").AccessList;
364
+ authorizationList?: Array<import("ethers").Authorization>;
365
+ customData?: any;
366
+ blockTag?: import("ethers").BlockTag;
367
+ enableCcipRead?: boolean;
368
+ }>;
148
369
  createContract: (address: string, abi: readonly (import("ethers").JsonFragment | import("ethers").Fragment)[]) => import("ethers").Contract;
149
- createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<import("ethers").ContractTransaction>;
150
- createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
151
- createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
370
+ createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<{
371
+ value: string;
372
+ to: string;
373
+ data: string;
374
+ from?: string;
375
+ type?: number;
376
+ nonce?: number;
377
+ gasLimit?: bigint;
378
+ gasPrice?: bigint;
379
+ maxPriorityFeePerGas?: bigint;
380
+ maxFeePerGas?: bigint;
381
+ chainId?: bigint;
382
+ accessList?: import("ethers").AccessList;
383
+ authorizationList?: Array<import("ethers").Authorization>;
384
+ customData?: any;
385
+ blockTag?: import("ethers").BlockTag;
386
+ enableCcipRead?: boolean;
387
+ }>;
388
+ createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<{
389
+ value: string;
390
+ to: string;
391
+ data: string;
392
+ from?: string;
393
+ type?: number;
394
+ nonce?: number;
395
+ gasLimit?: bigint;
396
+ gasPrice?: bigint;
397
+ maxPriorityFeePerGas?: bigint;
398
+ maxFeePerGas?: bigint;
399
+ chainId?: bigint;
400
+ accessList?: import("ethers").AccessList;
401
+ authorizationList?: Array<import("ethers").Authorization>;
402
+ customData?: any;
403
+ blockTag?: import("ethers").BlockTag;
404
+ enableCcipRead?: boolean;
405
+ }>;
406
+ createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<{
407
+ value: string;
408
+ to: string;
409
+ data: string;
410
+ from?: string;
411
+ type?: number;
412
+ nonce?: number;
413
+ gasLimit?: bigint;
414
+ gasPrice?: bigint;
415
+ maxPriorityFeePerGas?: bigint;
416
+ maxFeePerGas?: bigint;
417
+ chainId?: bigint;
418
+ accessList?: import("ethers").AccessList;
419
+ authorizationList?: Array<import("ethers").Authorization>;
420
+ customData?: any;
421
+ blockTag?: import("ethers").BlockTag;
422
+ enableCcipRead?: boolean;
423
+ }>;
152
424
  EIP1193SendTransaction: ({ value, ...params }: import("..").EVMTxParams | import("ethers").ContractTransaction) => Promise<string>;
153
425
  estimateCall: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").EstimateCallParams) => Promise<bigint>;
154
426
  estimateGasLimit: ({ assetValue, recipient, memo, data, sender, funcName, funcParams, txOverrides, }: import("..").EVMTransferParams & {
@@ -189,11 +461,79 @@ export declare const AVAXToolbox: ({ provider, ...toolboxParams }: EVMToolboxPar
189
461
  approvedAmount: ({ assetAddress, spenderAddress, from }: import("..").IsApprovedParams) => Promise<bigint>;
190
462
  broadcastTransaction: ((signedTx: string) => Promise<import("ethers").TransactionResponse>) | ((signedTx: string) => Promise<import("ethers").TransactionResponse>);
191
463
  call: <T>({ callProvider, contractAddress, abi, funcName, funcParams, txOverrides, feeOption, }: import("..").CallParams) => Promise<T>;
192
- createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<import("ethers").ContractTransaction>;
464
+ createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<{
465
+ value: string;
466
+ to: string;
467
+ data: string;
468
+ from?: string;
469
+ type?: number;
470
+ nonce?: number;
471
+ gasLimit?: bigint;
472
+ gasPrice?: bigint;
473
+ maxPriorityFeePerGas?: bigint;
474
+ maxFeePerGas?: bigint;
475
+ chainId?: bigint;
476
+ accessList?: import("ethers").AccessList;
477
+ authorizationList?: Array<import("ethers").Authorization>;
478
+ customData?: any;
479
+ blockTag?: import("ethers").BlockTag;
480
+ enableCcipRead?: boolean;
481
+ }>;
193
482
  createContract: (address: string, abi: readonly (import("ethers").JsonFragment | import("ethers").Fragment)[]) => import("ethers").Contract;
194
- createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<import("ethers").ContractTransaction>;
195
- createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
196
- createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
483
+ createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<{
484
+ value: string;
485
+ to: string;
486
+ data: string;
487
+ from?: string;
488
+ type?: number;
489
+ nonce?: number;
490
+ gasLimit?: bigint;
491
+ gasPrice?: bigint;
492
+ maxPriorityFeePerGas?: bigint;
493
+ maxFeePerGas?: bigint;
494
+ chainId?: bigint;
495
+ accessList?: import("ethers").AccessList;
496
+ authorizationList?: Array<import("ethers").Authorization>;
497
+ customData?: any;
498
+ blockTag?: import("ethers").BlockTag;
499
+ enableCcipRead?: boolean;
500
+ }>;
501
+ createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<{
502
+ value: string;
503
+ to: string;
504
+ data: string;
505
+ from?: string;
506
+ type?: number;
507
+ nonce?: number;
508
+ gasLimit?: bigint;
509
+ gasPrice?: bigint;
510
+ maxPriorityFeePerGas?: bigint;
511
+ maxFeePerGas?: bigint;
512
+ chainId?: bigint;
513
+ accessList?: import("ethers").AccessList;
514
+ authorizationList?: Array<import("ethers").Authorization>;
515
+ customData?: any;
516
+ blockTag?: import("ethers").BlockTag;
517
+ enableCcipRead?: boolean;
518
+ }>;
519
+ createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<{
520
+ value: string;
521
+ to: string;
522
+ data: string;
523
+ from?: string;
524
+ type?: number;
525
+ nonce?: number;
526
+ gasLimit?: bigint;
527
+ gasPrice?: bigint;
528
+ maxPriorityFeePerGas?: bigint;
529
+ maxFeePerGas?: bigint;
530
+ chainId?: bigint;
531
+ accessList?: import("ethers").AccessList;
532
+ authorizationList?: Array<import("ethers").Authorization>;
533
+ customData?: any;
534
+ blockTag?: import("ethers").BlockTag;
535
+ enableCcipRead?: boolean;
536
+ }>;
197
537
  EIP1193SendTransaction: ({ value, ...params }: import("..").EVMTxParams | import("ethers").ContractTransaction) => Promise<string>;
198
538
  estimateCall: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").EstimateCallParams) => Promise<bigint>;
199
539
  estimateGasLimit: ({ assetValue, recipient, memo, data, sender, funcName, funcParams, txOverrides, }: import("..").EVMTransferParams & {
@@ -234,11 +574,79 @@ export declare const BASEToolbox: ({ provider, ...toolboxParams }: EVMToolboxPar
234
574
  approvedAmount: ({ assetAddress, spenderAddress, from }: import("..").IsApprovedParams) => Promise<bigint>;
235
575
  broadcastTransaction: ((signedTx: string) => Promise<import("ethers").TransactionResponse>) | ((signedTx: string) => Promise<import("ethers").TransactionResponse>);
236
576
  call: <T>({ callProvider, contractAddress, abi, funcName, funcParams, txOverrides, feeOption, }: import("..").CallParams) => Promise<T>;
237
- createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<import("ethers").ContractTransaction>;
577
+ createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<{
578
+ value: string;
579
+ to: string;
580
+ data: string;
581
+ from?: string;
582
+ type?: number;
583
+ nonce?: number;
584
+ gasLimit?: bigint;
585
+ gasPrice?: bigint;
586
+ maxPriorityFeePerGas?: bigint;
587
+ maxFeePerGas?: bigint;
588
+ chainId?: bigint;
589
+ accessList?: import("ethers").AccessList;
590
+ authorizationList?: Array<import("ethers").Authorization>;
591
+ customData?: any;
592
+ blockTag?: import("ethers").BlockTag;
593
+ enableCcipRead?: boolean;
594
+ }>;
238
595
  createContract: (address: string, abi: readonly (import("ethers").JsonFragment | import("ethers").Fragment)[]) => import("ethers").Contract;
239
- createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<import("ethers").ContractTransaction>;
240
- createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
241
- createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
596
+ createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<{
597
+ value: string;
598
+ to: string;
599
+ data: string;
600
+ from?: string;
601
+ type?: number;
602
+ nonce?: number;
603
+ gasLimit?: bigint;
604
+ gasPrice?: bigint;
605
+ maxPriorityFeePerGas?: bigint;
606
+ maxFeePerGas?: bigint;
607
+ chainId?: bigint;
608
+ accessList?: import("ethers").AccessList;
609
+ authorizationList?: Array<import("ethers").Authorization>;
610
+ customData?: any;
611
+ blockTag?: import("ethers").BlockTag;
612
+ enableCcipRead?: boolean;
613
+ }>;
614
+ createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<{
615
+ value: string;
616
+ to: string;
617
+ data: string;
618
+ from?: string;
619
+ type?: number;
620
+ nonce?: number;
621
+ gasLimit?: bigint;
622
+ gasPrice?: bigint;
623
+ maxPriorityFeePerGas?: bigint;
624
+ maxFeePerGas?: bigint;
625
+ chainId?: bigint;
626
+ accessList?: import("ethers").AccessList;
627
+ authorizationList?: Array<import("ethers").Authorization>;
628
+ customData?: any;
629
+ blockTag?: import("ethers").BlockTag;
630
+ enableCcipRead?: boolean;
631
+ }>;
632
+ createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<{
633
+ value: string;
634
+ to: string;
635
+ data: string;
636
+ from?: string;
637
+ type?: number;
638
+ nonce?: number;
639
+ gasLimit?: bigint;
640
+ gasPrice?: bigint;
641
+ maxPriorityFeePerGas?: bigint;
642
+ maxFeePerGas?: bigint;
643
+ chainId?: bigint;
644
+ accessList?: import("ethers").AccessList;
645
+ authorizationList?: Array<import("ethers").Authorization>;
646
+ customData?: any;
647
+ blockTag?: import("ethers").BlockTag;
648
+ enableCcipRead?: boolean;
649
+ }>;
242
650
  EIP1193SendTransaction: ({ value, ...params }: import("..").EVMTxParams | import("ethers").ContractTransaction) => Promise<string>;
243
651
  estimateCall: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").EstimateCallParams) => Promise<bigint>;
244
652
  estimateGasLimit: ({ assetValue, recipient, memo, data, sender, funcName, funcParams, txOverrides, }: import("..").EVMTransferParams & {
@@ -279,11 +687,79 @@ export declare const BERAToolbox: ({ provider, ...toolboxParams }: EVMToolboxPar
279
687
  approvedAmount: ({ assetAddress, spenderAddress, from }: import("..").IsApprovedParams) => Promise<bigint>;
280
688
  broadcastTransaction: ((signedTx: string) => Promise<import("ethers").TransactionResponse>) | ((signedTx: string) => Promise<import("ethers").TransactionResponse>);
281
689
  call: <T>({ callProvider, contractAddress, abi, funcName, funcParams, txOverrides, feeOption, }: import("..").CallParams) => Promise<T>;
282
- createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<import("ethers").ContractTransaction>;
690
+ createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<{
691
+ value: string;
692
+ to: string;
693
+ data: string;
694
+ from?: string;
695
+ type?: number;
696
+ nonce?: number;
697
+ gasLimit?: bigint;
698
+ gasPrice?: bigint;
699
+ maxPriorityFeePerGas?: bigint;
700
+ maxFeePerGas?: bigint;
701
+ chainId?: bigint;
702
+ accessList?: import("ethers").AccessList;
703
+ authorizationList?: Array<import("ethers").Authorization>;
704
+ customData?: any;
705
+ blockTag?: import("ethers").BlockTag;
706
+ enableCcipRead?: boolean;
707
+ }>;
283
708
  createContract: (address: string, abi: readonly (import("ethers").JsonFragment | import("ethers").Fragment)[]) => import("ethers").Contract;
284
- createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<import("ethers").ContractTransaction>;
285
- createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
286
- createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
709
+ createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<{
710
+ value: string;
711
+ to: string;
712
+ data: string;
713
+ from?: string;
714
+ type?: number;
715
+ nonce?: number;
716
+ gasLimit?: bigint;
717
+ gasPrice?: bigint;
718
+ maxPriorityFeePerGas?: bigint;
719
+ maxFeePerGas?: bigint;
720
+ chainId?: bigint;
721
+ accessList?: import("ethers").AccessList;
722
+ authorizationList?: Array<import("ethers").Authorization>;
723
+ customData?: any;
724
+ blockTag?: import("ethers").BlockTag;
725
+ enableCcipRead?: boolean;
726
+ }>;
727
+ createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<{
728
+ value: string;
729
+ to: string;
730
+ data: string;
731
+ from?: string;
732
+ type?: number;
733
+ nonce?: number;
734
+ gasLimit?: bigint;
735
+ gasPrice?: bigint;
736
+ maxPriorityFeePerGas?: bigint;
737
+ maxFeePerGas?: bigint;
738
+ chainId?: bigint;
739
+ accessList?: import("ethers").AccessList;
740
+ authorizationList?: Array<import("ethers").Authorization>;
741
+ customData?: any;
742
+ blockTag?: import("ethers").BlockTag;
743
+ enableCcipRead?: boolean;
744
+ }>;
745
+ createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<{
746
+ value: string;
747
+ to: string;
748
+ data: string;
749
+ from?: string;
750
+ type?: number;
751
+ nonce?: number;
752
+ gasLimit?: bigint;
753
+ gasPrice?: bigint;
754
+ maxPriorityFeePerGas?: bigint;
755
+ maxFeePerGas?: bigint;
756
+ chainId?: bigint;
757
+ accessList?: import("ethers").AccessList;
758
+ authorizationList?: Array<import("ethers").Authorization>;
759
+ customData?: any;
760
+ blockTag?: import("ethers").BlockTag;
761
+ enableCcipRead?: boolean;
762
+ }>;
287
763
  EIP1193SendTransaction: ({ value, ...params }: import("..").EVMTxParams | import("ethers").ContractTransaction) => Promise<string>;
288
764
  estimateCall: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").EstimateCallParams) => Promise<bigint>;
289
765
  estimateGasLimit: ({ assetValue, recipient, memo, data, sender, funcName, funcParams, txOverrides, }: import("..").EVMTransferParams & {
@@ -324,11 +800,79 @@ export declare const BSCToolbox: ({ provider, ...toolboxParams }: EVMToolboxPara
324
800
  approvedAmount: ({ assetAddress, spenderAddress, from }: import("..").IsApprovedParams) => Promise<bigint>;
325
801
  broadcastTransaction: ((signedTx: string) => Promise<import("ethers").TransactionResponse>) | ((signedTx: string) => Promise<import("ethers").TransactionResponse>);
326
802
  call: <T>({ callProvider, contractAddress, abi, funcName, funcParams, txOverrides, feeOption, }: import("..").CallParams) => Promise<T>;
327
- createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<import("ethers").ContractTransaction>;
803
+ createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<{
804
+ value: string;
805
+ to: string;
806
+ data: string;
807
+ from?: string;
808
+ type?: number;
809
+ nonce?: number;
810
+ gasLimit?: bigint;
811
+ gasPrice?: bigint;
812
+ maxPriorityFeePerGas?: bigint;
813
+ maxFeePerGas?: bigint;
814
+ chainId?: bigint;
815
+ accessList?: import("ethers").AccessList;
816
+ authorizationList?: Array<import("ethers").Authorization>;
817
+ customData?: any;
818
+ blockTag?: import("ethers").BlockTag;
819
+ enableCcipRead?: boolean;
820
+ }>;
328
821
  createContract: (address: string, abi: readonly (import("ethers").JsonFragment | import("ethers").Fragment)[]) => import("ethers").Contract;
329
- createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<import("ethers").ContractTransaction>;
330
- createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
331
- createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
822
+ createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<{
823
+ value: string;
824
+ to: string;
825
+ data: string;
826
+ from?: string;
827
+ type?: number;
828
+ nonce?: number;
829
+ gasLimit?: bigint;
830
+ gasPrice?: bigint;
831
+ maxPriorityFeePerGas?: bigint;
832
+ maxFeePerGas?: bigint;
833
+ chainId?: bigint;
834
+ accessList?: import("ethers").AccessList;
835
+ authorizationList?: Array<import("ethers").Authorization>;
836
+ customData?: any;
837
+ blockTag?: import("ethers").BlockTag;
838
+ enableCcipRead?: boolean;
839
+ }>;
840
+ createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<{
841
+ value: string;
842
+ to: string;
843
+ data: string;
844
+ from?: string;
845
+ type?: number;
846
+ nonce?: number;
847
+ gasLimit?: bigint;
848
+ gasPrice?: bigint;
849
+ maxPriorityFeePerGas?: bigint;
850
+ maxFeePerGas?: bigint;
851
+ chainId?: bigint;
852
+ accessList?: import("ethers").AccessList;
853
+ authorizationList?: Array<import("ethers").Authorization>;
854
+ customData?: any;
855
+ blockTag?: import("ethers").BlockTag;
856
+ enableCcipRead?: boolean;
857
+ }>;
858
+ createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<{
859
+ value: string;
860
+ to: string;
861
+ data: string;
862
+ from?: string;
863
+ type?: number;
864
+ nonce?: number;
865
+ gasLimit?: bigint;
866
+ gasPrice?: bigint;
867
+ maxPriorityFeePerGas?: bigint;
868
+ maxFeePerGas?: bigint;
869
+ chainId?: bigint;
870
+ accessList?: import("ethers").AccessList;
871
+ authorizationList?: Array<import("ethers").Authorization>;
872
+ customData?: any;
873
+ blockTag?: import("ethers").BlockTag;
874
+ enableCcipRead?: boolean;
875
+ }>;
332
876
  EIP1193SendTransaction: ({ value, ...params }: import("..").EVMTxParams | import("ethers").ContractTransaction) => Promise<string>;
333
877
  estimateCall: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").EstimateCallParams) => Promise<bigint>;
334
878
  estimateGasLimit: ({ assetValue, recipient, memo, data, sender, funcName, funcParams, txOverrides, }: import("..").EVMTransferParams & {
@@ -369,11 +913,79 @@ export declare const BotanixToolbox: ({ provider, ...toolboxParams }: EVMToolbox
369
913
  approvedAmount: ({ assetAddress, spenderAddress, from }: import("..").IsApprovedParams) => Promise<bigint>;
370
914
  broadcastTransaction: ((signedTx: string) => Promise<import("ethers").TransactionResponse>) | ((signedTx: string) => Promise<import("ethers").TransactionResponse>);
371
915
  call: <T>({ callProvider, contractAddress, abi, funcName, funcParams, txOverrides, feeOption, }: import("..").CallParams) => Promise<T>;
372
- createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<import("ethers").ContractTransaction>;
916
+ createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<{
917
+ value: string;
918
+ to: string;
919
+ data: string;
920
+ from?: string;
921
+ type?: number;
922
+ nonce?: number;
923
+ gasLimit?: bigint;
924
+ gasPrice?: bigint;
925
+ maxPriorityFeePerGas?: bigint;
926
+ maxFeePerGas?: bigint;
927
+ chainId?: bigint;
928
+ accessList?: import("ethers").AccessList;
929
+ authorizationList?: Array<import("ethers").Authorization>;
930
+ customData?: any;
931
+ blockTag?: import("ethers").BlockTag;
932
+ enableCcipRead?: boolean;
933
+ }>;
373
934
  createContract: (address: string, abi: readonly (import("ethers").JsonFragment | import("ethers").Fragment)[]) => import("ethers").Contract;
374
- createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<import("ethers").ContractTransaction>;
375
- createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
376
- createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
935
+ createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<{
936
+ value: string;
937
+ to: string;
938
+ data: string;
939
+ from?: string;
940
+ type?: number;
941
+ nonce?: number;
942
+ gasLimit?: bigint;
943
+ gasPrice?: bigint;
944
+ maxPriorityFeePerGas?: bigint;
945
+ maxFeePerGas?: bigint;
946
+ chainId?: bigint;
947
+ accessList?: import("ethers").AccessList;
948
+ authorizationList?: Array<import("ethers").Authorization>;
949
+ customData?: any;
950
+ blockTag?: import("ethers").BlockTag;
951
+ enableCcipRead?: boolean;
952
+ }>;
953
+ createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<{
954
+ value: string;
955
+ to: string;
956
+ data: string;
957
+ from?: string;
958
+ type?: number;
959
+ nonce?: number;
960
+ gasLimit?: bigint;
961
+ gasPrice?: bigint;
962
+ maxPriorityFeePerGas?: bigint;
963
+ maxFeePerGas?: bigint;
964
+ chainId?: bigint;
965
+ accessList?: import("ethers").AccessList;
966
+ authorizationList?: Array<import("ethers").Authorization>;
967
+ customData?: any;
968
+ blockTag?: import("ethers").BlockTag;
969
+ enableCcipRead?: boolean;
970
+ }>;
971
+ createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<{
972
+ value: string;
973
+ to: string;
974
+ data: string;
975
+ from?: string;
976
+ type?: number;
977
+ nonce?: number;
978
+ gasLimit?: bigint;
979
+ gasPrice?: bigint;
980
+ maxPriorityFeePerGas?: bigint;
981
+ maxFeePerGas?: bigint;
982
+ chainId?: bigint;
983
+ accessList?: import("ethers").AccessList;
984
+ authorizationList?: Array<import("ethers").Authorization>;
985
+ customData?: any;
986
+ blockTag?: import("ethers").BlockTag;
987
+ enableCcipRead?: boolean;
988
+ }>;
377
989
  EIP1193SendTransaction: ({ value, ...params }: import("..").EVMTxParams | import("ethers").ContractTransaction) => Promise<string>;
378
990
  estimateCall: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").EstimateCallParams) => Promise<bigint>;
379
991
  estimateGasLimit: ({ assetValue, recipient, memo, data, sender, funcName, funcParams, txOverrides, }: import("..").EVMTransferParams & {
@@ -414,11 +1026,79 @@ export declare const COREToolbox: ({ provider, ...toolboxParams }: EVMToolboxPar
414
1026
  approvedAmount: ({ assetAddress, spenderAddress, from }: import("..").IsApprovedParams) => Promise<bigint>;
415
1027
  broadcastTransaction: ((signedTx: string) => Promise<import("ethers").TransactionResponse>) | ((signedTx: string) => Promise<import("ethers").TransactionResponse>);
416
1028
  call: <T>({ callProvider, contractAddress, abi, funcName, funcParams, txOverrides, feeOption, }: import("..").CallParams) => Promise<T>;
417
- createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<import("ethers").ContractTransaction>;
1029
+ createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<{
1030
+ value: string;
1031
+ to: string;
1032
+ data: string;
1033
+ from?: string;
1034
+ type?: number;
1035
+ nonce?: number;
1036
+ gasLimit?: bigint;
1037
+ gasPrice?: bigint;
1038
+ maxPriorityFeePerGas?: bigint;
1039
+ maxFeePerGas?: bigint;
1040
+ chainId?: bigint;
1041
+ accessList?: import("ethers").AccessList;
1042
+ authorizationList?: Array<import("ethers").Authorization>;
1043
+ customData?: any;
1044
+ blockTag?: import("ethers").BlockTag;
1045
+ enableCcipRead?: boolean;
1046
+ }>;
418
1047
  createContract: (address: string, abi: readonly (import("ethers").JsonFragment | import("ethers").Fragment)[]) => import("ethers").Contract;
419
- createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<import("ethers").ContractTransaction>;
420
- createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
421
- createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
1048
+ createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<{
1049
+ value: string;
1050
+ to: string;
1051
+ data: string;
1052
+ from?: string;
1053
+ type?: number;
1054
+ nonce?: number;
1055
+ gasLimit?: bigint;
1056
+ gasPrice?: bigint;
1057
+ maxPriorityFeePerGas?: bigint;
1058
+ maxFeePerGas?: bigint;
1059
+ chainId?: bigint;
1060
+ accessList?: import("ethers").AccessList;
1061
+ authorizationList?: Array<import("ethers").Authorization>;
1062
+ customData?: any;
1063
+ blockTag?: import("ethers").BlockTag;
1064
+ enableCcipRead?: boolean;
1065
+ }>;
1066
+ createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<{
1067
+ value: string;
1068
+ to: string;
1069
+ data: string;
1070
+ from?: string;
1071
+ type?: number;
1072
+ nonce?: number;
1073
+ gasLimit?: bigint;
1074
+ gasPrice?: bigint;
1075
+ maxPriorityFeePerGas?: bigint;
1076
+ maxFeePerGas?: bigint;
1077
+ chainId?: bigint;
1078
+ accessList?: import("ethers").AccessList;
1079
+ authorizationList?: Array<import("ethers").Authorization>;
1080
+ customData?: any;
1081
+ blockTag?: import("ethers").BlockTag;
1082
+ enableCcipRead?: boolean;
1083
+ }>;
1084
+ createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<{
1085
+ value: string;
1086
+ to: string;
1087
+ data: string;
1088
+ from?: string;
1089
+ type?: number;
1090
+ nonce?: number;
1091
+ gasLimit?: bigint;
1092
+ gasPrice?: bigint;
1093
+ maxPriorityFeePerGas?: bigint;
1094
+ maxFeePerGas?: bigint;
1095
+ chainId?: bigint;
1096
+ accessList?: import("ethers").AccessList;
1097
+ authorizationList?: Array<import("ethers").Authorization>;
1098
+ customData?: any;
1099
+ blockTag?: import("ethers").BlockTag;
1100
+ enableCcipRead?: boolean;
1101
+ }>;
422
1102
  EIP1193SendTransaction: ({ value, ...params }: import("..").EVMTxParams | import("ethers").ContractTransaction) => Promise<string>;
423
1103
  estimateCall: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").EstimateCallParams) => Promise<bigint>;
424
1104
  estimateGasLimit: ({ assetValue, recipient, memo, data, sender, funcName, funcParams, txOverrides, }: import("..").EVMTransferParams & {
@@ -459,11 +1139,79 @@ export declare const CORNToolbox: ({ provider, ...toolboxParams }: EVMToolboxPar
459
1139
  approvedAmount: ({ assetAddress, spenderAddress, from }: import("..").IsApprovedParams) => Promise<bigint>;
460
1140
  broadcastTransaction: ((signedTx: string) => Promise<import("ethers").TransactionResponse>) | ((signedTx: string) => Promise<import("ethers").TransactionResponse>);
461
1141
  call: <T>({ callProvider, contractAddress, abi, funcName, funcParams, txOverrides, feeOption, }: import("..").CallParams) => Promise<T>;
462
- createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<import("ethers").ContractTransaction>;
1142
+ createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<{
1143
+ value: string;
1144
+ to: string;
1145
+ data: string;
1146
+ from?: string;
1147
+ type?: number;
1148
+ nonce?: number;
1149
+ gasLimit?: bigint;
1150
+ gasPrice?: bigint;
1151
+ maxPriorityFeePerGas?: bigint;
1152
+ maxFeePerGas?: bigint;
1153
+ chainId?: bigint;
1154
+ accessList?: import("ethers").AccessList;
1155
+ authorizationList?: Array<import("ethers").Authorization>;
1156
+ customData?: any;
1157
+ blockTag?: import("ethers").BlockTag;
1158
+ enableCcipRead?: boolean;
1159
+ }>;
463
1160
  createContract: (address: string, abi: readonly (import("ethers").JsonFragment | import("ethers").Fragment)[]) => import("ethers").Contract;
464
- createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<import("ethers").ContractTransaction>;
465
- createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
466
- createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
1161
+ createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<{
1162
+ value: string;
1163
+ to: string;
1164
+ data: string;
1165
+ from?: string;
1166
+ type?: number;
1167
+ nonce?: number;
1168
+ gasLimit?: bigint;
1169
+ gasPrice?: bigint;
1170
+ maxPriorityFeePerGas?: bigint;
1171
+ maxFeePerGas?: bigint;
1172
+ chainId?: bigint;
1173
+ accessList?: import("ethers").AccessList;
1174
+ authorizationList?: Array<import("ethers").Authorization>;
1175
+ customData?: any;
1176
+ blockTag?: import("ethers").BlockTag;
1177
+ enableCcipRead?: boolean;
1178
+ }>;
1179
+ createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<{
1180
+ value: string;
1181
+ to: string;
1182
+ data: string;
1183
+ from?: string;
1184
+ type?: number;
1185
+ nonce?: number;
1186
+ gasLimit?: bigint;
1187
+ gasPrice?: bigint;
1188
+ maxPriorityFeePerGas?: bigint;
1189
+ maxFeePerGas?: bigint;
1190
+ chainId?: bigint;
1191
+ accessList?: import("ethers").AccessList;
1192
+ authorizationList?: Array<import("ethers").Authorization>;
1193
+ customData?: any;
1194
+ blockTag?: import("ethers").BlockTag;
1195
+ enableCcipRead?: boolean;
1196
+ }>;
1197
+ createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<{
1198
+ value: string;
1199
+ to: string;
1200
+ data: string;
1201
+ from?: string;
1202
+ type?: number;
1203
+ nonce?: number;
1204
+ gasLimit?: bigint;
1205
+ gasPrice?: bigint;
1206
+ maxPriorityFeePerGas?: bigint;
1207
+ maxFeePerGas?: bigint;
1208
+ chainId?: bigint;
1209
+ accessList?: import("ethers").AccessList;
1210
+ authorizationList?: Array<import("ethers").Authorization>;
1211
+ customData?: any;
1212
+ blockTag?: import("ethers").BlockTag;
1213
+ enableCcipRead?: boolean;
1214
+ }>;
467
1215
  EIP1193SendTransaction: ({ value, ...params }: import("..").EVMTxParams | import("ethers").ContractTransaction) => Promise<string>;
468
1216
  estimateCall: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").EstimateCallParams) => Promise<bigint>;
469
1217
  estimateGasLimit: ({ assetValue, recipient, memo, data, sender, funcName, funcParams, txOverrides, }: import("..").EVMTransferParams & {
@@ -504,11 +1252,79 @@ export declare const CROToolbox: ({ provider, ...toolboxParams }: EVMToolboxPara
504
1252
  approvedAmount: ({ assetAddress, spenderAddress, from }: import("..").IsApprovedParams) => Promise<bigint>;
505
1253
  broadcastTransaction: ((signedTx: string) => Promise<import("ethers").TransactionResponse>) | ((signedTx: string) => Promise<import("ethers").TransactionResponse>);
506
1254
  call: <T>({ callProvider, contractAddress, abi, funcName, funcParams, txOverrides, feeOption, }: import("..").CallParams) => Promise<T>;
507
- createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<import("ethers").ContractTransaction>;
1255
+ createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<{
1256
+ value: string;
1257
+ to: string;
1258
+ data: string;
1259
+ from?: string;
1260
+ type?: number;
1261
+ nonce?: number;
1262
+ gasLimit?: bigint;
1263
+ gasPrice?: bigint;
1264
+ maxPriorityFeePerGas?: bigint;
1265
+ maxFeePerGas?: bigint;
1266
+ chainId?: bigint;
1267
+ accessList?: import("ethers").AccessList;
1268
+ authorizationList?: Array<import("ethers").Authorization>;
1269
+ customData?: any;
1270
+ blockTag?: import("ethers").BlockTag;
1271
+ enableCcipRead?: boolean;
1272
+ }>;
508
1273
  createContract: (address: string, abi: readonly (import("ethers").JsonFragment | import("ethers").Fragment)[]) => import("ethers").Contract;
509
- createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<import("ethers").ContractTransaction>;
510
- createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
511
- createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
1274
+ createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<{
1275
+ value: string;
1276
+ to: string;
1277
+ data: string;
1278
+ from?: string;
1279
+ type?: number;
1280
+ nonce?: number;
1281
+ gasLimit?: bigint;
1282
+ gasPrice?: bigint;
1283
+ maxPriorityFeePerGas?: bigint;
1284
+ maxFeePerGas?: bigint;
1285
+ chainId?: bigint;
1286
+ accessList?: import("ethers").AccessList;
1287
+ authorizationList?: Array<import("ethers").Authorization>;
1288
+ customData?: any;
1289
+ blockTag?: import("ethers").BlockTag;
1290
+ enableCcipRead?: boolean;
1291
+ }>;
1292
+ createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<{
1293
+ value: string;
1294
+ to: string;
1295
+ data: string;
1296
+ from?: string;
1297
+ type?: number;
1298
+ nonce?: number;
1299
+ gasLimit?: bigint;
1300
+ gasPrice?: bigint;
1301
+ maxPriorityFeePerGas?: bigint;
1302
+ maxFeePerGas?: bigint;
1303
+ chainId?: bigint;
1304
+ accessList?: import("ethers").AccessList;
1305
+ authorizationList?: Array<import("ethers").Authorization>;
1306
+ customData?: any;
1307
+ blockTag?: import("ethers").BlockTag;
1308
+ enableCcipRead?: boolean;
1309
+ }>;
1310
+ createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<{
1311
+ value: string;
1312
+ to: string;
1313
+ data: string;
1314
+ from?: string;
1315
+ type?: number;
1316
+ nonce?: number;
1317
+ gasLimit?: bigint;
1318
+ gasPrice?: bigint;
1319
+ maxPriorityFeePerGas?: bigint;
1320
+ maxFeePerGas?: bigint;
1321
+ chainId?: bigint;
1322
+ accessList?: import("ethers").AccessList;
1323
+ authorizationList?: Array<import("ethers").Authorization>;
1324
+ customData?: any;
1325
+ blockTag?: import("ethers").BlockTag;
1326
+ enableCcipRead?: boolean;
1327
+ }>;
512
1328
  EIP1193SendTransaction: ({ value, ...params }: import("..").EVMTxParams | import("ethers").ContractTransaction) => Promise<string>;
513
1329
  estimateCall: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").EstimateCallParams) => Promise<bigint>;
514
1330
  estimateGasLimit: ({ assetValue, recipient, memo, data, sender, funcName, funcParams, txOverrides, }: import("..").EVMTransferParams & {
@@ -549,11 +1365,79 @@ export declare const GNOToolbox: ({ provider, ...toolboxParams }: EVMToolboxPara
549
1365
  approvedAmount: ({ assetAddress, spenderAddress, from }: import("..").IsApprovedParams) => Promise<bigint>;
550
1366
  broadcastTransaction: ((signedTx: string) => Promise<import("ethers").TransactionResponse>) | ((signedTx: string) => Promise<import("ethers").TransactionResponse>);
551
1367
  call: <T>({ callProvider, contractAddress, abi, funcName, funcParams, txOverrides, feeOption, }: import("..").CallParams) => Promise<T>;
552
- createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<import("ethers").ContractTransaction>;
1368
+ createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<{
1369
+ value: string;
1370
+ to: string;
1371
+ data: string;
1372
+ from?: string;
1373
+ type?: number;
1374
+ nonce?: number;
1375
+ gasLimit?: bigint;
1376
+ gasPrice?: bigint;
1377
+ maxPriorityFeePerGas?: bigint;
1378
+ maxFeePerGas?: bigint;
1379
+ chainId?: bigint;
1380
+ accessList?: import("ethers").AccessList;
1381
+ authorizationList?: Array<import("ethers").Authorization>;
1382
+ customData?: any;
1383
+ blockTag?: import("ethers").BlockTag;
1384
+ enableCcipRead?: boolean;
1385
+ }>;
553
1386
  createContract: (address: string, abi: readonly (import("ethers").JsonFragment | import("ethers").Fragment)[]) => import("ethers").Contract;
554
- createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<import("ethers").ContractTransaction>;
555
- createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
556
- createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
1387
+ createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<{
1388
+ value: string;
1389
+ to: string;
1390
+ data: string;
1391
+ from?: string;
1392
+ type?: number;
1393
+ nonce?: number;
1394
+ gasLimit?: bigint;
1395
+ gasPrice?: bigint;
1396
+ maxPriorityFeePerGas?: bigint;
1397
+ maxFeePerGas?: bigint;
1398
+ chainId?: bigint;
1399
+ accessList?: import("ethers").AccessList;
1400
+ authorizationList?: Array<import("ethers").Authorization>;
1401
+ customData?: any;
1402
+ blockTag?: import("ethers").BlockTag;
1403
+ enableCcipRead?: boolean;
1404
+ }>;
1405
+ createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<{
1406
+ value: string;
1407
+ to: string;
1408
+ data: string;
1409
+ from?: string;
1410
+ type?: number;
1411
+ nonce?: number;
1412
+ gasLimit?: bigint;
1413
+ gasPrice?: bigint;
1414
+ maxPriorityFeePerGas?: bigint;
1415
+ maxFeePerGas?: bigint;
1416
+ chainId?: bigint;
1417
+ accessList?: import("ethers").AccessList;
1418
+ authorizationList?: Array<import("ethers").Authorization>;
1419
+ customData?: any;
1420
+ blockTag?: import("ethers").BlockTag;
1421
+ enableCcipRead?: boolean;
1422
+ }>;
1423
+ createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<{
1424
+ value: string;
1425
+ to: string;
1426
+ data: string;
1427
+ from?: string;
1428
+ type?: number;
1429
+ nonce?: number;
1430
+ gasLimit?: bigint;
1431
+ gasPrice?: bigint;
1432
+ maxPriorityFeePerGas?: bigint;
1433
+ maxFeePerGas?: bigint;
1434
+ chainId?: bigint;
1435
+ accessList?: import("ethers").AccessList;
1436
+ authorizationList?: Array<import("ethers").Authorization>;
1437
+ customData?: any;
1438
+ blockTag?: import("ethers").BlockTag;
1439
+ enableCcipRead?: boolean;
1440
+ }>;
557
1441
  EIP1193SendTransaction: ({ value, ...params }: import("..").EVMTxParams | import("ethers").ContractTransaction) => Promise<string>;
558
1442
  estimateCall: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").EstimateCallParams) => Promise<bigint>;
559
1443
  estimateGasLimit: ({ assetValue, recipient, memo, data, sender, funcName, funcParams, txOverrides, }: import("..").EVMTransferParams & {
@@ -594,11 +1478,79 @@ export declare const HYPEREVMToolbox: ({ provider, ...toolboxParams }: EVMToolbo
594
1478
  approvedAmount: ({ assetAddress, spenderAddress, from }: import("..").IsApprovedParams) => Promise<bigint>;
595
1479
  broadcastTransaction: ((signedTx: string) => Promise<import("ethers").TransactionResponse>) | ((signedTx: string) => Promise<import("ethers").TransactionResponse>);
596
1480
  call: <T>({ callProvider, contractAddress, abi, funcName, funcParams, txOverrides, feeOption, }: import("..").CallParams) => Promise<T>;
597
- createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<import("ethers").ContractTransaction>;
1481
+ createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<{
1482
+ value: string;
1483
+ to: string;
1484
+ data: string;
1485
+ from?: string;
1486
+ type?: number;
1487
+ nonce?: number;
1488
+ gasLimit?: bigint;
1489
+ gasPrice?: bigint;
1490
+ maxPriorityFeePerGas?: bigint;
1491
+ maxFeePerGas?: bigint;
1492
+ chainId?: bigint;
1493
+ accessList?: import("ethers").AccessList;
1494
+ authorizationList?: Array<import("ethers").Authorization>;
1495
+ customData?: any;
1496
+ blockTag?: import("ethers").BlockTag;
1497
+ enableCcipRead?: boolean;
1498
+ }>;
598
1499
  createContract: (address: string, abi: readonly (import("ethers").JsonFragment | import("ethers").Fragment)[]) => import("ethers").Contract;
599
- createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<import("ethers").ContractTransaction>;
600
- createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
601
- createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
1500
+ createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<{
1501
+ value: string;
1502
+ to: string;
1503
+ data: string;
1504
+ from?: string;
1505
+ type?: number;
1506
+ nonce?: number;
1507
+ gasLimit?: bigint;
1508
+ gasPrice?: bigint;
1509
+ maxPriorityFeePerGas?: bigint;
1510
+ maxFeePerGas?: bigint;
1511
+ chainId?: bigint;
1512
+ accessList?: import("ethers").AccessList;
1513
+ authorizationList?: Array<import("ethers").Authorization>;
1514
+ customData?: any;
1515
+ blockTag?: import("ethers").BlockTag;
1516
+ enableCcipRead?: boolean;
1517
+ }>;
1518
+ createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<{
1519
+ value: string;
1520
+ to: string;
1521
+ data: string;
1522
+ from?: string;
1523
+ type?: number;
1524
+ nonce?: number;
1525
+ gasLimit?: bigint;
1526
+ gasPrice?: bigint;
1527
+ maxPriorityFeePerGas?: bigint;
1528
+ maxFeePerGas?: bigint;
1529
+ chainId?: bigint;
1530
+ accessList?: import("ethers").AccessList;
1531
+ authorizationList?: Array<import("ethers").Authorization>;
1532
+ customData?: any;
1533
+ blockTag?: import("ethers").BlockTag;
1534
+ enableCcipRead?: boolean;
1535
+ }>;
1536
+ createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<{
1537
+ value: string;
1538
+ to: string;
1539
+ data: string;
1540
+ from?: string;
1541
+ type?: number;
1542
+ nonce?: number;
1543
+ gasLimit?: bigint;
1544
+ gasPrice?: bigint;
1545
+ maxPriorityFeePerGas?: bigint;
1546
+ maxFeePerGas?: bigint;
1547
+ chainId?: bigint;
1548
+ accessList?: import("ethers").AccessList;
1549
+ authorizationList?: Array<import("ethers").Authorization>;
1550
+ customData?: any;
1551
+ blockTag?: import("ethers").BlockTag;
1552
+ enableCcipRead?: boolean;
1553
+ }>;
602
1554
  EIP1193SendTransaction: ({ value, ...params }: import("..").EVMTxParams | import("ethers").ContractTransaction) => Promise<string>;
603
1555
  estimateCall: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").EstimateCallParams) => Promise<bigint>;
604
1556
  estimateGasLimit: ({ assetValue, recipient, memo, data, sender, funcName, funcParams, txOverrides, }: import("..").EVMTransferParams & {
@@ -639,11 +1591,79 @@ export declare const LINEAToolbox: ({ provider, ...toolboxParams }: EVMToolboxPa
639
1591
  approvedAmount: ({ assetAddress, spenderAddress, from }: import("..").IsApprovedParams) => Promise<bigint>;
640
1592
  broadcastTransaction: ((signedTx: string) => Promise<import("ethers").TransactionResponse>) | ((signedTx: string) => Promise<import("ethers").TransactionResponse>);
641
1593
  call: <T>({ callProvider, contractAddress, abi, funcName, funcParams, txOverrides, feeOption, }: import("..").CallParams) => Promise<T>;
642
- createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<import("ethers").ContractTransaction>;
1594
+ createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<{
1595
+ value: string;
1596
+ to: string;
1597
+ data: string;
1598
+ from?: string;
1599
+ type?: number;
1600
+ nonce?: number;
1601
+ gasLimit?: bigint;
1602
+ gasPrice?: bigint;
1603
+ maxPriorityFeePerGas?: bigint;
1604
+ maxFeePerGas?: bigint;
1605
+ chainId?: bigint;
1606
+ accessList?: import("ethers").AccessList;
1607
+ authorizationList?: Array<import("ethers").Authorization>;
1608
+ customData?: any;
1609
+ blockTag?: import("ethers").BlockTag;
1610
+ enableCcipRead?: boolean;
1611
+ }>;
643
1612
  createContract: (address: string, abi: readonly (import("ethers").JsonFragment | import("ethers").Fragment)[]) => import("ethers").Contract;
644
- createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<import("ethers").ContractTransaction>;
645
- createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
646
- createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
1613
+ createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<{
1614
+ value: string;
1615
+ to: string;
1616
+ data: string;
1617
+ from?: string;
1618
+ type?: number;
1619
+ nonce?: number;
1620
+ gasLimit?: bigint;
1621
+ gasPrice?: bigint;
1622
+ maxPriorityFeePerGas?: bigint;
1623
+ maxFeePerGas?: bigint;
1624
+ chainId?: bigint;
1625
+ accessList?: import("ethers").AccessList;
1626
+ authorizationList?: Array<import("ethers").Authorization>;
1627
+ customData?: any;
1628
+ blockTag?: import("ethers").BlockTag;
1629
+ enableCcipRead?: boolean;
1630
+ }>;
1631
+ createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<{
1632
+ value: string;
1633
+ to: string;
1634
+ data: string;
1635
+ from?: string;
1636
+ type?: number;
1637
+ nonce?: number;
1638
+ gasLimit?: bigint;
1639
+ gasPrice?: bigint;
1640
+ maxPriorityFeePerGas?: bigint;
1641
+ maxFeePerGas?: bigint;
1642
+ chainId?: bigint;
1643
+ accessList?: import("ethers").AccessList;
1644
+ authorizationList?: Array<import("ethers").Authorization>;
1645
+ customData?: any;
1646
+ blockTag?: import("ethers").BlockTag;
1647
+ enableCcipRead?: boolean;
1648
+ }>;
1649
+ createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<{
1650
+ value: string;
1651
+ to: string;
1652
+ data: string;
1653
+ from?: string;
1654
+ type?: number;
1655
+ nonce?: number;
1656
+ gasLimit?: bigint;
1657
+ gasPrice?: bigint;
1658
+ maxPriorityFeePerGas?: bigint;
1659
+ maxFeePerGas?: bigint;
1660
+ chainId?: bigint;
1661
+ accessList?: import("ethers").AccessList;
1662
+ authorizationList?: Array<import("ethers").Authorization>;
1663
+ customData?: any;
1664
+ blockTag?: import("ethers").BlockTag;
1665
+ enableCcipRead?: boolean;
1666
+ }>;
647
1667
  EIP1193SendTransaction: ({ value, ...params }: import("..").EVMTxParams | import("ethers").ContractTransaction) => Promise<string>;
648
1668
  estimateCall: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").EstimateCallParams) => Promise<bigint>;
649
1669
  estimateGasLimit: ({ assetValue, recipient, memo, data, sender, funcName, funcParams, txOverrides, }: import("..").EVMTransferParams & {
@@ -684,11 +1704,79 @@ export declare const MATICToolbox: ({ provider, ...toolboxParams }: EVMToolboxPa
684
1704
  approvedAmount: ({ assetAddress, spenderAddress, from }: import("..").IsApprovedParams) => Promise<bigint>;
685
1705
  broadcastTransaction: ((signedTx: string) => Promise<import("ethers").TransactionResponse>) | ((signedTx: string) => Promise<import("ethers").TransactionResponse>);
686
1706
  call: <T>({ callProvider, contractAddress, abi, funcName, funcParams, txOverrides, feeOption, }: import("..").CallParams) => Promise<T>;
687
- createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<import("ethers").ContractTransaction>;
1707
+ createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<{
1708
+ value: string;
1709
+ to: string;
1710
+ data: string;
1711
+ from?: string;
1712
+ type?: number;
1713
+ nonce?: number;
1714
+ gasLimit?: bigint;
1715
+ gasPrice?: bigint;
1716
+ maxPriorityFeePerGas?: bigint;
1717
+ maxFeePerGas?: bigint;
1718
+ chainId?: bigint;
1719
+ accessList?: import("ethers").AccessList;
1720
+ authorizationList?: Array<import("ethers").Authorization>;
1721
+ customData?: any;
1722
+ blockTag?: import("ethers").BlockTag;
1723
+ enableCcipRead?: boolean;
1724
+ }>;
688
1725
  createContract: (address: string, abi: readonly (import("ethers").JsonFragment | import("ethers").Fragment)[]) => import("ethers").Contract;
689
- createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<import("ethers").ContractTransaction>;
690
- createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
691
- createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
1726
+ createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<{
1727
+ value: string;
1728
+ to: string;
1729
+ data: string;
1730
+ from?: string;
1731
+ type?: number;
1732
+ nonce?: number;
1733
+ gasLimit?: bigint;
1734
+ gasPrice?: bigint;
1735
+ maxPriorityFeePerGas?: bigint;
1736
+ maxFeePerGas?: bigint;
1737
+ chainId?: bigint;
1738
+ accessList?: import("ethers").AccessList;
1739
+ authorizationList?: Array<import("ethers").Authorization>;
1740
+ customData?: any;
1741
+ blockTag?: import("ethers").BlockTag;
1742
+ enableCcipRead?: boolean;
1743
+ }>;
1744
+ createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<{
1745
+ value: string;
1746
+ to: string;
1747
+ data: string;
1748
+ from?: string;
1749
+ type?: number;
1750
+ nonce?: number;
1751
+ gasLimit?: bigint;
1752
+ gasPrice?: bigint;
1753
+ maxPriorityFeePerGas?: bigint;
1754
+ maxFeePerGas?: bigint;
1755
+ chainId?: bigint;
1756
+ accessList?: import("ethers").AccessList;
1757
+ authorizationList?: Array<import("ethers").Authorization>;
1758
+ customData?: any;
1759
+ blockTag?: import("ethers").BlockTag;
1760
+ enableCcipRead?: boolean;
1761
+ }>;
1762
+ createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<{
1763
+ value: string;
1764
+ to: string;
1765
+ data: string;
1766
+ from?: string;
1767
+ type?: number;
1768
+ nonce?: number;
1769
+ gasLimit?: bigint;
1770
+ gasPrice?: bigint;
1771
+ maxPriorityFeePerGas?: bigint;
1772
+ maxFeePerGas?: bigint;
1773
+ chainId?: bigint;
1774
+ accessList?: import("ethers").AccessList;
1775
+ authorizationList?: Array<import("ethers").Authorization>;
1776
+ customData?: any;
1777
+ blockTag?: import("ethers").BlockTag;
1778
+ enableCcipRead?: boolean;
1779
+ }>;
692
1780
  EIP1193SendTransaction: ({ value, ...params }: import("..").EVMTxParams | import("ethers").ContractTransaction) => Promise<string>;
693
1781
  estimateCall: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").EstimateCallParams) => Promise<bigint>;
694
1782
  estimateGasLimit: ({ assetValue, recipient, memo, data, sender, funcName, funcParams, txOverrides, }: import("..").EVMTransferParams & {
@@ -729,11 +1817,79 @@ export declare const MEGAETHToolbox: ({ provider, ...toolboxParams }: EVMToolbox
729
1817
  approvedAmount: ({ assetAddress, spenderAddress, from }: import("..").IsApprovedParams) => Promise<bigint>;
730
1818
  broadcastTransaction: ((signedTx: string) => Promise<import("ethers").TransactionResponse>) | ((signedTx: string) => Promise<import("ethers").TransactionResponse>);
731
1819
  call: <T>({ callProvider, contractAddress, abi, funcName, funcParams, txOverrides, feeOption, }: import("..").CallParams) => Promise<T>;
732
- createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<import("ethers").ContractTransaction>;
1820
+ createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<{
1821
+ value: string;
1822
+ to: string;
1823
+ data: string;
1824
+ from?: string;
1825
+ type?: number;
1826
+ nonce?: number;
1827
+ gasLimit?: bigint;
1828
+ gasPrice?: bigint;
1829
+ maxPriorityFeePerGas?: bigint;
1830
+ maxFeePerGas?: bigint;
1831
+ chainId?: bigint;
1832
+ accessList?: import("ethers").AccessList;
1833
+ authorizationList?: Array<import("ethers").Authorization>;
1834
+ customData?: any;
1835
+ blockTag?: import("ethers").BlockTag;
1836
+ enableCcipRead?: boolean;
1837
+ }>;
733
1838
  createContract: (address: string, abi: readonly (import("ethers").JsonFragment | import("ethers").Fragment)[]) => import("ethers").Contract;
734
- createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<import("ethers").ContractTransaction>;
735
- createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
736
- createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
1839
+ createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<{
1840
+ value: string;
1841
+ to: string;
1842
+ data: string;
1843
+ from?: string;
1844
+ type?: number;
1845
+ nonce?: number;
1846
+ gasLimit?: bigint;
1847
+ gasPrice?: bigint;
1848
+ maxPriorityFeePerGas?: bigint;
1849
+ maxFeePerGas?: bigint;
1850
+ chainId?: bigint;
1851
+ accessList?: import("ethers").AccessList;
1852
+ authorizationList?: Array<import("ethers").Authorization>;
1853
+ customData?: any;
1854
+ blockTag?: import("ethers").BlockTag;
1855
+ enableCcipRead?: boolean;
1856
+ }>;
1857
+ createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<{
1858
+ value: string;
1859
+ to: string;
1860
+ data: string;
1861
+ from?: string;
1862
+ type?: number;
1863
+ nonce?: number;
1864
+ gasLimit?: bigint;
1865
+ gasPrice?: bigint;
1866
+ maxPriorityFeePerGas?: bigint;
1867
+ maxFeePerGas?: bigint;
1868
+ chainId?: bigint;
1869
+ accessList?: import("ethers").AccessList;
1870
+ authorizationList?: Array<import("ethers").Authorization>;
1871
+ customData?: any;
1872
+ blockTag?: import("ethers").BlockTag;
1873
+ enableCcipRead?: boolean;
1874
+ }>;
1875
+ createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<{
1876
+ value: string;
1877
+ to: string;
1878
+ data: string;
1879
+ from?: string;
1880
+ type?: number;
1881
+ nonce?: number;
1882
+ gasLimit?: bigint;
1883
+ gasPrice?: bigint;
1884
+ maxPriorityFeePerGas?: bigint;
1885
+ maxFeePerGas?: bigint;
1886
+ chainId?: bigint;
1887
+ accessList?: import("ethers").AccessList;
1888
+ authorizationList?: Array<import("ethers").Authorization>;
1889
+ customData?: any;
1890
+ blockTag?: import("ethers").BlockTag;
1891
+ enableCcipRead?: boolean;
1892
+ }>;
737
1893
  EIP1193SendTransaction: ({ value, ...params }: import("..").EVMTxParams | import("ethers").ContractTransaction) => Promise<string>;
738
1894
  estimateCall: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").EstimateCallParams) => Promise<bigint>;
739
1895
  estimateGasLimit: ({ assetValue, recipient, memo, data, sender, funcName, funcParams, txOverrides, }: import("..").EVMTransferParams & {
@@ -774,11 +1930,79 @@ export declare const MONADToolbox: ({ provider, ...toolboxParams }: EVMToolboxPa
774
1930
  approvedAmount: ({ assetAddress, spenderAddress, from }: import("..").IsApprovedParams) => Promise<bigint>;
775
1931
  broadcastTransaction: ((signedTx: string) => Promise<import("ethers").TransactionResponse>) | ((signedTx: string) => Promise<import("ethers").TransactionResponse>);
776
1932
  call: <T>({ callProvider, contractAddress, abi, funcName, funcParams, txOverrides, feeOption, }: import("..").CallParams) => Promise<T>;
777
- createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<import("ethers").ContractTransaction>;
1933
+ createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<{
1934
+ value: string;
1935
+ to: string;
1936
+ data: string;
1937
+ from?: string;
1938
+ type?: number;
1939
+ nonce?: number;
1940
+ gasLimit?: bigint;
1941
+ gasPrice?: bigint;
1942
+ maxPriorityFeePerGas?: bigint;
1943
+ maxFeePerGas?: bigint;
1944
+ chainId?: bigint;
1945
+ accessList?: import("ethers").AccessList;
1946
+ authorizationList?: Array<import("ethers").Authorization>;
1947
+ customData?: any;
1948
+ blockTag?: import("ethers").BlockTag;
1949
+ enableCcipRead?: boolean;
1950
+ }>;
778
1951
  createContract: (address: string, abi: readonly (import("ethers").JsonFragment | import("ethers").Fragment)[]) => import("ethers").Contract;
779
- createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<import("ethers").ContractTransaction>;
780
- createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
781
- createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
1952
+ createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<{
1953
+ value: string;
1954
+ to: string;
1955
+ data: string;
1956
+ from?: string;
1957
+ type?: number;
1958
+ nonce?: number;
1959
+ gasLimit?: bigint;
1960
+ gasPrice?: bigint;
1961
+ maxPriorityFeePerGas?: bigint;
1962
+ maxFeePerGas?: bigint;
1963
+ chainId?: bigint;
1964
+ accessList?: import("ethers").AccessList;
1965
+ authorizationList?: Array<import("ethers").Authorization>;
1966
+ customData?: any;
1967
+ blockTag?: import("ethers").BlockTag;
1968
+ enableCcipRead?: boolean;
1969
+ }>;
1970
+ createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<{
1971
+ value: string;
1972
+ to: string;
1973
+ data: string;
1974
+ from?: string;
1975
+ type?: number;
1976
+ nonce?: number;
1977
+ gasLimit?: bigint;
1978
+ gasPrice?: bigint;
1979
+ maxPriorityFeePerGas?: bigint;
1980
+ maxFeePerGas?: bigint;
1981
+ chainId?: bigint;
1982
+ accessList?: import("ethers").AccessList;
1983
+ authorizationList?: Array<import("ethers").Authorization>;
1984
+ customData?: any;
1985
+ blockTag?: import("ethers").BlockTag;
1986
+ enableCcipRead?: boolean;
1987
+ }>;
1988
+ createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<{
1989
+ value: string;
1990
+ to: string;
1991
+ data: string;
1992
+ from?: string;
1993
+ type?: number;
1994
+ nonce?: number;
1995
+ gasLimit?: bigint;
1996
+ gasPrice?: bigint;
1997
+ maxPriorityFeePerGas?: bigint;
1998
+ maxFeePerGas?: bigint;
1999
+ chainId?: bigint;
2000
+ accessList?: import("ethers").AccessList;
2001
+ authorizationList?: Array<import("ethers").Authorization>;
2002
+ customData?: any;
2003
+ blockTag?: import("ethers").BlockTag;
2004
+ enableCcipRead?: boolean;
2005
+ }>;
782
2006
  EIP1193SendTransaction: ({ value, ...params }: import("..").EVMTxParams | import("ethers").ContractTransaction) => Promise<string>;
783
2007
  estimateCall: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").EstimateCallParams) => Promise<bigint>;
784
2008
  estimateGasLimit: ({ assetValue, recipient, memo, data, sender, funcName, funcParams, txOverrides, }: import("..").EVMTransferParams & {
@@ -819,11 +2043,79 @@ export declare const PLASMAToolbox: ({ provider, ...toolboxParams }: EVMToolboxP
819
2043
  approvedAmount: ({ assetAddress, spenderAddress, from }: import("..").IsApprovedParams) => Promise<bigint>;
820
2044
  broadcastTransaction: ((signedTx: string) => Promise<import("ethers").TransactionResponse>) | ((signedTx: string) => Promise<import("ethers").TransactionResponse>);
821
2045
  call: <T>({ callProvider, contractAddress, abi, funcName, funcParams, txOverrides, feeOption, }: import("..").CallParams) => Promise<T>;
822
- createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<import("ethers").ContractTransaction>;
2046
+ createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<{
2047
+ value: string;
2048
+ to: string;
2049
+ data: string;
2050
+ from?: string;
2051
+ type?: number;
2052
+ nonce?: number;
2053
+ gasLimit?: bigint;
2054
+ gasPrice?: bigint;
2055
+ maxPriorityFeePerGas?: bigint;
2056
+ maxFeePerGas?: bigint;
2057
+ chainId?: bigint;
2058
+ accessList?: import("ethers").AccessList;
2059
+ authorizationList?: Array<import("ethers").Authorization>;
2060
+ customData?: any;
2061
+ blockTag?: import("ethers").BlockTag;
2062
+ enableCcipRead?: boolean;
2063
+ }>;
823
2064
  createContract: (address: string, abi: readonly (import("ethers").JsonFragment | import("ethers").Fragment)[]) => import("ethers").Contract;
824
- createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<import("ethers").ContractTransaction>;
825
- createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
826
- createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
2065
+ createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<{
2066
+ value: string;
2067
+ to: string;
2068
+ data: string;
2069
+ from?: string;
2070
+ type?: number;
2071
+ nonce?: number;
2072
+ gasLimit?: bigint;
2073
+ gasPrice?: bigint;
2074
+ maxPriorityFeePerGas?: bigint;
2075
+ maxFeePerGas?: bigint;
2076
+ chainId?: bigint;
2077
+ accessList?: import("ethers").AccessList;
2078
+ authorizationList?: Array<import("ethers").Authorization>;
2079
+ customData?: any;
2080
+ blockTag?: import("ethers").BlockTag;
2081
+ enableCcipRead?: boolean;
2082
+ }>;
2083
+ createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<{
2084
+ value: string;
2085
+ to: string;
2086
+ data: string;
2087
+ from?: string;
2088
+ type?: number;
2089
+ nonce?: number;
2090
+ gasLimit?: bigint;
2091
+ gasPrice?: bigint;
2092
+ maxPriorityFeePerGas?: bigint;
2093
+ maxFeePerGas?: bigint;
2094
+ chainId?: bigint;
2095
+ accessList?: import("ethers").AccessList;
2096
+ authorizationList?: Array<import("ethers").Authorization>;
2097
+ customData?: any;
2098
+ blockTag?: import("ethers").BlockTag;
2099
+ enableCcipRead?: boolean;
2100
+ }>;
2101
+ createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<{
2102
+ value: string;
2103
+ to: string;
2104
+ data: string;
2105
+ from?: string;
2106
+ type?: number;
2107
+ nonce?: number;
2108
+ gasLimit?: bigint;
2109
+ gasPrice?: bigint;
2110
+ maxPriorityFeePerGas?: bigint;
2111
+ maxFeePerGas?: bigint;
2112
+ chainId?: bigint;
2113
+ accessList?: import("ethers").AccessList;
2114
+ authorizationList?: Array<import("ethers").Authorization>;
2115
+ customData?: any;
2116
+ blockTag?: import("ethers").BlockTag;
2117
+ enableCcipRead?: boolean;
2118
+ }>;
827
2119
  EIP1193SendTransaction: ({ value, ...params }: import("..").EVMTxParams | import("ethers").ContractTransaction) => Promise<string>;
828
2120
  estimateCall: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").EstimateCallParams) => Promise<bigint>;
829
2121
  estimateGasLimit: ({ assetValue, recipient, memo, data, sender, funcName, funcParams, txOverrides, }: import("..").EVMTransferParams & {
@@ -864,11 +2156,79 @@ export declare const SONICToolbox: ({ provider, ...toolboxParams }: EVMToolboxPa
864
2156
  approvedAmount: ({ assetAddress, spenderAddress, from }: import("..").IsApprovedParams) => Promise<bigint>;
865
2157
  broadcastTransaction: ((signedTx: string) => Promise<import("ethers").TransactionResponse>) | ((signedTx: string) => Promise<import("ethers").TransactionResponse>);
866
2158
  call: <T>({ callProvider, contractAddress, abi, funcName, funcParams, txOverrides, feeOption, }: import("..").CallParams) => Promise<T>;
867
- createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<import("ethers").ContractTransaction>;
2159
+ createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<{
2160
+ value: string;
2161
+ to: string;
2162
+ data: string;
2163
+ from?: string;
2164
+ type?: number;
2165
+ nonce?: number;
2166
+ gasLimit?: bigint;
2167
+ gasPrice?: bigint;
2168
+ maxPriorityFeePerGas?: bigint;
2169
+ maxFeePerGas?: bigint;
2170
+ chainId?: bigint;
2171
+ accessList?: import("ethers").AccessList;
2172
+ authorizationList?: Array<import("ethers").Authorization>;
2173
+ customData?: any;
2174
+ blockTag?: import("ethers").BlockTag;
2175
+ enableCcipRead?: boolean;
2176
+ }>;
868
2177
  createContract: (address: string, abi: readonly (import("ethers").JsonFragment | import("ethers").Fragment)[]) => import("ethers").Contract;
869
- createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<import("ethers").ContractTransaction>;
870
- createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
871
- createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
2178
+ createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<{
2179
+ value: string;
2180
+ to: string;
2181
+ data: string;
2182
+ from?: string;
2183
+ type?: number;
2184
+ nonce?: number;
2185
+ gasLimit?: bigint;
2186
+ gasPrice?: bigint;
2187
+ maxPriorityFeePerGas?: bigint;
2188
+ maxFeePerGas?: bigint;
2189
+ chainId?: bigint;
2190
+ accessList?: import("ethers").AccessList;
2191
+ authorizationList?: Array<import("ethers").Authorization>;
2192
+ customData?: any;
2193
+ blockTag?: import("ethers").BlockTag;
2194
+ enableCcipRead?: boolean;
2195
+ }>;
2196
+ createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<{
2197
+ value: string;
2198
+ to: string;
2199
+ data: string;
2200
+ from?: string;
2201
+ type?: number;
2202
+ nonce?: number;
2203
+ gasLimit?: bigint;
2204
+ gasPrice?: bigint;
2205
+ maxPriorityFeePerGas?: bigint;
2206
+ maxFeePerGas?: bigint;
2207
+ chainId?: bigint;
2208
+ accessList?: import("ethers").AccessList;
2209
+ authorizationList?: Array<import("ethers").Authorization>;
2210
+ customData?: any;
2211
+ blockTag?: import("ethers").BlockTag;
2212
+ enableCcipRead?: boolean;
2213
+ }>;
2214
+ createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<{
2215
+ value: string;
2216
+ to: string;
2217
+ data: string;
2218
+ from?: string;
2219
+ type?: number;
2220
+ nonce?: number;
2221
+ gasLimit?: bigint;
2222
+ gasPrice?: bigint;
2223
+ maxPriorityFeePerGas?: bigint;
2224
+ maxFeePerGas?: bigint;
2225
+ chainId?: bigint;
2226
+ accessList?: import("ethers").AccessList;
2227
+ authorizationList?: Array<import("ethers").Authorization>;
2228
+ customData?: any;
2229
+ blockTag?: import("ethers").BlockTag;
2230
+ enableCcipRead?: boolean;
2231
+ }>;
872
2232
  EIP1193SendTransaction: ({ value, ...params }: import("..").EVMTxParams | import("ethers").ContractTransaction) => Promise<string>;
873
2233
  estimateCall: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").EstimateCallParams) => Promise<bigint>;
874
2234
  estimateGasLimit: ({ assetValue, recipient, memo, data, sender, funcName, funcParams, txOverrides, }: import("..").EVMTransferParams & {
@@ -909,11 +2269,79 @@ export declare const UNIToolbox: ({ provider, ...toolboxParams }: EVMToolboxPara
909
2269
  approvedAmount: ({ assetAddress, spenderAddress, from }: import("..").IsApprovedParams) => Promise<bigint>;
910
2270
  broadcastTransaction: ((signedTx: string) => Promise<import("ethers").TransactionResponse>) | ((signedTx: string) => Promise<import("ethers").TransactionResponse>);
911
2271
  call: <T>({ callProvider, contractAddress, abi, funcName, funcParams, txOverrides, feeOption, }: import("..").CallParams) => Promise<T>;
912
- createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<import("ethers").ContractTransaction>;
2272
+ createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<{
2273
+ value: string;
2274
+ to: string;
2275
+ data: string;
2276
+ from?: string;
2277
+ type?: number;
2278
+ nonce?: number;
2279
+ gasLimit?: bigint;
2280
+ gasPrice?: bigint;
2281
+ maxPriorityFeePerGas?: bigint;
2282
+ maxFeePerGas?: bigint;
2283
+ chainId?: bigint;
2284
+ accessList?: import("ethers").AccessList;
2285
+ authorizationList?: Array<import("ethers").Authorization>;
2286
+ customData?: any;
2287
+ blockTag?: import("ethers").BlockTag;
2288
+ enableCcipRead?: boolean;
2289
+ }>;
913
2290
  createContract: (address: string, abi: readonly (import("ethers").JsonFragment | import("ethers").Fragment)[]) => import("ethers").Contract;
914
- createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<import("ethers").ContractTransaction>;
915
- createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
916
- createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
2291
+ createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<{
2292
+ value: string;
2293
+ to: string;
2294
+ data: string;
2295
+ from?: string;
2296
+ type?: number;
2297
+ nonce?: number;
2298
+ gasLimit?: bigint;
2299
+ gasPrice?: bigint;
2300
+ maxPriorityFeePerGas?: bigint;
2301
+ maxFeePerGas?: bigint;
2302
+ chainId?: bigint;
2303
+ accessList?: import("ethers").AccessList;
2304
+ authorizationList?: Array<import("ethers").Authorization>;
2305
+ customData?: any;
2306
+ blockTag?: import("ethers").BlockTag;
2307
+ enableCcipRead?: boolean;
2308
+ }>;
2309
+ createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<{
2310
+ value: string;
2311
+ to: string;
2312
+ data: string;
2313
+ from?: string;
2314
+ type?: number;
2315
+ nonce?: number;
2316
+ gasLimit?: bigint;
2317
+ gasPrice?: bigint;
2318
+ maxPriorityFeePerGas?: bigint;
2319
+ maxFeePerGas?: bigint;
2320
+ chainId?: bigint;
2321
+ accessList?: import("ethers").AccessList;
2322
+ authorizationList?: Array<import("ethers").Authorization>;
2323
+ customData?: any;
2324
+ blockTag?: import("ethers").BlockTag;
2325
+ enableCcipRead?: boolean;
2326
+ }>;
2327
+ createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<{
2328
+ value: string;
2329
+ to: string;
2330
+ data: string;
2331
+ from?: string;
2332
+ type?: number;
2333
+ nonce?: number;
2334
+ gasLimit?: bigint;
2335
+ gasPrice?: bigint;
2336
+ maxPriorityFeePerGas?: bigint;
2337
+ maxFeePerGas?: bigint;
2338
+ chainId?: bigint;
2339
+ accessList?: import("ethers").AccessList;
2340
+ authorizationList?: Array<import("ethers").Authorization>;
2341
+ customData?: any;
2342
+ blockTag?: import("ethers").BlockTag;
2343
+ enableCcipRead?: boolean;
2344
+ }>;
917
2345
  EIP1193SendTransaction: ({ value, ...params }: import("..").EVMTxParams | import("ethers").ContractTransaction) => Promise<string>;
918
2346
  estimateCall: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").EstimateCallParams) => Promise<bigint>;
919
2347
  estimateGasLimit: ({ assetValue, recipient, memo, data, sender, funcName, funcParams, txOverrides, }: import("..").EVMTransferParams & {
@@ -954,11 +2382,79 @@ export declare const XLayerToolbox: ({ provider, ...toolboxParams }: EVMToolboxP
954
2382
  approvedAmount: ({ assetAddress, spenderAddress, from }: import("..").IsApprovedParams) => Promise<bigint>;
955
2383
  broadcastTransaction: ((signedTx: string) => Promise<import("ethers").TransactionResponse>) | ((signedTx: string) => Promise<import("ethers").TransactionResponse>);
956
2384
  call: <T>({ callProvider, contractAddress, abi, funcName, funcParams, txOverrides, feeOption, }: import("..").CallParams) => Promise<T>;
957
- createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<import("ethers").ContractTransaction>;
2385
+ createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<{
2386
+ value: string;
2387
+ to: string;
2388
+ data: string;
2389
+ from?: string;
2390
+ type?: number;
2391
+ nonce?: number;
2392
+ gasLimit?: bigint;
2393
+ gasPrice?: bigint;
2394
+ maxPriorityFeePerGas?: bigint;
2395
+ maxFeePerGas?: bigint;
2396
+ chainId?: bigint;
2397
+ accessList?: import("ethers").AccessList;
2398
+ authorizationList?: Array<import("ethers").Authorization>;
2399
+ customData?: any;
2400
+ blockTag?: import("ethers").BlockTag;
2401
+ enableCcipRead?: boolean;
2402
+ }>;
958
2403
  createContract: (address: string, abi: readonly (import("ethers").JsonFragment | import("ethers").Fragment)[]) => import("ethers").Contract;
959
- createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<import("ethers").ContractTransaction>;
960
- createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
961
- createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
2404
+ createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<{
2405
+ value: string;
2406
+ to: string;
2407
+ data: string;
2408
+ from?: string;
2409
+ type?: number;
2410
+ nonce?: number;
2411
+ gasLimit?: bigint;
2412
+ gasPrice?: bigint;
2413
+ maxPriorityFeePerGas?: bigint;
2414
+ maxFeePerGas?: bigint;
2415
+ chainId?: bigint;
2416
+ accessList?: import("ethers").AccessList;
2417
+ authorizationList?: Array<import("ethers").Authorization>;
2418
+ customData?: any;
2419
+ blockTag?: import("ethers").BlockTag;
2420
+ enableCcipRead?: boolean;
2421
+ }>;
2422
+ createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<{
2423
+ value: string;
2424
+ to: string;
2425
+ data: string;
2426
+ from?: string;
2427
+ type?: number;
2428
+ nonce?: number;
2429
+ gasLimit?: bigint;
2430
+ gasPrice?: bigint;
2431
+ maxPriorityFeePerGas?: bigint;
2432
+ maxFeePerGas?: bigint;
2433
+ chainId?: bigint;
2434
+ accessList?: import("ethers").AccessList;
2435
+ authorizationList?: Array<import("ethers").Authorization>;
2436
+ customData?: any;
2437
+ blockTag?: import("ethers").BlockTag;
2438
+ enableCcipRead?: boolean;
2439
+ }>;
2440
+ createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<{
2441
+ value: string;
2442
+ to: string;
2443
+ data: string;
2444
+ from?: string;
2445
+ type?: number;
2446
+ nonce?: number;
2447
+ gasLimit?: bigint;
2448
+ gasPrice?: bigint;
2449
+ maxPriorityFeePerGas?: bigint;
2450
+ maxFeePerGas?: bigint;
2451
+ chainId?: bigint;
2452
+ accessList?: import("ethers").AccessList;
2453
+ authorizationList?: Array<import("ethers").Authorization>;
2454
+ customData?: any;
2455
+ blockTag?: import("ethers").BlockTag;
2456
+ enableCcipRead?: boolean;
2457
+ }>;
962
2458
  EIP1193SendTransaction: ({ value, ...params }: import("..").EVMTxParams | import("ethers").ContractTransaction) => Promise<string>;
963
2459
  estimateCall: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").EstimateCallParams) => Promise<bigint>;
964
2460
  estimateGasLimit: ({ assetValue, recipient, memo, data, sender, funcName, funcParams, txOverrides, }: import("..").EVMTransferParams & {