@swapkit/toolboxes 4.1.3 → 4.1.5
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.
- package/dist/src/cosmos/index.cjs +2 -2
- package/dist/src/cosmos/index.cjs.map +3 -3
- package/dist/src/cosmos/index.js +2 -2
- package/dist/src/cosmos/index.js.map +3 -3
- package/dist/src/evm/index.cjs +2 -2
- package/dist/src/evm/index.cjs.map +6 -6
- package/dist/src/evm/index.js +2 -2
- package/dist/src/evm/index.js.map +6 -6
- package/dist/src/index.cjs +3 -3
- package/dist/src/index.cjs.map +9 -9
- package/dist/src/index.js +3 -3
- package/dist/src/index.js.map +9 -9
- package/dist/src/solana/index.cjs +2 -2
- package/dist/src/solana/index.cjs.map +3 -3
- package/dist/src/solana/index.js +2 -2
- package/dist/src/solana/index.js.map +3 -3
- package/dist/src/utxo/index.cjs +3 -3
- package/dist/src/utxo/index.cjs.map +2 -2
- package/dist/src/utxo/index.js +3 -3
- package/dist/src/utxo/index.js.map +2 -2
- package/dist/types/cosmos/toolbox/cosmos.d.ts +2 -2
- package/dist/types/cosmos/toolbox/cosmos.d.ts.map +1 -1
- package/dist/types/evm/toolbox/baseEVMToolbox.d.ts.map +1 -1
- package/dist/types/evm/toolbox/evm.d.ts +320 -0
- package/dist/types/evm/toolbox/evm.d.ts.map +1 -1
- package/dist/types/evm/toolbox/index.d.ts +3 -153
- package/dist/types/evm/toolbox/index.d.ts.map +1 -1
- package/dist/types/evm/toolbox/op.d.ts.map +1 -1
- package/dist/types/evm/types.d.ts +9 -1
- package/dist/types/evm/types.d.ts.map +1 -1
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/solana/toolbox.d.ts +10 -0
- package/dist/types/solana/toolbox.d.ts.map +1 -1
- package/package.json +3 -3
|
@@ -284,6 +284,166 @@ export declare const BSCToolbox: ({ provider: providerParam, ...toolboxSignerPar
|
|
|
284
284
|
transfer: ({ assetValue, memo, recipient, feeOptionKey, sender, ...tx }: import("..").EVMTransferParams) => Promise<string>;
|
|
285
285
|
validateAddress: (address: string) => boolean;
|
|
286
286
|
}>;
|
|
287
|
+
export declare const BotanixToolbox: ({ provider: providerParam, ...toolboxSignerParams }: EVMToolboxParams) => Promise<{
|
|
288
|
+
getBalance: (address: string, scamFilter?: boolean) => Promise<import("@swapkit/helpers").AssetValue[]>;
|
|
289
|
+
getNetworkParams: () => import("@swapkit/helpers").NetworkParams;
|
|
290
|
+
approve: ({ assetAddress, spenderAddress, feeOptionKey, amount, gasLimitFallback, from: fromParam, nonce, }: import("..").ApproveParams) => Promise<string>;
|
|
291
|
+
approvedAmount: ({ assetAddress, spenderAddress, from }: import("..").IsApprovedParams) => Promise<bigint>;
|
|
292
|
+
broadcastTransaction: ((signedTx: string) => Promise<import("ethers").TransactionResponse>) | ((signedTx: string) => Promise<import("ethers").TransactionResponse>);
|
|
293
|
+
call: <T>({ callProvider, contractAddress, abi, funcName, funcParams, txOverrides, feeOption, }: import("..").CallParams) => Promise<T>;
|
|
294
|
+
createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<import("ethers").ContractTransaction>;
|
|
295
|
+
createContract: (address: string, abi: readonly (import("ethers").JsonFragment | import("ethers").Fragment)[]) => import("ethers").Contract;
|
|
296
|
+
createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<import("ethers").ContractTransaction>;
|
|
297
|
+
createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
|
|
298
|
+
createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
|
|
299
|
+
EIP1193SendTransaction: ({ value, ...params }: import("..").EVMTxParams | import("ethers").ContractTransaction) => Promise<string>;
|
|
300
|
+
estimateCall: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").EstimateCallParams) => Promise<bigint>;
|
|
301
|
+
estimateGasLimit: ({ assetValue, recipient, memo, data, sender, funcName, funcParams, txOverrides, }: import("..").EVMTransferParams & {
|
|
302
|
+
assetValue: import("@swapkit/helpers").AssetValue;
|
|
303
|
+
funcName?: string;
|
|
304
|
+
funcParams?: unknown[];
|
|
305
|
+
txOverrides?: import("..").EVMTxParams;
|
|
306
|
+
data?: string;
|
|
307
|
+
}) => Promise<bigint>;
|
|
308
|
+
estimateGasPrices: () => Promise<{ [key in FeeOption]: {
|
|
309
|
+
l1GasPrice?: bigint;
|
|
310
|
+
gasPrice?: bigint;
|
|
311
|
+
maxFeePerGas?: bigint;
|
|
312
|
+
maxPriorityFeePerGas?: bigint;
|
|
313
|
+
}; }>;
|
|
314
|
+
estimateTransactionFee: ({ feeOption, chain, ...txObject }: import("..").EIP1559TxParams & {
|
|
315
|
+
feeOption: FeeOption;
|
|
316
|
+
chain: EVMChain;
|
|
317
|
+
}) => Promise<import("@swapkit/helpers").AssetValue>;
|
|
318
|
+
getAddress: () => string | Promise<string> | undefined;
|
|
319
|
+
isApproved: ({ assetAddress, spenderAddress, from, amount }: import("..").IsApprovedParams) => Promise<boolean>;
|
|
320
|
+
sendTransaction: ({ feeOptionKey, ...tx }: import("..").EVMTxParams & {
|
|
321
|
+
feeOptionKey?: FeeOption;
|
|
322
|
+
}) => Promise<string>;
|
|
323
|
+
signMessage: ((message: string | Uint8Array) => Promise<string>) | ((message: string | Uint8Array) => Promise<string>) | ((_message: string | Uint8Array) => Promise<string>) | undefined;
|
|
324
|
+
transfer: ({ assetValue, memo, recipient, feeOptionKey, sender, ...tx }: import("..").EVMTransferParams) => Promise<string>;
|
|
325
|
+
validateAddress: (address: string) => boolean;
|
|
326
|
+
}>;
|
|
327
|
+
export declare const COREToolbox: ({ provider: providerParam, ...toolboxSignerParams }: EVMToolboxParams) => Promise<{
|
|
328
|
+
getBalance: (address: string, scamFilter?: boolean) => Promise<import("@swapkit/helpers").AssetValue[]>;
|
|
329
|
+
getNetworkParams: () => import("@swapkit/helpers").NetworkParams;
|
|
330
|
+
approve: ({ assetAddress, spenderAddress, feeOptionKey, amount, gasLimitFallback, from: fromParam, nonce, }: import("..").ApproveParams) => Promise<string>;
|
|
331
|
+
approvedAmount: ({ assetAddress, spenderAddress, from }: import("..").IsApprovedParams) => Promise<bigint>;
|
|
332
|
+
broadcastTransaction: ((signedTx: string) => Promise<import("ethers").TransactionResponse>) | ((signedTx: string) => Promise<import("ethers").TransactionResponse>);
|
|
333
|
+
call: <T>({ callProvider, contractAddress, abi, funcName, funcParams, txOverrides, feeOption, }: import("..").CallParams) => Promise<T>;
|
|
334
|
+
createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<import("ethers").ContractTransaction>;
|
|
335
|
+
createContract: (address: string, abi: readonly (import("ethers").JsonFragment | import("ethers").Fragment)[]) => import("ethers").Contract;
|
|
336
|
+
createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<import("ethers").ContractTransaction>;
|
|
337
|
+
createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
|
|
338
|
+
createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
|
|
339
|
+
EIP1193SendTransaction: ({ value, ...params }: import("..").EVMTxParams | import("ethers").ContractTransaction) => Promise<string>;
|
|
340
|
+
estimateCall: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").EstimateCallParams) => Promise<bigint>;
|
|
341
|
+
estimateGasLimit: ({ assetValue, recipient, memo, data, sender, funcName, funcParams, txOverrides, }: import("..").EVMTransferParams & {
|
|
342
|
+
assetValue: import("@swapkit/helpers").AssetValue;
|
|
343
|
+
funcName?: string;
|
|
344
|
+
funcParams?: unknown[];
|
|
345
|
+
txOverrides?: import("..").EVMTxParams;
|
|
346
|
+
data?: string;
|
|
347
|
+
}) => Promise<bigint>;
|
|
348
|
+
estimateGasPrices: () => Promise<{ [key in FeeOption]: {
|
|
349
|
+
l1GasPrice?: bigint;
|
|
350
|
+
gasPrice?: bigint;
|
|
351
|
+
maxFeePerGas?: bigint;
|
|
352
|
+
maxPriorityFeePerGas?: bigint;
|
|
353
|
+
}; }>;
|
|
354
|
+
estimateTransactionFee: ({ feeOption, chain, ...txObject }: import("..").EIP1559TxParams & {
|
|
355
|
+
feeOption: FeeOption;
|
|
356
|
+
chain: EVMChain;
|
|
357
|
+
}) => Promise<import("@swapkit/helpers").AssetValue>;
|
|
358
|
+
getAddress: () => string | Promise<string> | undefined;
|
|
359
|
+
isApproved: ({ assetAddress, spenderAddress, from, amount }: import("..").IsApprovedParams) => Promise<boolean>;
|
|
360
|
+
sendTransaction: ({ feeOptionKey, ...tx }: import("..").EVMTxParams & {
|
|
361
|
+
feeOptionKey?: FeeOption;
|
|
362
|
+
}) => Promise<string>;
|
|
363
|
+
signMessage: ((message: string | Uint8Array) => Promise<string>) | ((message: string | Uint8Array) => Promise<string>) | ((_message: string | Uint8Array) => Promise<string>) | undefined;
|
|
364
|
+
transfer: ({ assetValue, memo, recipient, feeOptionKey, sender, ...tx }: import("..").EVMTransferParams) => Promise<string>;
|
|
365
|
+
validateAddress: (address: string) => boolean;
|
|
366
|
+
}>;
|
|
367
|
+
export declare const CORNToolbox: ({ provider: providerParam, ...toolboxSignerParams }: EVMToolboxParams) => Promise<{
|
|
368
|
+
getBalance: (address: string, scamFilter?: boolean) => Promise<import("@swapkit/helpers").AssetValue[]>;
|
|
369
|
+
getNetworkParams: () => import("@swapkit/helpers").NetworkParams;
|
|
370
|
+
approve: ({ assetAddress, spenderAddress, feeOptionKey, amount, gasLimitFallback, from: fromParam, nonce, }: import("..").ApproveParams) => Promise<string>;
|
|
371
|
+
approvedAmount: ({ assetAddress, spenderAddress, from }: import("..").IsApprovedParams) => Promise<bigint>;
|
|
372
|
+
broadcastTransaction: ((signedTx: string) => Promise<import("ethers").TransactionResponse>) | ((signedTx: string) => Promise<import("ethers").TransactionResponse>);
|
|
373
|
+
call: <T>({ callProvider, contractAddress, abi, funcName, funcParams, txOverrides, feeOption, }: import("..").CallParams) => Promise<T>;
|
|
374
|
+
createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<import("ethers").ContractTransaction>;
|
|
375
|
+
createContract: (address: string, abi: readonly (import("ethers").JsonFragment | import("ethers").Fragment)[]) => import("ethers").Contract;
|
|
376
|
+
createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<import("ethers").ContractTransaction>;
|
|
377
|
+
createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
|
|
378
|
+
createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
|
|
379
|
+
EIP1193SendTransaction: ({ value, ...params }: import("..").EVMTxParams | import("ethers").ContractTransaction) => Promise<string>;
|
|
380
|
+
estimateCall: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").EstimateCallParams) => Promise<bigint>;
|
|
381
|
+
estimateGasLimit: ({ assetValue, recipient, memo, data, sender, funcName, funcParams, txOverrides, }: import("..").EVMTransferParams & {
|
|
382
|
+
assetValue: import("@swapkit/helpers").AssetValue;
|
|
383
|
+
funcName?: string;
|
|
384
|
+
funcParams?: unknown[];
|
|
385
|
+
txOverrides?: import("..").EVMTxParams;
|
|
386
|
+
data?: string;
|
|
387
|
+
}) => Promise<bigint>;
|
|
388
|
+
estimateGasPrices: () => Promise<{ [key in FeeOption]: {
|
|
389
|
+
l1GasPrice?: bigint;
|
|
390
|
+
gasPrice?: bigint;
|
|
391
|
+
maxFeePerGas?: bigint;
|
|
392
|
+
maxPriorityFeePerGas?: bigint;
|
|
393
|
+
}; }>;
|
|
394
|
+
estimateTransactionFee: ({ feeOption, chain, ...txObject }: import("..").EIP1559TxParams & {
|
|
395
|
+
feeOption: FeeOption;
|
|
396
|
+
chain: EVMChain;
|
|
397
|
+
}) => Promise<import("@swapkit/helpers").AssetValue>;
|
|
398
|
+
getAddress: () => string | Promise<string> | undefined;
|
|
399
|
+
isApproved: ({ assetAddress, spenderAddress, from, amount }: import("..").IsApprovedParams) => Promise<boolean>;
|
|
400
|
+
sendTransaction: ({ feeOptionKey, ...tx }: import("..").EVMTxParams & {
|
|
401
|
+
feeOptionKey?: FeeOption;
|
|
402
|
+
}) => Promise<string>;
|
|
403
|
+
signMessage: ((message: string | Uint8Array) => Promise<string>) | ((message: string | Uint8Array) => Promise<string>) | ((_message: string | Uint8Array) => Promise<string>) | undefined;
|
|
404
|
+
transfer: ({ assetValue, memo, recipient, feeOptionKey, sender, ...tx }: import("..").EVMTransferParams) => Promise<string>;
|
|
405
|
+
validateAddress: (address: string) => boolean;
|
|
406
|
+
}>;
|
|
407
|
+
export declare const CROToolbox: ({ provider: providerParam, ...toolboxSignerParams }: EVMToolboxParams) => Promise<{
|
|
408
|
+
getBalance: (address: string, scamFilter?: boolean) => Promise<import("@swapkit/helpers").AssetValue[]>;
|
|
409
|
+
getNetworkParams: () => import("@swapkit/helpers").NetworkParams;
|
|
410
|
+
approve: ({ assetAddress, spenderAddress, feeOptionKey, amount, gasLimitFallback, from: fromParam, nonce, }: import("..").ApproveParams) => Promise<string>;
|
|
411
|
+
approvedAmount: ({ assetAddress, spenderAddress, from }: import("..").IsApprovedParams) => Promise<bigint>;
|
|
412
|
+
broadcastTransaction: ((signedTx: string) => Promise<import("ethers").TransactionResponse>) | ((signedTx: string) => Promise<import("ethers").TransactionResponse>);
|
|
413
|
+
call: <T>({ callProvider, contractAddress, abi, funcName, funcParams, txOverrides, feeOption, }: import("..").CallParams) => Promise<T>;
|
|
414
|
+
createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<import("ethers").ContractTransaction>;
|
|
415
|
+
createContract: (address: string, abi: readonly (import("ethers").JsonFragment | import("ethers").Fragment)[]) => import("ethers").Contract;
|
|
416
|
+
createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<import("ethers").ContractTransaction>;
|
|
417
|
+
createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
|
|
418
|
+
createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
|
|
419
|
+
EIP1193SendTransaction: ({ value, ...params }: import("..").EVMTxParams | import("ethers").ContractTransaction) => Promise<string>;
|
|
420
|
+
estimateCall: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").EstimateCallParams) => Promise<bigint>;
|
|
421
|
+
estimateGasLimit: ({ assetValue, recipient, memo, data, sender, funcName, funcParams, txOverrides, }: import("..").EVMTransferParams & {
|
|
422
|
+
assetValue: import("@swapkit/helpers").AssetValue;
|
|
423
|
+
funcName?: string;
|
|
424
|
+
funcParams?: unknown[];
|
|
425
|
+
txOverrides?: import("..").EVMTxParams;
|
|
426
|
+
data?: string;
|
|
427
|
+
}) => Promise<bigint>;
|
|
428
|
+
estimateGasPrices: () => Promise<{ [key in FeeOption]: {
|
|
429
|
+
l1GasPrice?: bigint;
|
|
430
|
+
gasPrice?: bigint;
|
|
431
|
+
maxFeePerGas?: bigint;
|
|
432
|
+
maxPriorityFeePerGas?: bigint;
|
|
433
|
+
}; }>;
|
|
434
|
+
estimateTransactionFee: ({ feeOption, chain, ...txObject }: import("..").EIP1559TxParams & {
|
|
435
|
+
feeOption: FeeOption;
|
|
436
|
+
chain: EVMChain;
|
|
437
|
+
}) => Promise<import("@swapkit/helpers").AssetValue>;
|
|
438
|
+
getAddress: () => string | Promise<string> | undefined;
|
|
439
|
+
isApproved: ({ assetAddress, spenderAddress, from, amount }: import("..").IsApprovedParams) => Promise<boolean>;
|
|
440
|
+
sendTransaction: ({ feeOptionKey, ...tx }: import("..").EVMTxParams & {
|
|
441
|
+
feeOptionKey?: FeeOption;
|
|
442
|
+
}) => Promise<string>;
|
|
443
|
+
signMessage: ((message: string | Uint8Array) => Promise<string>) | ((message: string | Uint8Array) => Promise<string>) | ((_message: string | Uint8Array) => Promise<string>) | undefined;
|
|
444
|
+
transfer: ({ assetValue, memo, recipient, feeOptionKey, sender, ...tx }: import("..").EVMTransferParams) => Promise<string>;
|
|
445
|
+
validateAddress: (address: string) => boolean;
|
|
446
|
+
}>;
|
|
287
447
|
export declare const GNOToolbox: ({ provider: providerParam, ...toolboxSignerParams }: EVMToolboxParams) => Promise<{
|
|
288
448
|
getBalance: (address: string, scamFilter?: boolean) => Promise<import("@swapkit/helpers").AssetValue[]>;
|
|
289
449
|
getNetworkParams: () => import("@swapkit/helpers").NetworkParams;
|
|
@@ -324,6 +484,46 @@ export declare const GNOToolbox: ({ provider: providerParam, ...toolboxSignerPar
|
|
|
324
484
|
transfer: ({ assetValue, memo, recipient, feeOptionKey, sender, ...tx }: import("..").EVMTransferParams) => Promise<string>;
|
|
325
485
|
validateAddress: (address: string) => boolean;
|
|
326
486
|
}>;
|
|
487
|
+
export declare const HYPEREVMToolbox: ({ provider: providerParam, ...toolboxSignerParams }: EVMToolboxParams) => Promise<{
|
|
488
|
+
getBalance: (address: string, scamFilter?: boolean) => Promise<import("@swapkit/helpers").AssetValue[]>;
|
|
489
|
+
getNetworkParams: () => import("@swapkit/helpers").NetworkParams;
|
|
490
|
+
approve: ({ assetAddress, spenderAddress, feeOptionKey, amount, gasLimitFallback, from: fromParam, nonce, }: import("..").ApproveParams) => Promise<string>;
|
|
491
|
+
approvedAmount: ({ assetAddress, spenderAddress, from }: import("..").IsApprovedParams) => Promise<bigint>;
|
|
492
|
+
broadcastTransaction: ((signedTx: string) => Promise<import("ethers").TransactionResponse>) | ((signedTx: string) => Promise<import("ethers").TransactionResponse>);
|
|
493
|
+
call: <T>({ callProvider, contractAddress, abi, funcName, funcParams, txOverrides, feeOption, }: import("..").CallParams) => Promise<T>;
|
|
494
|
+
createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<import("ethers").ContractTransaction>;
|
|
495
|
+
createContract: (address: string, abi: readonly (import("ethers").JsonFragment | import("ethers").Fragment)[]) => import("ethers").Contract;
|
|
496
|
+
createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<import("ethers").ContractTransaction>;
|
|
497
|
+
createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
|
|
498
|
+
createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
|
|
499
|
+
EIP1193SendTransaction: ({ value, ...params }: import("..").EVMTxParams | import("ethers").ContractTransaction) => Promise<string>;
|
|
500
|
+
estimateCall: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").EstimateCallParams) => Promise<bigint>;
|
|
501
|
+
estimateGasLimit: ({ assetValue, recipient, memo, data, sender, funcName, funcParams, txOverrides, }: import("..").EVMTransferParams & {
|
|
502
|
+
assetValue: import("@swapkit/helpers").AssetValue;
|
|
503
|
+
funcName?: string;
|
|
504
|
+
funcParams?: unknown[];
|
|
505
|
+
txOverrides?: import("..").EVMTxParams;
|
|
506
|
+
data?: string;
|
|
507
|
+
}) => Promise<bigint>;
|
|
508
|
+
estimateGasPrices: () => Promise<{ [key in FeeOption]: {
|
|
509
|
+
l1GasPrice?: bigint;
|
|
510
|
+
gasPrice?: bigint;
|
|
511
|
+
maxFeePerGas?: bigint;
|
|
512
|
+
maxPriorityFeePerGas?: bigint;
|
|
513
|
+
}; }>;
|
|
514
|
+
estimateTransactionFee: ({ feeOption, chain, ...txObject }: import("..").EIP1559TxParams & {
|
|
515
|
+
feeOption: FeeOption;
|
|
516
|
+
chain: EVMChain;
|
|
517
|
+
}) => Promise<import("@swapkit/helpers").AssetValue>;
|
|
518
|
+
getAddress: () => string | Promise<string> | undefined;
|
|
519
|
+
isApproved: ({ assetAddress, spenderAddress, from, amount }: import("..").IsApprovedParams) => Promise<boolean>;
|
|
520
|
+
sendTransaction: ({ feeOptionKey, ...tx }: import("..").EVMTxParams & {
|
|
521
|
+
feeOptionKey?: FeeOption;
|
|
522
|
+
}) => Promise<string>;
|
|
523
|
+
signMessage: ((message: string | Uint8Array) => Promise<string>) | ((message: string | Uint8Array) => Promise<string>) | ((_message: string | Uint8Array) => Promise<string>) | undefined;
|
|
524
|
+
transfer: ({ assetValue, memo, recipient, feeOptionKey, sender, ...tx }: import("..").EVMTransferParams) => Promise<string>;
|
|
525
|
+
validateAddress: (address: string) => boolean;
|
|
526
|
+
}>;
|
|
327
527
|
export declare const MATICToolbox: ({ provider: providerParam, ...toolboxSignerParams }: EVMToolboxParams) => Promise<{
|
|
328
528
|
getBalance: (address: string, scamFilter?: boolean) => Promise<import("@swapkit/helpers").AssetValue[]>;
|
|
329
529
|
getNetworkParams: () => import("@swapkit/helpers").NetworkParams;
|
|
@@ -364,4 +564,124 @@ export declare const MATICToolbox: ({ provider: providerParam, ...toolboxSignerP
|
|
|
364
564
|
transfer: ({ assetValue, memo, recipient, feeOptionKey, sender, ...tx }: import("..").EVMTransferParams) => Promise<string>;
|
|
365
565
|
validateAddress: (address: string) => boolean;
|
|
366
566
|
}>;
|
|
567
|
+
export declare const SONICToolbox: ({ provider: providerParam, ...toolboxSignerParams }: EVMToolboxParams) => Promise<{
|
|
568
|
+
getBalance: (address: string, scamFilter?: boolean) => Promise<import("@swapkit/helpers").AssetValue[]>;
|
|
569
|
+
getNetworkParams: () => import("@swapkit/helpers").NetworkParams;
|
|
570
|
+
approve: ({ assetAddress, spenderAddress, feeOptionKey, amount, gasLimitFallback, from: fromParam, nonce, }: import("..").ApproveParams) => Promise<string>;
|
|
571
|
+
approvedAmount: ({ assetAddress, spenderAddress, from }: import("..").IsApprovedParams) => Promise<bigint>;
|
|
572
|
+
broadcastTransaction: ((signedTx: string) => Promise<import("ethers").TransactionResponse>) | ((signedTx: string) => Promise<import("ethers").TransactionResponse>);
|
|
573
|
+
call: <T>({ callProvider, contractAddress, abi, funcName, funcParams, txOverrides, feeOption, }: import("..").CallParams) => Promise<T>;
|
|
574
|
+
createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<import("ethers").ContractTransaction>;
|
|
575
|
+
createContract: (address: string, abi: readonly (import("ethers").JsonFragment | import("ethers").Fragment)[]) => import("ethers").Contract;
|
|
576
|
+
createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<import("ethers").ContractTransaction>;
|
|
577
|
+
createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
|
|
578
|
+
createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
|
|
579
|
+
EIP1193SendTransaction: ({ value, ...params }: import("..").EVMTxParams | import("ethers").ContractTransaction) => Promise<string>;
|
|
580
|
+
estimateCall: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").EstimateCallParams) => Promise<bigint>;
|
|
581
|
+
estimateGasLimit: ({ assetValue, recipient, memo, data, sender, funcName, funcParams, txOverrides, }: import("..").EVMTransferParams & {
|
|
582
|
+
assetValue: import("@swapkit/helpers").AssetValue;
|
|
583
|
+
funcName?: string;
|
|
584
|
+
funcParams?: unknown[];
|
|
585
|
+
txOverrides?: import("..").EVMTxParams;
|
|
586
|
+
data?: string;
|
|
587
|
+
}) => Promise<bigint>;
|
|
588
|
+
estimateGasPrices: () => Promise<{ [key in FeeOption]: {
|
|
589
|
+
l1GasPrice?: bigint;
|
|
590
|
+
gasPrice?: bigint;
|
|
591
|
+
maxFeePerGas?: bigint;
|
|
592
|
+
maxPriorityFeePerGas?: bigint;
|
|
593
|
+
}; }>;
|
|
594
|
+
estimateTransactionFee: ({ feeOption, chain, ...txObject }: import("..").EIP1559TxParams & {
|
|
595
|
+
feeOption: FeeOption;
|
|
596
|
+
chain: EVMChain;
|
|
597
|
+
}) => Promise<import("@swapkit/helpers").AssetValue>;
|
|
598
|
+
getAddress: () => string | Promise<string> | undefined;
|
|
599
|
+
isApproved: ({ assetAddress, spenderAddress, from, amount }: import("..").IsApprovedParams) => Promise<boolean>;
|
|
600
|
+
sendTransaction: ({ feeOptionKey, ...tx }: import("..").EVMTxParams & {
|
|
601
|
+
feeOptionKey?: FeeOption;
|
|
602
|
+
}) => Promise<string>;
|
|
603
|
+
signMessage: ((message: string | Uint8Array) => Promise<string>) | ((message: string | Uint8Array) => Promise<string>) | ((_message: string | Uint8Array) => Promise<string>) | undefined;
|
|
604
|
+
transfer: ({ assetValue, memo, recipient, feeOptionKey, sender, ...tx }: import("..").EVMTransferParams) => Promise<string>;
|
|
605
|
+
validateAddress: (address: string) => boolean;
|
|
606
|
+
}>;
|
|
607
|
+
export declare const UNIToolbox: ({ provider: providerParam, ...toolboxSignerParams }: EVMToolboxParams) => Promise<{
|
|
608
|
+
getBalance: (address: string, scamFilter?: boolean) => Promise<import("@swapkit/helpers").AssetValue[]>;
|
|
609
|
+
getNetworkParams: () => import("@swapkit/helpers").NetworkParams;
|
|
610
|
+
approve: ({ assetAddress, spenderAddress, feeOptionKey, amount, gasLimitFallback, from: fromParam, nonce, }: import("..").ApproveParams) => Promise<string>;
|
|
611
|
+
approvedAmount: ({ assetAddress, spenderAddress, from }: import("..").IsApprovedParams) => Promise<bigint>;
|
|
612
|
+
broadcastTransaction: ((signedTx: string) => Promise<import("ethers").TransactionResponse>) | ((signedTx: string) => Promise<import("ethers").TransactionResponse>);
|
|
613
|
+
call: <T>({ callProvider, contractAddress, abi, funcName, funcParams, txOverrides, feeOption, }: import("..").CallParams) => Promise<T>;
|
|
614
|
+
createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<import("ethers").ContractTransaction>;
|
|
615
|
+
createContract: (address: string, abi: readonly (import("ethers").JsonFragment | import("ethers").Fragment)[]) => import("ethers").Contract;
|
|
616
|
+
createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<import("ethers").ContractTransaction>;
|
|
617
|
+
createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
|
|
618
|
+
createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
|
|
619
|
+
EIP1193SendTransaction: ({ value, ...params }: import("..").EVMTxParams | import("ethers").ContractTransaction) => Promise<string>;
|
|
620
|
+
estimateCall: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").EstimateCallParams) => Promise<bigint>;
|
|
621
|
+
estimateGasLimit: ({ assetValue, recipient, memo, data, sender, funcName, funcParams, txOverrides, }: import("..").EVMTransferParams & {
|
|
622
|
+
assetValue: import("@swapkit/helpers").AssetValue;
|
|
623
|
+
funcName?: string;
|
|
624
|
+
funcParams?: unknown[];
|
|
625
|
+
txOverrides?: import("..").EVMTxParams;
|
|
626
|
+
data?: string;
|
|
627
|
+
}) => Promise<bigint>;
|
|
628
|
+
estimateGasPrices: () => Promise<{ [key in FeeOption]: {
|
|
629
|
+
l1GasPrice?: bigint;
|
|
630
|
+
gasPrice?: bigint;
|
|
631
|
+
maxFeePerGas?: bigint;
|
|
632
|
+
maxPriorityFeePerGas?: bigint;
|
|
633
|
+
}; }>;
|
|
634
|
+
estimateTransactionFee: ({ feeOption, chain, ...txObject }: import("..").EIP1559TxParams & {
|
|
635
|
+
feeOption: FeeOption;
|
|
636
|
+
chain: EVMChain;
|
|
637
|
+
}) => Promise<import("@swapkit/helpers").AssetValue>;
|
|
638
|
+
getAddress: () => string | Promise<string> | undefined;
|
|
639
|
+
isApproved: ({ assetAddress, spenderAddress, from, amount }: import("..").IsApprovedParams) => Promise<boolean>;
|
|
640
|
+
sendTransaction: ({ feeOptionKey, ...tx }: import("..").EVMTxParams & {
|
|
641
|
+
feeOptionKey?: FeeOption;
|
|
642
|
+
}) => Promise<string>;
|
|
643
|
+
signMessage: ((message: string | Uint8Array) => Promise<string>) | ((message: string | Uint8Array) => Promise<string>) | ((_message: string | Uint8Array) => Promise<string>) | undefined;
|
|
644
|
+
transfer: ({ assetValue, memo, recipient, feeOptionKey, sender, ...tx }: import("..").EVMTransferParams) => Promise<string>;
|
|
645
|
+
validateAddress: (address: string) => boolean;
|
|
646
|
+
}>;
|
|
647
|
+
export declare const XLayerToolbox: ({ provider: providerParam, ...toolboxSignerParams }: EVMToolboxParams) => Promise<{
|
|
648
|
+
getBalance: (address: string, scamFilter?: boolean) => Promise<import("@swapkit/helpers").AssetValue[]>;
|
|
649
|
+
getNetworkParams: () => import("@swapkit/helpers").NetworkParams;
|
|
650
|
+
approve: ({ assetAddress, spenderAddress, feeOptionKey, amount, gasLimitFallback, from: fromParam, nonce, }: import("..").ApproveParams) => Promise<string>;
|
|
651
|
+
approvedAmount: ({ assetAddress, spenderAddress, from }: import("..").IsApprovedParams) => Promise<bigint>;
|
|
652
|
+
broadcastTransaction: ((signedTx: string) => Promise<import("ethers").TransactionResponse>) | ((signedTx: string) => Promise<import("ethers").TransactionResponse>);
|
|
653
|
+
call: <T>({ callProvider, contractAddress, abi, funcName, funcParams, txOverrides, feeOption, }: import("..").CallParams) => Promise<T>;
|
|
654
|
+
createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<import("ethers").ContractTransaction>;
|
|
655
|
+
createContract: (address: string, abi: readonly (import("ethers").JsonFragment | import("ethers").Fragment)[]) => import("ethers").Contract;
|
|
656
|
+
createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<import("ethers").ContractTransaction>;
|
|
657
|
+
createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
|
|
658
|
+
createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
|
|
659
|
+
EIP1193SendTransaction: ({ value, ...params }: import("..").EVMTxParams | import("ethers").ContractTransaction) => Promise<string>;
|
|
660
|
+
estimateCall: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").EstimateCallParams) => Promise<bigint>;
|
|
661
|
+
estimateGasLimit: ({ assetValue, recipient, memo, data, sender, funcName, funcParams, txOverrides, }: import("..").EVMTransferParams & {
|
|
662
|
+
assetValue: import("@swapkit/helpers").AssetValue;
|
|
663
|
+
funcName?: string;
|
|
664
|
+
funcParams?: unknown[];
|
|
665
|
+
txOverrides?: import("..").EVMTxParams;
|
|
666
|
+
data?: string;
|
|
667
|
+
}) => Promise<bigint>;
|
|
668
|
+
estimateGasPrices: () => Promise<{ [key in FeeOption]: {
|
|
669
|
+
l1GasPrice?: bigint;
|
|
670
|
+
gasPrice?: bigint;
|
|
671
|
+
maxFeePerGas?: bigint;
|
|
672
|
+
maxPriorityFeePerGas?: bigint;
|
|
673
|
+
}; }>;
|
|
674
|
+
estimateTransactionFee: ({ feeOption, chain, ...txObject }: import("..").EIP1559TxParams & {
|
|
675
|
+
feeOption: FeeOption;
|
|
676
|
+
chain: EVMChain;
|
|
677
|
+
}) => Promise<import("@swapkit/helpers").AssetValue>;
|
|
678
|
+
getAddress: () => string | Promise<string> | undefined;
|
|
679
|
+
isApproved: ({ assetAddress, spenderAddress, from, amount }: import("..").IsApprovedParams) => Promise<boolean>;
|
|
680
|
+
sendTransaction: ({ feeOptionKey, ...tx }: import("..").EVMTxParams & {
|
|
681
|
+
feeOptionKey?: FeeOption;
|
|
682
|
+
}) => Promise<string>;
|
|
683
|
+
signMessage: ((message: string | Uint8Array) => Promise<string>) | ((message: string | Uint8Array) => Promise<string>) | ((_message: string | Uint8Array) => Promise<string>) | undefined;
|
|
684
|
+
transfer: ({ assetValue, memo, recipient, feeOptionKey, sender, ...tx }: import("..").EVMTransferParams) => Promise<string>;
|
|
685
|
+
validateAddress: (address: string) => boolean;
|
|
686
|
+
}>;
|
|
367
687
|
//# sourceMappingURL=evm.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"evm.d.ts","sourceRoot":"","sources":["../../../../src/evm/toolbox/evm.ts"],"names":[],"mappings":"AAAA,OAAO,EAAS,KAAK,QAAQ,EAAE,SAAS,EAAa,MAAM,kBAAkB,CAAC;AAM9E,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAGjD,wBAAsB,UAAU,CAAC,EAAE,QAAQ,EAAE,GAAG,MAAM,EAAE,EAAE,gBAAgB;4BAG1D;QAAE,OAAO,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAE,EAAE,+DAGjC,SAAS;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"evm.d.ts","sourceRoot":"","sources":["../../../../src/evm/toolbox/evm.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,156 +1,6 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import type { EVMToolboxParams } from "../types";
|
|
3
|
-
export declare function getEvmToolbox<T extends EVMChain>(chain: T, params?: EVMToolboxParams): Promise<
|
|
4
|
-
getBalance: (address: string, scamFilter?: boolean) => Promise<import("@swapkit/helpers").AssetValue[]>;
|
|
5
|
-
getNetworkParams: () => import("@swapkit/helpers").NetworkParams;
|
|
6
|
-
approve: ({ assetAddress, spenderAddress, feeOptionKey, amount, gasLimitFallback, from: fromParam, nonce, }: import("..").ApproveParams) => Promise<string>;
|
|
7
|
-
approvedAmount: ({ assetAddress, spenderAddress, from }: import("..").IsApprovedParams) => Promise<bigint>;
|
|
8
|
-
broadcastTransaction: ((signedTx: string) => Promise<import("ethers").TransactionResponse>) | ((signedTx: string) => Promise<import("ethers").TransactionResponse>);
|
|
9
|
-
call: <T_1>({ callProvider, contractAddress, abi, funcName, funcParams, txOverrides, feeOption, }: import("..").CallParams) => Promise<T_1>;
|
|
10
|
-
createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<import("ethers").ContractTransaction>;
|
|
11
|
-
createContract: (address: string, abi: readonly (import("ethers").JsonFragment | import("ethers").Fragment)[]) => import("ethers").Contract;
|
|
12
|
-
createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<import("ethers").ContractTransaction>;
|
|
13
|
-
createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
|
|
14
|
-
createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
|
|
15
|
-
EIP1193SendTransaction: ({ value, ...params }: import("..").EVMTxParams | import("ethers").ContractTransaction) => Promise<string>;
|
|
16
|
-
estimateCall: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").EstimateCallParams) => Promise<bigint>;
|
|
17
|
-
estimateGasLimit: ({ assetValue, recipient, memo, data, sender, funcName, funcParams, txOverrides, }: import("..").EVMTransferParams & {
|
|
18
|
-
assetValue: import("@swapkit/helpers").AssetValue;
|
|
19
|
-
funcName?: string;
|
|
20
|
-
funcParams?: unknown[];
|
|
21
|
-
txOverrides?: import("..").EVMTxParams;
|
|
22
|
-
data?: string;
|
|
23
|
-
}) => Promise<bigint>;
|
|
24
|
-
estimateGasPrices: () => Promise<{ [key in import("@swapkit/helpers").FeeOption]: {
|
|
25
|
-
l1GasPrice?: bigint;
|
|
26
|
-
gasPrice?: bigint;
|
|
27
|
-
maxFeePerGas?: bigint;
|
|
28
|
-
maxPriorityFeePerGas?: bigint;
|
|
29
|
-
}; }>;
|
|
30
|
-
estimateTransactionFee: ({ feeOption, chain, ...txObject }: import("..").EIP1559TxParams & {
|
|
31
|
-
feeOption: import("@swapkit/helpers").FeeOption;
|
|
32
|
-
chain: EVMChain;
|
|
33
|
-
}) => Promise<import("@swapkit/helpers").AssetValue>;
|
|
34
|
-
getAddress: () => string | Promise<string> | undefined;
|
|
35
|
-
isApproved: ({ assetAddress, spenderAddress, from, amount }: import("..").IsApprovedParams) => Promise<boolean>;
|
|
36
|
-
sendTransaction: ({ feeOptionKey, ...tx }: import("..").EVMTxParams & {
|
|
37
|
-
feeOptionKey?: import("@swapkit/helpers").FeeOption;
|
|
38
|
-
}) => Promise<string>;
|
|
39
|
-
signMessage: ((message: string | Uint8Array) => Promise<string>) | ((message: string | Uint8Array) => Promise<string>) | ((_message: string | Uint8Array) => Promise<string>) | undefined;
|
|
40
|
-
transfer: ({ assetValue, memo, recipient, feeOptionKey, sender, ...tx }: import("..").EVMTransferParams) => Promise<string>;
|
|
41
|
-
validateAddress: (address: string) => boolean;
|
|
42
|
-
} | {
|
|
43
|
-
multicall: (callTuples: {
|
|
44
|
-
address: string;
|
|
45
|
-
data: string;
|
|
46
|
-
}[], multicallAddress?: string, funcName?: string, feeOptionKey?: import("@swapkit/helpers").FeeOption) => Promise<string>;
|
|
47
|
-
getBalance: (address: string, scamFilter?: boolean) => Promise<import("@swapkit/helpers").AssetValue[]>;
|
|
48
|
-
getNetworkParams: () => undefined;
|
|
49
|
-
approve: ({ assetAddress, spenderAddress, feeOptionKey, amount, gasLimitFallback, from: fromParam, nonce, }: import("..").ApproveParams) => Promise<string>;
|
|
50
|
-
approvedAmount: ({ assetAddress, spenderAddress, from }: import("..").IsApprovedParams) => Promise<bigint>;
|
|
51
|
-
broadcastTransaction: ((signedTx: string) => Promise<import("ethers").TransactionResponse>) | ((signedTx: string) => Promise<import("ethers").TransactionResponse>);
|
|
52
|
-
call: <T_1>({ callProvider, contractAddress, abi, funcName, funcParams, txOverrides, feeOption, }: import("..").CallParams) => Promise<T_1>;
|
|
53
|
-
createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<import("ethers").ContractTransaction>;
|
|
54
|
-
createContract: (address: string, abi: readonly (import("ethers").JsonFragment | import("ethers").Fragment)[]) => import("ethers").Contract;
|
|
55
|
-
createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<import("ethers").ContractTransaction>;
|
|
56
|
-
createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
|
|
57
|
-
createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
|
|
58
|
-
EIP1193SendTransaction: ({ value, ...params }: import("..").EVMTxParams | import("ethers").ContractTransaction) => Promise<string>;
|
|
59
|
-
estimateCall: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").EstimateCallParams) => Promise<bigint>;
|
|
60
|
-
estimateGasLimit: ({ assetValue, recipient, memo, data, sender, funcName, funcParams, txOverrides, }: import("..").EVMTransferParams & {
|
|
61
|
-
assetValue: import("@swapkit/helpers").AssetValue;
|
|
62
|
-
funcName?: string;
|
|
63
|
-
funcParams?: unknown[];
|
|
64
|
-
txOverrides?: import("..").EVMTxParams;
|
|
65
|
-
data?: string;
|
|
66
|
-
}) => Promise<bigint>;
|
|
67
|
-
estimateGasPrices: () => Promise<{ [key in import("@swapkit/helpers").FeeOption]: {
|
|
68
|
-
l1GasPrice?: bigint;
|
|
69
|
-
gasPrice?: bigint;
|
|
70
|
-
maxFeePerGas?: bigint;
|
|
71
|
-
maxPriorityFeePerGas?: bigint;
|
|
72
|
-
}; }>;
|
|
73
|
-
estimateTransactionFee: ({ feeOption, chain, ...txObject }: import("..").EIP1559TxParams & {
|
|
74
|
-
feeOption: import("@swapkit/helpers").FeeOption;
|
|
75
|
-
chain: EVMChain;
|
|
76
|
-
}) => Promise<import("@swapkit/helpers").AssetValue>;
|
|
77
|
-
getAddress: () => string | Promise<string> | undefined;
|
|
78
|
-
isApproved: ({ assetAddress, spenderAddress, from, amount }: import("..").IsApprovedParams) => Promise<boolean>;
|
|
79
|
-
sendTransaction: ({ feeOptionKey, ...tx }: import("..").EVMTxParams & {
|
|
80
|
-
feeOptionKey?: import("@swapkit/helpers").FeeOption;
|
|
81
|
-
}) => Promise<string>;
|
|
82
|
-
signMessage: ((message: string | Uint8Array) => Promise<string>) | ((message: string | Uint8Array) => Promise<string>) | ((_message: string | Uint8Array) => Promise<string>) | undefined;
|
|
83
|
-
transfer: ({ assetValue, memo, recipient, feeOptionKey, sender, ...tx }: import("..").EVMTransferParams) => Promise<string>;
|
|
84
|
-
validateAddress: (address: string) => boolean;
|
|
85
|
-
} | {
|
|
86
|
-
estimateGasPrices: Promise<{
|
|
87
|
-
average: {
|
|
88
|
-
l1GasPrice?: bigint;
|
|
89
|
-
gasPrice?: bigint;
|
|
90
|
-
maxFeePerGas?: bigint;
|
|
91
|
-
maxPriorityFeePerGas?: bigint;
|
|
92
|
-
};
|
|
93
|
-
fast: {
|
|
94
|
-
l1GasPrice?: bigint;
|
|
95
|
-
gasPrice?: bigint;
|
|
96
|
-
maxFeePerGas?: bigint;
|
|
97
|
-
maxPriorityFeePerGas?: bigint;
|
|
98
|
-
};
|
|
99
|
-
fastest: {
|
|
100
|
-
l1GasPrice?: bigint;
|
|
101
|
-
gasPrice?: bigint;
|
|
102
|
-
maxFeePerGas?: bigint;
|
|
103
|
-
maxPriorityFeePerGas?: bigint;
|
|
104
|
-
};
|
|
105
|
-
}>;
|
|
106
|
-
estimateL1Gas: (tx: import("ethers").TransactionRequest) => Promise<any>;
|
|
107
|
-
estimateL1GasCost: (tx: import("ethers").TransactionRequest) => Promise<any>;
|
|
108
|
-
estimateL2GasCost: (tx: import("ethers").TransactionRequest) => Promise<any>;
|
|
109
|
-
estimateTotalGasCost: (tx: import("ethers").TransactionRequest) => Promise<any>;
|
|
110
|
-
getBalance: (address: string, scamFilter?: boolean) => Promise<import("@swapkit/helpers").AssetValue[]>;
|
|
111
|
-
getL1GasPrice: () => Promise<bigint | undefined>;
|
|
112
|
-
getNetworkParams: () => {
|
|
113
|
-
blockExplorerUrls: "https://optimistic.etherscan.io"[];
|
|
114
|
-
chainId: import("@swapkit/types").ChainId.Optimism;
|
|
115
|
-
chainName: "Optimism";
|
|
116
|
-
nativeCurrency: {
|
|
117
|
-
decimals: 18;
|
|
118
|
-
name: string;
|
|
119
|
-
symbol: Chain;
|
|
120
|
-
};
|
|
121
|
-
rpcUrls: ["https://mainnet.optimism.io", "https://optimism.llamarpc.com", "https://1rpc.io/op"];
|
|
122
|
-
};
|
|
123
|
-
approve: ({ assetAddress, spenderAddress, feeOptionKey, amount, gasLimitFallback, from: fromParam, nonce, }: import("..").ApproveParams) => Promise<string>;
|
|
124
|
-
approvedAmount: ({ assetAddress, spenderAddress, from }: import("..").IsApprovedParams) => Promise<bigint>;
|
|
125
|
-
broadcastTransaction: ((signedTx: string) => Promise<import("ethers").TransactionResponse>) | ((signedTx: string) => Promise<import("ethers").TransactionResponse>);
|
|
126
|
-
call: <T_1>({ callProvider, contractAddress, abi, funcName, funcParams, txOverrides, feeOption, }: import("..").CallParams) => Promise<T_1>;
|
|
127
|
-
createApprovalTx: ({ assetAddress, spenderAddress, amount, from: fromParam }: import("..").ApproveParams) => Promise<import("ethers").ContractTransaction>;
|
|
128
|
-
createContract: (address: string, abi: readonly (import("ethers").JsonFragment | import("ethers").Fragment)[]) => import("ethers").Contract;
|
|
129
|
-
createContractTxObject: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").CallParams) => Promise<import("ethers").ContractTransaction>;
|
|
130
|
-
createTransaction: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
|
|
131
|
-
createTransferTx: ({ assetValue, memo, recipient, data, sender: fromOverride, maxFeePerGas, maxPriorityFeePerGas, gasPrice, ...tx }: import("..").EVMCreateTransactionParams) => Promise<import("ethers").ContractTransaction>;
|
|
132
|
-
EIP1193SendTransaction: ({ value, ...params }: import("..").EVMTxParams | import("ethers").ContractTransaction) => Promise<string>;
|
|
133
|
-
estimateCall: ({ contractAddress, abi, funcName, funcParams, txOverrides }: import("..").EstimateCallParams) => Promise<bigint>;
|
|
134
|
-
estimateGasLimit: ({ assetValue, recipient, memo, data, sender, funcName, funcParams, txOverrides, }: import("..").EVMTransferParams & {
|
|
135
|
-
assetValue: import("@swapkit/helpers").AssetValue;
|
|
136
|
-
funcName?: string;
|
|
137
|
-
funcParams?: unknown[];
|
|
138
|
-
txOverrides?: import("..").EVMTxParams;
|
|
139
|
-
data?: string;
|
|
140
|
-
}) => Promise<bigint>;
|
|
141
|
-
estimateTransactionFee: ({ feeOption, chain, ...txObject }: import("..").EIP1559TxParams & {
|
|
142
|
-
feeOption: import("@swapkit/helpers").FeeOption;
|
|
143
|
-
chain: EVMChain;
|
|
144
|
-
}) => Promise<import("@swapkit/helpers").AssetValue>;
|
|
145
|
-
getAddress: () => string | Promise<string> | undefined;
|
|
146
|
-
isApproved: ({ assetAddress, spenderAddress, from, amount }: import("..").IsApprovedParams) => Promise<boolean>;
|
|
147
|
-
sendTransaction: ({ feeOptionKey, ...tx }: import("..").EVMTxParams & {
|
|
148
|
-
feeOptionKey?: import("@swapkit/helpers").FeeOption;
|
|
149
|
-
}) => Promise<string>;
|
|
150
|
-
signMessage: ((message: string | Uint8Array) => Promise<string>) | ((message: string | Uint8Array) => Promise<string>) | ((_message: string | Uint8Array) => Promise<string>) | undefined;
|
|
151
|
-
transfer: ({ assetValue, memo, recipient, feeOptionKey, sender, ...tx }: import("..").EVMTransferParams) => Promise<string>;
|
|
152
|
-
validateAddress: (address: string) => boolean;
|
|
153
|
-
}>;
|
|
1
|
+
import { type EVMChain } from "@swapkit/helpers";
|
|
2
|
+
import type { EVMToolboxes, EVMToolboxParams } from "../types";
|
|
3
|
+
export declare function getEvmToolbox<T extends EVMChain>(chain: T, params?: EVMToolboxParams): Promise<EVMToolboxes[T]>;
|
|
154
4
|
export * from "./baseEVMToolbox";
|
|
155
5
|
export * from "./evm";
|
|
156
6
|
export * from "./op";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/evm/toolbox/index.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/evm/toolbox/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAS,KAAK,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAIxD,OAAO,KAAK,EAAE,YAAY,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAI/D,wBAAsB,aAAa,CAAC,CAAC,SAAS,QAAQ,EAAE,KAAK,EAAE,CAAC,EAAE,MAAM,CAAC,EAAE,gBAAgB,4BA0B1F;AAED,cAAc,kBAAkB,CAAC;AACjC,cAAc,OAAO,CAAC;AACtB,cAAc,MAAM,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"op.d.ts","sourceRoot":"","sources":["../../../../src/evm/toolbox/op.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,KAAK,EACL,SAAS,EAIV,MAAM,kBAAkB,CAAC;AAC1B,OAAO,KAAK,EAA6D,kBAAkB,EAAE,MAAM,QAAQ,CAAC;AAC5G,OAAO,EAAE,QAAQ,EAAgB,MAAM,QAAQ,CAAC;AAKhD,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AA0EjD,iBAAS,gBAAgB;;;;;;;;;;EAUxB;AAyCD,wBAAsB,SAAS,CAAC,EAAE,QAAQ,EAAE,aAAa,EAAE,GAAG,mBAAmB,EAAE,EAAE,gBAAgB;;;yBAbhF,MAAM;uBACR,MAAM;2BACF,MAAM;mCACE,MAAM;;;yBAHhB,MAAM;uBACR,MAAM;2BACF,MAAM;mCACE,MAAM;;;yBAHhB,MAAM;uBACR,MAAM;2BACF,MAAM;mCACE,MAAM;;;wBAnDK,kBAAkB;4BA3Bd,kBAAkB;4BAWlB,kBAAkB;+BAQf,kBAAkB;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"op.d.ts","sourceRoot":"","sources":["../../../../src/evm/toolbox/op.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,KAAK,EACL,SAAS,EAIV,MAAM,kBAAkB,CAAC;AAC1B,OAAO,KAAK,EAA6D,kBAAkB,EAAE,MAAM,QAAQ,CAAC;AAC5G,OAAO,EAAE,QAAQ,EAAgB,MAAM,QAAQ,CAAC;AAKhD,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AA0EjD,iBAAS,gBAAgB;;;;;;;;;;EAUxB;AAyCD,wBAAsB,SAAS,CAAC,EAAE,QAAQ,EAAE,aAAa,EAAE,GAAG,mBAAmB,EAAE,EAAE,gBAAgB;;;yBAbhF,MAAM;uBACR,MAAM;2BACF,MAAM;mCACE,MAAM;;;yBAHhB,MAAM;uBACR,MAAM;2BACF,MAAM;mCACE,MAAM;;;yBAHhB,MAAM;uBACR,MAAM;2BACF,MAAM;mCACE,MAAM;;;wBAnDK,kBAAkB;4BA3Bd,kBAAkB;4BAWlB,kBAAkB;+BAQf,kBAAkB;;;;;;;;;;;;;;;;;gBA6FggU,CAAC;kBAAwB,CAAC;mBAA4B,CAAC;YAAuB,CAAC;;;;;;;;;oBAA2mC,CAAC;;;;;GAD7vW"}
|
|
@@ -2,7 +2,7 @@ import type { AssetValue, ChainSigner, DerivationPathArray, FeeOption, GenericCr
|
|
|
2
2
|
import { Chain } from "@swapkit/helpers";
|
|
3
3
|
import type { BigNumberish, BrowserProvider, JsonFragment, JsonRpcProvider, JsonRpcSigner, Signer, Transaction } from "ethers";
|
|
4
4
|
import type { getProvider } from "./index";
|
|
5
|
-
import type { ARBToolbox, AURORAToolbox, AVAXToolbox, BASEToolbox, BERAToolbox, BSCToolbox, ETHToolbox, GNOToolbox, MATICToolbox, OPToolbox } from "./toolbox";
|
|
5
|
+
import type { ARBToolbox, AURORAToolbox, AVAXToolbox, BASEToolbox, BERAToolbox, BSCToolbox, COREToolbox, CORNToolbox, CROToolbox, ETHToolbox, GNOToolbox, HYPEREVMToolbox, MATICToolbox, OPToolbox, SONICToolbox, UNIToolbox, XLayerToolbox } from "./toolbox";
|
|
6
6
|
export declare enum EthNetwork {
|
|
7
7
|
Test = "goerli",
|
|
8
8
|
Main = "homestead"
|
|
@@ -90,9 +90,17 @@ export type EVMToolboxes = {
|
|
|
90
90
|
[Chain.Base]: Awaited<ReturnType<typeof BASEToolbox>>;
|
|
91
91
|
[Chain.Berachain]: Awaited<ReturnType<typeof BERAToolbox>>;
|
|
92
92
|
[Chain.BinanceSmartChain]: Awaited<ReturnType<typeof BSCToolbox>>;
|
|
93
|
+
[Chain.Botanix]: Awaited<ReturnType<typeof SONICToolbox>>;
|
|
94
|
+
[Chain.Core]: Awaited<ReturnType<typeof COREToolbox>>;
|
|
95
|
+
[Chain.Corn]: Awaited<ReturnType<typeof CORNToolbox>>;
|
|
96
|
+
[Chain.Cronos]: Awaited<ReturnType<typeof CROToolbox>>;
|
|
97
|
+
[Chain.Hyperevm]: Awaited<ReturnType<typeof HYPEREVMToolbox>>;
|
|
93
98
|
[Chain.Ethereum]: Awaited<ReturnType<typeof ETHToolbox>>;
|
|
94
99
|
[Chain.Gnosis]: Awaited<ReturnType<typeof GNOToolbox>>;
|
|
95
100
|
[Chain.Optimism]: Awaited<ReturnType<typeof OPToolbox>>;
|
|
96
101
|
[Chain.Polygon]: Awaited<ReturnType<typeof MATICToolbox>>;
|
|
102
|
+
[Chain.Sonic]: Awaited<ReturnType<typeof SONICToolbox>>;
|
|
103
|
+
[Chain.Unichain]: Awaited<ReturnType<typeof UNIToolbox>>;
|
|
104
|
+
[Chain.XLayer]: Awaited<ReturnType<typeof XLayerToolbox>>;
|
|
97
105
|
};
|
|
98
106
|
//# sourceMappingURL=types.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/evm/types.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/evm/types.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,UAAU,EACV,KAAK,EACL,KAAK,WAAW,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"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"}
|