@circle-fin/usdckit 0.23.2 → 0.24.2
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/cjs/actions/index.d.ts +1 -1
- package/dist/cjs/chains/ARB.d.ts +9 -0
- package/dist/cjs/chains/ARB_SEPOLIA.d.ts +9 -0
- package/dist/cjs/chains/ARC_TESTNET.d.ts +11 -2
- package/dist/cjs/chains/ARC_TESTNET.js +3 -36
- package/dist/cjs/chains/AVAX.d.ts +9 -0
- package/dist/cjs/chains/AVAX_FUJI.d.ts +9 -0
- package/dist/cjs/chains/BASE.d.ts +13 -3
- package/dist/cjs/chains/BASE_SEPOLIA.d.ts +13 -3
- package/dist/cjs/chains/ETH.d.ts +9 -0
- package/dist/cjs/chains/ETH_SEPOLIA.d.ts +10 -1
- package/dist/cjs/chains/MATIC.d.ts +12 -3
- package/dist/cjs/chains/MATIC_AMOY.d.ts +10 -1
- package/dist/cjs/chains/MONAD.d.ts +193 -0
- package/dist/cjs/chains/MONAD.js +24 -0
- package/dist/cjs/chains/MONAD_TESTNET.d.ts +187 -0
- package/dist/cjs/chains/MONAD_TESTNET.js +24 -0
- package/dist/cjs/chains/NEAR.d.ts +10 -1
- package/dist/cjs/chains/NEAR_TESTNET.d.ts +10 -1
- package/dist/cjs/chains/OP.d.ts +13 -3
- package/dist/cjs/chains/OP_SEPOLIA.d.ts +13 -3
- package/dist/cjs/chains/SOL.d.ts +9 -0
- package/dist/cjs/chains/SOL_DEVNET.d.ts +9 -0
- package/dist/cjs/chains/UNI.d.ts +14 -4
- package/dist/cjs/chains/UNI_SEPOLIA.d.ts +14 -4
- package/dist/cjs/chains/index.d.ts +4 -2
- package/dist/cjs/chains/index.js +5 -1
- package/dist/cjs/chains/index.test.js +2 -0
- package/dist/cjs/chains.d.ts +2 -0
- package/dist/cjs/chains.js +12 -0
- package/dist/cjs/client.d.ts +1 -1
- package/dist/cjs/extractChain.d.ts +585 -30
- package/dist/cjs/extractChain.test.js +4 -0
- package/dist/cjs/index.d.ts +2 -2
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/metadata.js +1 -1
- package/dist/cjs/providers/circle-wallets/actions/createAccount.d.ts +546 -27
- package/dist/cjs/providers/circle-wallets/actions/createAccount.js +0 -3
- package/dist/cjs/providers/circle-wallets/actions/getAccounts.d.ts +546 -27
- package/dist/cjs/providers/circle-wallets/index.d.ts +960 -66
- package/dist/cjs/providers/circle-wallets/index.js +3 -0
- package/dist/cjs/providers/circle-wallets/transports/index.js +0 -1
- package/dist/cjs/providers/cross-chain-transfer-protocol/chains/ARB.d.ts +9 -0
- package/dist/cjs/providers/cross-chain-transfer-protocol/chains/ARB_SEPOLIA.d.ts +9 -0
- package/dist/cjs/providers/cross-chain-transfer-protocol/chains/AVAX.d.ts +9 -0
- package/dist/cjs/providers/cross-chain-transfer-protocol/chains/AVAX_FUJI.d.ts +9 -0
- package/dist/cjs/providers/cross-chain-transfer-protocol/chains/BASE.d.ts +13 -3
- package/dist/cjs/providers/cross-chain-transfer-protocol/chains/BASE_SEPOLIA.d.ts +13 -3
- package/dist/cjs/providers/cross-chain-transfer-protocol/chains/ETH.d.ts +9 -0
- package/dist/cjs/providers/cross-chain-transfer-protocol/chains/ETH_SEPOLIA.d.ts +10 -1
- package/dist/cjs/providers/cross-chain-transfer-protocol/chains/MATIC.d.ts +12 -3
- package/dist/cjs/providers/cross-chain-transfer-protocol/chains/MATIC_AMOY.d.ts +10 -1
- package/dist/cjs/providers/cross-chain-transfer-protocol/chains/OP.d.ts +13 -3
- package/dist/cjs/providers/cross-chain-transfer-protocol/chains/OP_SEPOLIA.d.ts +13 -3
- package/dist/cjs/providers/cross-chain-transfer-protocol/chains/UNI.d.ts +14 -4
- package/dist/cjs/providers/cross-chain-transfer-protocol/chains/UNI_SEPOLIA.d.ts +14 -4
- package/dist/cjs/providers/cross-chain-transfer-protocol/index.d.ts +157 -25
- package/dist/cjs/providers/solana/index.d.ts +18 -0
- package/dist/cjs/providers/uniswap/chains/ARB.d.ts +9 -0
- package/dist/cjs/providers/uniswap/chains/ARB_SEPOLIA.d.ts +9 -0
- package/dist/cjs/providers/uniswap/chains/AVAX.d.ts +9 -0
- package/dist/cjs/providers/uniswap/chains/BASE.d.ts +13 -3
- package/dist/cjs/providers/uniswap/chains/BASE_SEPOLIA.d.ts +13 -3
- package/dist/cjs/providers/uniswap/chains/ETH.d.ts +9 -0
- package/dist/cjs/providers/uniswap/chains/ETH_SEPOLIA.d.ts +10 -1
- package/dist/cjs/providers/uniswap/chains/MATIC.d.ts +12 -3
- package/dist/cjs/providers/uniswap/chains/OP.d.ts +13 -3
- package/dist/cjs/providers/uniswap/chains/OP_SEPOLIA.d.ts +13 -3
- package/dist/cjs/providers/uniswap/chains/UNI.d.ts +14 -4
- package/dist/cjs/providers/uniswap/chains/UNI_SEPOLIA.d.ts +14 -4
- package/dist/cjs/providers/uniswap/index.d.ts +138 -24
- package/dist/cjs/utils/createConfig.d.ts +1 -1
- package/dist/cjs/utils/createCustomWalletClient.d.ts +1 -1
- package/dist/cjs/utils/getChainContractByAddress.d.ts +1 -1
- package/dist/cjs/utils/getClient.d.ts +30 -1
- package/dist/cjs/utils/getContract.d.ts +8 -8
- package/dist/esm/actions/index.d.ts +1 -1
- package/dist/esm/chains/ARB.d.ts +9 -0
- package/dist/esm/chains/ARB_SEPOLIA.d.ts +9 -0
- package/dist/esm/chains/ARC_TESTNET.d.ts +11 -2
- package/dist/esm/chains/ARC_TESTNET.js +1 -34
- package/dist/esm/chains/AVAX.d.ts +9 -0
- package/dist/esm/chains/AVAX_FUJI.d.ts +9 -0
- package/dist/esm/chains/BASE.d.ts +13 -3
- package/dist/esm/chains/BASE_SEPOLIA.d.ts +13 -3
- package/dist/esm/chains/ETH.d.ts +9 -0
- package/dist/esm/chains/ETH_SEPOLIA.d.ts +10 -1
- package/dist/esm/chains/MATIC.d.ts +12 -3
- package/dist/esm/chains/MATIC_AMOY.d.ts +10 -1
- package/dist/esm/chains/MONAD.d.ts +193 -0
- package/dist/esm/chains/MONAD.js +21 -0
- package/dist/esm/chains/MONAD_TESTNET.d.ts +187 -0
- package/dist/esm/chains/MONAD_TESTNET.js +21 -0
- package/dist/esm/chains/NEAR.d.ts +10 -1
- package/dist/esm/chains/NEAR_TESTNET.d.ts +10 -1
- package/dist/esm/chains/OP.d.ts +13 -3
- package/dist/esm/chains/OP_SEPOLIA.d.ts +13 -3
- package/dist/esm/chains/SOL.d.ts +9 -0
- package/dist/esm/chains/SOL_DEVNET.d.ts +9 -0
- package/dist/esm/chains/UNI.d.ts +14 -4
- package/dist/esm/chains/UNI_SEPOLIA.d.ts +14 -4
- package/dist/esm/chains/index.d.ts +4 -2
- package/dist/esm/chains/index.js +3 -1
- package/dist/esm/chains/index.test.js +2 -0
- package/dist/esm/chains.d.ts +2 -0
- package/dist/esm/chains.js +11 -0
- package/dist/esm/client.d.ts +1 -1
- package/dist/esm/extractChain.d.ts +585 -30
- package/dist/esm/extractChain.test.js +6 -2
- package/dist/esm/index.d.ts +2 -2
- package/dist/esm/index.js +1 -1
- package/dist/esm/metadata.js +1 -1
- package/dist/esm/providers/circle-wallets/actions/createAccount.d.ts +546 -27
- package/dist/esm/providers/circle-wallets/actions/createAccount.js +0 -3
- package/dist/esm/providers/circle-wallets/actions/getAccounts.d.ts +546 -27
- package/dist/esm/providers/circle-wallets/index.d.ts +960 -66
- package/dist/esm/providers/circle-wallets/index.js +4 -1
- package/dist/esm/providers/circle-wallets/transports/index.js +0 -1
- package/dist/esm/providers/cross-chain-transfer-protocol/chains/ARB.d.ts +9 -0
- package/dist/esm/providers/cross-chain-transfer-protocol/chains/ARB_SEPOLIA.d.ts +9 -0
- package/dist/esm/providers/cross-chain-transfer-protocol/chains/AVAX.d.ts +9 -0
- package/dist/esm/providers/cross-chain-transfer-protocol/chains/AVAX_FUJI.d.ts +9 -0
- package/dist/esm/providers/cross-chain-transfer-protocol/chains/BASE.d.ts +13 -3
- package/dist/esm/providers/cross-chain-transfer-protocol/chains/BASE_SEPOLIA.d.ts +13 -3
- package/dist/esm/providers/cross-chain-transfer-protocol/chains/ETH.d.ts +9 -0
- package/dist/esm/providers/cross-chain-transfer-protocol/chains/ETH_SEPOLIA.d.ts +10 -1
- package/dist/esm/providers/cross-chain-transfer-protocol/chains/MATIC.d.ts +12 -3
- package/dist/esm/providers/cross-chain-transfer-protocol/chains/MATIC_AMOY.d.ts +10 -1
- package/dist/esm/providers/cross-chain-transfer-protocol/chains/OP.d.ts +13 -3
- package/dist/esm/providers/cross-chain-transfer-protocol/chains/OP_SEPOLIA.d.ts +13 -3
- package/dist/esm/providers/cross-chain-transfer-protocol/chains/UNI.d.ts +14 -4
- package/dist/esm/providers/cross-chain-transfer-protocol/chains/UNI_SEPOLIA.d.ts +14 -4
- package/dist/esm/providers/cross-chain-transfer-protocol/index.d.ts +157 -25
- package/dist/esm/providers/solana/index.d.ts +18 -0
- package/dist/esm/providers/uniswap/chains/ARB.d.ts +9 -0
- package/dist/esm/providers/uniswap/chains/ARB_SEPOLIA.d.ts +9 -0
- package/dist/esm/providers/uniswap/chains/AVAX.d.ts +9 -0
- package/dist/esm/providers/uniswap/chains/BASE.d.ts +13 -3
- package/dist/esm/providers/uniswap/chains/BASE_SEPOLIA.d.ts +13 -3
- package/dist/esm/providers/uniswap/chains/ETH.d.ts +9 -0
- package/dist/esm/providers/uniswap/chains/ETH_SEPOLIA.d.ts +10 -1
- package/dist/esm/providers/uniswap/chains/MATIC.d.ts +12 -3
- package/dist/esm/providers/uniswap/chains/OP.d.ts +13 -3
- package/dist/esm/providers/uniswap/chains/OP_SEPOLIA.d.ts +13 -3
- package/dist/esm/providers/uniswap/chains/UNI.d.ts +14 -4
- package/dist/esm/providers/uniswap/chains/UNI_SEPOLIA.d.ts +14 -4
- package/dist/esm/providers/uniswap/index.d.ts +138 -24
- package/dist/esm/utils/createConfig.d.ts +1 -1
- package/dist/esm/utils/createCustomWalletClient.d.ts +1 -1
- package/dist/esm/utils/getChainContractByAddress.d.ts +1 -1
- package/dist/esm/utils/getClient.d.ts +30 -1
- package/dist/esm/utils/getContract.d.ts +8 -8
- package/package.json +5 -5
|
@@ -244,8 +244,17 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
|
|
|
244
244
|
sourceId?: number | undefined | undefined;
|
|
245
245
|
testnet?: boolean | undefined | undefined;
|
|
246
246
|
custom?: Record<string, unknown> | undefined;
|
|
247
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
247
248
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
249
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
250
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
251
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
252
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
253
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
254
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
255
|
+
}] | undefined;
|
|
248
256
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
257
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
249
258
|
readonly blockchainId: "ARB";
|
|
250
259
|
readonly blockchainVm: "EVM";
|
|
251
260
|
readonly formatters?: undefined | undefined;
|
|
@@ -422,8 +431,17 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
|
|
|
422
431
|
sourceId?: number | undefined | undefined;
|
|
423
432
|
testnet: true;
|
|
424
433
|
custom?: Record<string, unknown> | undefined;
|
|
434
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
425
435
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
436
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
437
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
438
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
439
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
440
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
441
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
442
|
+
}] | undefined;
|
|
426
443
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
444
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
427
445
|
readonly blockchainId: "ARB-SEPOLIA";
|
|
428
446
|
readonly blockchainVm: "EVM";
|
|
429
447
|
readonly formatters?: undefined | undefined;
|
|
@@ -601,11 +619,20 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
|
|
|
601
619
|
sourceId?: number | undefined | undefined;
|
|
602
620
|
testnet: true;
|
|
603
621
|
custom?: Record<string, unknown> | undefined;
|
|
622
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
604
623
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
605
|
-
|
|
624
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
625
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
626
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
627
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
628
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
629
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
630
|
+
}] | undefined;
|
|
631
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
632
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
606
633
|
readonly blockchainId: "ARC-TESTNET";
|
|
607
634
|
readonly blockchainVm: "EVM";
|
|
608
|
-
readonly formatters?: undefined;
|
|
635
|
+
readonly formatters?: undefined | undefined;
|
|
609
636
|
} | {
|
|
610
637
|
blockExplorers: {
|
|
611
638
|
readonly default: {
|
|
@@ -1061,8 +1088,17 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
|
|
|
1061
1088
|
sourceId?: number | undefined | undefined;
|
|
1062
1089
|
testnet?: boolean | undefined | undefined;
|
|
1063
1090
|
custom?: Record<string, unknown> | undefined;
|
|
1091
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
1064
1092
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
1093
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
1094
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
1095
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
1096
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
1097
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
1098
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
1099
|
+
}] | undefined;
|
|
1065
1100
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
1101
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
1066
1102
|
readonly blockchainId: "AVAX";
|
|
1067
1103
|
readonly blockchainVm: "EVM";
|
|
1068
1104
|
readonly formatters?: undefined | undefined;
|
|
@@ -1380,8 +1416,17 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
|
|
|
1380
1416
|
sourceId?: number | undefined | undefined;
|
|
1381
1417
|
testnet: true;
|
|
1382
1418
|
custom?: Record<string, unknown> | undefined;
|
|
1419
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
1383
1420
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
1421
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
1422
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
1423
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
1424
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
1425
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
1426
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
1427
|
+
}] | undefined;
|
|
1384
1428
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
1429
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
1385
1430
|
readonly blockchainId: "AVAX-FUJI";
|
|
1386
1431
|
readonly blockchainVm: "EVM";
|
|
1387
1432
|
readonly formatters?: undefined | undefined;
|
|
@@ -1739,11 +1784,12 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
|
|
|
1739
1784
|
sourceId: 1;
|
|
1740
1785
|
testnet?: boolean | undefined | undefined;
|
|
1741
1786
|
custom?: Record<string, unknown> | undefined;
|
|
1787
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
1742
1788
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
1743
1789
|
formatters: {
|
|
1744
1790
|
readonly block: {
|
|
1745
1791
|
exclude: [] | undefined;
|
|
1746
|
-
format: (args: import("viem/chains").OpStackRpcBlock) => {
|
|
1792
|
+
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
1747
1793
|
baseFeePerGas: bigint | null;
|
|
1748
1794
|
blobGasUsed: bigint;
|
|
1749
1795
|
difficulty: bigint;
|
|
@@ -1776,7 +1822,7 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
|
|
|
1776
1822
|
};
|
|
1777
1823
|
readonly transaction: {
|
|
1778
1824
|
exclude: [] | undefined;
|
|
1779
|
-
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
1825
|
+
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
1780
1826
|
blockHash: `0x${string}` | null;
|
|
1781
1827
|
blockNumber: bigint | null;
|
|
1782
1828
|
from: import("abitype").Address;
|
|
@@ -1945,11 +1991,12 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
|
|
|
1945
1991
|
};
|
|
1946
1992
|
readonly transactionReceipt: {
|
|
1947
1993
|
exclude: [] | undefined;
|
|
1948
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
1994
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
1949
1995
|
blobGasPrice?: bigint | undefined;
|
|
1950
1996
|
blobGasUsed?: bigint | undefined;
|
|
1951
1997
|
blockHash: import("viem").Hash;
|
|
1952
1998
|
blockNumber: bigint;
|
|
1999
|
+
blockTimestamp?: bigint | undefined;
|
|
1953
2000
|
contractAddress: import("abitype").Address | null | undefined;
|
|
1954
2001
|
cumulativeGasUsed: bigint;
|
|
1955
2002
|
effectiveGasPrice: bigint;
|
|
@@ -1971,9 +2018,17 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
|
|
|
1971
2018
|
type: "transactionReceipt";
|
|
1972
2019
|
};
|
|
1973
2020
|
};
|
|
2021
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
2022
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
2023
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
2024
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
2025
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
2026
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
2027
|
+
}] | undefined;
|
|
1974
2028
|
serializers: {
|
|
1975
2029
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
1976
2030
|
};
|
|
2031
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
1977
2032
|
readonly blockchainId: "BASE";
|
|
1978
2033
|
readonly blockchainVm: "EVM";
|
|
1979
2034
|
} | {
|
|
@@ -2330,11 +2385,12 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
|
|
|
2330
2385
|
sourceId: 11155111;
|
|
2331
2386
|
testnet: true;
|
|
2332
2387
|
custom?: Record<string, unknown> | undefined;
|
|
2388
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
2333
2389
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
2334
2390
|
formatters: {
|
|
2335
2391
|
readonly block: {
|
|
2336
2392
|
exclude: [] | undefined;
|
|
2337
|
-
format: (args: import("viem/chains").OpStackRpcBlock) => {
|
|
2393
|
+
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
2338
2394
|
baseFeePerGas: bigint | null;
|
|
2339
2395
|
blobGasUsed: bigint;
|
|
2340
2396
|
difficulty: bigint;
|
|
@@ -2367,7 +2423,7 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
|
|
|
2367
2423
|
};
|
|
2368
2424
|
readonly transaction: {
|
|
2369
2425
|
exclude: [] | undefined;
|
|
2370
|
-
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
2426
|
+
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
2371
2427
|
blockHash: `0x${string}` | null;
|
|
2372
2428
|
blockNumber: bigint | null;
|
|
2373
2429
|
from: import("abitype").Address;
|
|
@@ -2536,11 +2592,12 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
|
|
|
2536
2592
|
};
|
|
2537
2593
|
readonly transactionReceipt: {
|
|
2538
2594
|
exclude: [] | undefined;
|
|
2539
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
2595
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
2540
2596
|
blobGasPrice?: bigint | undefined;
|
|
2541
2597
|
blobGasUsed?: bigint | undefined;
|
|
2542
2598
|
blockHash: import("viem").Hash;
|
|
2543
2599
|
blockNumber: bigint;
|
|
2600
|
+
blockTimestamp?: bigint | undefined;
|
|
2544
2601
|
contractAddress: import("abitype").Address | null | undefined;
|
|
2545
2602
|
cumulativeGasUsed: bigint;
|
|
2546
2603
|
effectiveGasPrice: bigint;
|
|
@@ -2562,9 +2619,17 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
|
|
|
2562
2619
|
type: "transactionReceipt";
|
|
2563
2620
|
};
|
|
2564
2621
|
};
|
|
2622
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
2623
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
2624
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
2625
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
2626
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
2627
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
2628
|
+
}] | undefined;
|
|
2565
2629
|
serializers: {
|
|
2566
2630
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
2567
2631
|
};
|
|
2632
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
2568
2633
|
readonly blockchainId: "BASE-SEPOLIA";
|
|
2569
2634
|
readonly blockchainVm: "EVM";
|
|
2570
2635
|
readonly network: "base-sepolia";
|
|
@@ -3027,8 +3092,17 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
|
|
|
3027
3092
|
sourceId?: number | undefined | undefined;
|
|
3028
3093
|
testnet?: boolean | undefined | undefined;
|
|
3029
3094
|
custom?: Record<string, unknown> | undefined;
|
|
3095
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
3030
3096
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
3097
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3098
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3099
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3100
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3101
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
3102
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
3103
|
+
}] | undefined;
|
|
3031
3104
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
3105
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
3032
3106
|
readonly blockchainId: "ETH";
|
|
3033
3107
|
readonly blockchainVm: "EVM";
|
|
3034
3108
|
readonly formatters?: undefined | undefined;
|
|
@@ -3344,14 +3418,23 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
|
|
|
3344
3418
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
3345
3419
|
rpcUrls: {
|
|
3346
3420
|
readonly default: {
|
|
3347
|
-
readonly http: readonly ["https://
|
|
3421
|
+
readonly http: readonly ["https://11155111.rpc.thirdweb.com"];
|
|
3348
3422
|
};
|
|
3349
3423
|
};
|
|
3350
3424
|
sourceId?: number | undefined | undefined;
|
|
3351
3425
|
testnet: true;
|
|
3352
3426
|
custom?: Record<string, unknown> | undefined;
|
|
3427
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
3353
3428
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
3429
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3430
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3431
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3432
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3433
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
3434
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
3435
|
+
}] | undefined;
|
|
3354
3436
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
3437
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
3355
3438
|
readonly blockchainId: "ETH-SEPOLIA";
|
|
3356
3439
|
readonly blockchainVm: "EVM";
|
|
3357
3440
|
readonly formatters?: undefined | undefined;
|
|
@@ -3360,10 +3443,10 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
|
|
|
3360
3443
|
readonly default: {
|
|
3361
3444
|
readonly name: "PolygonScan";
|
|
3362
3445
|
readonly url: "https://polygonscan.com";
|
|
3363
|
-
readonly apiUrl: "https://api.
|
|
3446
|
+
readonly apiUrl: "https://api.etherscan.io/v2/api";
|
|
3364
3447
|
};
|
|
3365
3448
|
};
|
|
3366
|
-
blockTime
|
|
3449
|
+
blockTime: 2000;
|
|
3367
3450
|
contracts: {
|
|
3368
3451
|
readonly USDC: {
|
|
3369
3452
|
readonly address: "0x3c499c542cef5e3811e1192ce70d8cc03d5c3359";
|
|
@@ -3522,14 +3605,23 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
|
|
|
3522
3605
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
3523
3606
|
rpcUrls: {
|
|
3524
3607
|
readonly default: {
|
|
3525
|
-
readonly http: readonly ["https://polygon
|
|
3608
|
+
readonly http: readonly ["https://polygon.drpc.org"];
|
|
3526
3609
|
};
|
|
3527
3610
|
};
|
|
3528
3611
|
sourceId?: number | undefined | undefined;
|
|
3529
3612
|
testnet?: boolean | undefined | undefined;
|
|
3530
3613
|
custom?: Record<string, unknown> | undefined;
|
|
3614
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
3531
3615
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
3616
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3617
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3618
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3619
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3620
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
3621
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
3622
|
+
}] | undefined;
|
|
3532
3623
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
3624
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
3533
3625
|
readonly blockchainId: "MATIC";
|
|
3534
3626
|
readonly blockchainVm: "EVM";
|
|
3535
3627
|
readonly formatters?: undefined | undefined;
|
|
@@ -3538,7 +3630,7 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
|
|
|
3538
3630
|
readonly default: {
|
|
3539
3631
|
readonly name: "PolygonScan";
|
|
3540
3632
|
readonly url: "https://amoy.polygonscan.com";
|
|
3541
|
-
readonly apiUrl: "https://api
|
|
3633
|
+
readonly apiUrl: "https://api.etherscan.io/v2/api";
|
|
3542
3634
|
};
|
|
3543
3635
|
};
|
|
3544
3636
|
blockTime?: number | undefined | undefined;
|
|
@@ -3706,11 +3798,398 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
|
|
|
3706
3798
|
sourceId?: number | undefined | undefined;
|
|
3707
3799
|
testnet: true;
|
|
3708
3800
|
custom?: Record<string, unknown> | undefined;
|
|
3801
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
3709
3802
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
3803
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3804
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3805
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3806
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3807
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
3808
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
3809
|
+
}] | undefined;
|
|
3710
3810
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
3811
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
3711
3812
|
readonly blockchainId: "MATIC-AMOY";
|
|
3712
3813
|
readonly blockchainVm: "EVM";
|
|
3713
3814
|
readonly formatters?: undefined | undefined;
|
|
3815
|
+
} | {
|
|
3816
|
+
blockExplorers: {
|
|
3817
|
+
readonly default: {
|
|
3818
|
+
readonly name: "MonadVision";
|
|
3819
|
+
readonly url: "https://monadvision.com";
|
|
3820
|
+
};
|
|
3821
|
+
readonly monadscan: {
|
|
3822
|
+
readonly name: "Monadscan";
|
|
3823
|
+
readonly url: "https://monadscan.com";
|
|
3824
|
+
readonly apiUrl: "https://api.monadscan.com/api";
|
|
3825
|
+
};
|
|
3826
|
+
};
|
|
3827
|
+
blockTime: 400;
|
|
3828
|
+
contracts: {
|
|
3829
|
+
readonly USDC: {
|
|
3830
|
+
readonly address: "0x754704Bc059F8C67012fEd69BC8A327a5aafb603";
|
|
3831
|
+
readonly abi: readonly [{
|
|
3832
|
+
readonly type: "event";
|
|
3833
|
+
readonly name: "Approval";
|
|
3834
|
+
readonly inputs: readonly [{
|
|
3835
|
+
readonly indexed: true;
|
|
3836
|
+
readonly name: "owner";
|
|
3837
|
+
readonly type: "address";
|
|
3838
|
+
}, {
|
|
3839
|
+
readonly indexed: true;
|
|
3840
|
+
readonly name: "spender";
|
|
3841
|
+
readonly type: "address";
|
|
3842
|
+
}, {
|
|
3843
|
+
readonly indexed: false;
|
|
3844
|
+
readonly name: "value";
|
|
3845
|
+
readonly type: "uint256";
|
|
3846
|
+
}];
|
|
3847
|
+
}, {
|
|
3848
|
+
readonly type: "event";
|
|
3849
|
+
readonly name: "Transfer";
|
|
3850
|
+
readonly inputs: readonly [{
|
|
3851
|
+
readonly indexed: true;
|
|
3852
|
+
readonly name: "from";
|
|
3853
|
+
readonly type: "address";
|
|
3854
|
+
}, {
|
|
3855
|
+
readonly indexed: true;
|
|
3856
|
+
readonly name: "to";
|
|
3857
|
+
readonly type: "address";
|
|
3858
|
+
}, {
|
|
3859
|
+
readonly indexed: false;
|
|
3860
|
+
readonly name: "value";
|
|
3861
|
+
readonly type: "uint256";
|
|
3862
|
+
}];
|
|
3863
|
+
}, {
|
|
3864
|
+
readonly type: "function";
|
|
3865
|
+
readonly name: "allowance";
|
|
3866
|
+
readonly stateMutability: "view";
|
|
3867
|
+
readonly inputs: readonly [{
|
|
3868
|
+
readonly name: "owner";
|
|
3869
|
+
readonly type: "address";
|
|
3870
|
+
}, {
|
|
3871
|
+
readonly name: "spender";
|
|
3872
|
+
readonly type: "address";
|
|
3873
|
+
}];
|
|
3874
|
+
readonly outputs: readonly [{
|
|
3875
|
+
readonly type: "uint256";
|
|
3876
|
+
}];
|
|
3877
|
+
}, {
|
|
3878
|
+
readonly type: "function";
|
|
3879
|
+
readonly name: "approve";
|
|
3880
|
+
readonly stateMutability: "nonpayable";
|
|
3881
|
+
readonly inputs: readonly [{
|
|
3882
|
+
readonly name: "spender";
|
|
3883
|
+
readonly type: "address";
|
|
3884
|
+
}, {
|
|
3885
|
+
readonly name: "amount";
|
|
3886
|
+
readonly type: "uint256";
|
|
3887
|
+
}];
|
|
3888
|
+
readonly outputs: readonly [{
|
|
3889
|
+
readonly type: "bool";
|
|
3890
|
+
}];
|
|
3891
|
+
}, {
|
|
3892
|
+
readonly type: "function";
|
|
3893
|
+
readonly name: "balanceOf";
|
|
3894
|
+
readonly stateMutability: "view";
|
|
3895
|
+
readonly inputs: readonly [{
|
|
3896
|
+
readonly name: "account";
|
|
3897
|
+
readonly type: "address";
|
|
3898
|
+
}];
|
|
3899
|
+
readonly outputs: readonly [{
|
|
3900
|
+
readonly type: "uint256";
|
|
3901
|
+
}];
|
|
3902
|
+
}, {
|
|
3903
|
+
readonly type: "function";
|
|
3904
|
+
readonly name: "decimals";
|
|
3905
|
+
readonly stateMutability: "view";
|
|
3906
|
+
readonly inputs: readonly [];
|
|
3907
|
+
readonly outputs: readonly [{
|
|
3908
|
+
readonly type: "uint8";
|
|
3909
|
+
}];
|
|
3910
|
+
}, {
|
|
3911
|
+
readonly type: "function";
|
|
3912
|
+
readonly name: "name";
|
|
3913
|
+
readonly stateMutability: "view";
|
|
3914
|
+
readonly inputs: readonly [];
|
|
3915
|
+
readonly outputs: readonly [{
|
|
3916
|
+
readonly type: "string";
|
|
3917
|
+
}];
|
|
3918
|
+
}, {
|
|
3919
|
+
readonly type: "function";
|
|
3920
|
+
readonly name: "symbol";
|
|
3921
|
+
readonly stateMutability: "view";
|
|
3922
|
+
readonly inputs: readonly [];
|
|
3923
|
+
readonly outputs: readonly [{
|
|
3924
|
+
readonly type: "string";
|
|
3925
|
+
}];
|
|
3926
|
+
}, {
|
|
3927
|
+
readonly type: "function";
|
|
3928
|
+
readonly name: "totalSupply";
|
|
3929
|
+
readonly stateMutability: "view";
|
|
3930
|
+
readonly inputs: readonly [];
|
|
3931
|
+
readonly outputs: readonly [{
|
|
3932
|
+
readonly type: "uint256";
|
|
3933
|
+
}];
|
|
3934
|
+
}, {
|
|
3935
|
+
readonly type: "function";
|
|
3936
|
+
readonly name: "transfer";
|
|
3937
|
+
readonly stateMutability: "nonpayable";
|
|
3938
|
+
readonly inputs: readonly [{
|
|
3939
|
+
readonly name: "recipient";
|
|
3940
|
+
readonly type: "address";
|
|
3941
|
+
}, {
|
|
3942
|
+
readonly name: "amount";
|
|
3943
|
+
readonly type: "uint256";
|
|
3944
|
+
}];
|
|
3945
|
+
readonly outputs: readonly [{
|
|
3946
|
+
readonly type: "bool";
|
|
3947
|
+
}];
|
|
3948
|
+
}, {
|
|
3949
|
+
readonly type: "function";
|
|
3950
|
+
readonly name: "transferFrom";
|
|
3951
|
+
readonly stateMutability: "nonpayable";
|
|
3952
|
+
readonly inputs: readonly [{
|
|
3953
|
+
readonly name: "sender";
|
|
3954
|
+
readonly type: "address";
|
|
3955
|
+
}, {
|
|
3956
|
+
readonly name: "recipient";
|
|
3957
|
+
readonly type: "address";
|
|
3958
|
+
}, {
|
|
3959
|
+
readonly name: "amount";
|
|
3960
|
+
readonly type: "uint256";
|
|
3961
|
+
}];
|
|
3962
|
+
readonly outputs: readonly [{
|
|
3963
|
+
readonly type: "bool";
|
|
3964
|
+
}];
|
|
3965
|
+
}];
|
|
3966
|
+
readonly read: {
|
|
3967
|
+
readonly decimals: () => 6;
|
|
3968
|
+
};
|
|
3969
|
+
};
|
|
3970
|
+
readonly multicall3: {
|
|
3971
|
+
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
3972
|
+
readonly blockCreated: 9248132;
|
|
3973
|
+
};
|
|
3974
|
+
};
|
|
3975
|
+
ensTlds?: readonly string[] | undefined;
|
|
3976
|
+
id: 143;
|
|
3977
|
+
name: "Monad";
|
|
3978
|
+
nativeCurrency: {
|
|
3979
|
+
readonly name: "Monad";
|
|
3980
|
+
readonly symbol: "MON";
|
|
3981
|
+
readonly decimals: 18;
|
|
3982
|
+
};
|
|
3983
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
3984
|
+
rpcUrls: {
|
|
3985
|
+
readonly default: {
|
|
3986
|
+
readonly http: readonly ["https://rpc.monad.xyz", "https://rpc1.monad.xyz"];
|
|
3987
|
+
readonly webSocket: readonly ["wss://rpc.monad.xyz", "wss://rpc1.monad.xyz"];
|
|
3988
|
+
};
|
|
3989
|
+
};
|
|
3990
|
+
sourceId?: number | undefined | undefined;
|
|
3991
|
+
testnet: false;
|
|
3992
|
+
custom?: Record<string, unknown> | undefined;
|
|
3993
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
3994
|
+
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
3995
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3996
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3997
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3998
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3999
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
4000
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
4001
|
+
}] | undefined;
|
|
4002
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
4003
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
4004
|
+
readonly blockchainId: "MONAD";
|
|
4005
|
+
readonly blockchainVm: "EVM";
|
|
4006
|
+
readonly formatters?: undefined | undefined;
|
|
4007
|
+
} | {
|
|
4008
|
+
blockExplorers: {
|
|
4009
|
+
readonly default: {
|
|
4010
|
+
readonly name: "Monad Testnet explorer";
|
|
4011
|
+
readonly url: "https://testnet.monadexplorer.com";
|
|
4012
|
+
};
|
|
4013
|
+
};
|
|
4014
|
+
blockTime: 400;
|
|
4015
|
+
contracts: {
|
|
4016
|
+
readonly USDC: {
|
|
4017
|
+
readonly address: "0x534b2f3A21130d7a60830c2Df862319e593943A3";
|
|
4018
|
+
readonly abi: readonly [{
|
|
4019
|
+
readonly type: "event";
|
|
4020
|
+
readonly name: "Approval";
|
|
4021
|
+
readonly inputs: readonly [{
|
|
4022
|
+
readonly indexed: true;
|
|
4023
|
+
readonly name: "owner";
|
|
4024
|
+
readonly type: "address";
|
|
4025
|
+
}, {
|
|
4026
|
+
readonly indexed: true;
|
|
4027
|
+
readonly name: "spender";
|
|
4028
|
+
readonly type: "address";
|
|
4029
|
+
}, {
|
|
4030
|
+
readonly indexed: false;
|
|
4031
|
+
readonly name: "value";
|
|
4032
|
+
readonly type: "uint256";
|
|
4033
|
+
}];
|
|
4034
|
+
}, {
|
|
4035
|
+
readonly type: "event";
|
|
4036
|
+
readonly name: "Transfer";
|
|
4037
|
+
readonly inputs: readonly [{
|
|
4038
|
+
readonly indexed: true;
|
|
4039
|
+
readonly name: "from";
|
|
4040
|
+
readonly type: "address";
|
|
4041
|
+
}, {
|
|
4042
|
+
readonly indexed: true;
|
|
4043
|
+
readonly name: "to";
|
|
4044
|
+
readonly type: "address";
|
|
4045
|
+
}, {
|
|
4046
|
+
readonly indexed: false;
|
|
4047
|
+
readonly name: "value";
|
|
4048
|
+
readonly type: "uint256";
|
|
4049
|
+
}];
|
|
4050
|
+
}, {
|
|
4051
|
+
readonly type: "function";
|
|
4052
|
+
readonly name: "allowance";
|
|
4053
|
+
readonly stateMutability: "view";
|
|
4054
|
+
readonly inputs: readonly [{
|
|
4055
|
+
readonly name: "owner";
|
|
4056
|
+
readonly type: "address";
|
|
4057
|
+
}, {
|
|
4058
|
+
readonly name: "spender";
|
|
4059
|
+
readonly type: "address";
|
|
4060
|
+
}];
|
|
4061
|
+
readonly outputs: readonly [{
|
|
4062
|
+
readonly type: "uint256";
|
|
4063
|
+
}];
|
|
4064
|
+
}, {
|
|
4065
|
+
readonly type: "function";
|
|
4066
|
+
readonly name: "approve";
|
|
4067
|
+
readonly stateMutability: "nonpayable";
|
|
4068
|
+
readonly inputs: readonly [{
|
|
4069
|
+
readonly name: "spender";
|
|
4070
|
+
readonly type: "address";
|
|
4071
|
+
}, {
|
|
4072
|
+
readonly name: "amount";
|
|
4073
|
+
readonly type: "uint256";
|
|
4074
|
+
}];
|
|
4075
|
+
readonly outputs: readonly [{
|
|
4076
|
+
readonly type: "bool";
|
|
4077
|
+
}];
|
|
4078
|
+
}, {
|
|
4079
|
+
readonly type: "function";
|
|
4080
|
+
readonly name: "balanceOf";
|
|
4081
|
+
readonly stateMutability: "view";
|
|
4082
|
+
readonly inputs: readonly [{
|
|
4083
|
+
readonly name: "account";
|
|
4084
|
+
readonly type: "address";
|
|
4085
|
+
}];
|
|
4086
|
+
readonly outputs: readonly [{
|
|
4087
|
+
readonly type: "uint256";
|
|
4088
|
+
}];
|
|
4089
|
+
}, {
|
|
4090
|
+
readonly type: "function";
|
|
4091
|
+
readonly name: "decimals";
|
|
4092
|
+
readonly stateMutability: "view";
|
|
4093
|
+
readonly inputs: readonly [];
|
|
4094
|
+
readonly outputs: readonly [{
|
|
4095
|
+
readonly type: "uint8";
|
|
4096
|
+
}];
|
|
4097
|
+
}, {
|
|
4098
|
+
readonly type: "function";
|
|
4099
|
+
readonly name: "name";
|
|
4100
|
+
readonly stateMutability: "view";
|
|
4101
|
+
readonly inputs: readonly [];
|
|
4102
|
+
readonly outputs: readonly [{
|
|
4103
|
+
readonly type: "string";
|
|
4104
|
+
}];
|
|
4105
|
+
}, {
|
|
4106
|
+
readonly type: "function";
|
|
4107
|
+
readonly name: "symbol";
|
|
4108
|
+
readonly stateMutability: "view";
|
|
4109
|
+
readonly inputs: readonly [];
|
|
4110
|
+
readonly outputs: readonly [{
|
|
4111
|
+
readonly type: "string";
|
|
4112
|
+
}];
|
|
4113
|
+
}, {
|
|
4114
|
+
readonly type: "function";
|
|
4115
|
+
readonly name: "totalSupply";
|
|
4116
|
+
readonly stateMutability: "view";
|
|
4117
|
+
readonly inputs: readonly [];
|
|
4118
|
+
readonly outputs: readonly [{
|
|
4119
|
+
readonly type: "uint256";
|
|
4120
|
+
}];
|
|
4121
|
+
}, {
|
|
4122
|
+
readonly type: "function";
|
|
4123
|
+
readonly name: "transfer";
|
|
4124
|
+
readonly stateMutability: "nonpayable";
|
|
4125
|
+
readonly inputs: readonly [{
|
|
4126
|
+
readonly name: "recipient";
|
|
4127
|
+
readonly type: "address";
|
|
4128
|
+
}, {
|
|
4129
|
+
readonly name: "amount";
|
|
4130
|
+
readonly type: "uint256";
|
|
4131
|
+
}];
|
|
4132
|
+
readonly outputs: readonly [{
|
|
4133
|
+
readonly type: "bool";
|
|
4134
|
+
}];
|
|
4135
|
+
}, {
|
|
4136
|
+
readonly type: "function";
|
|
4137
|
+
readonly name: "transferFrom";
|
|
4138
|
+
readonly stateMutability: "nonpayable";
|
|
4139
|
+
readonly inputs: readonly [{
|
|
4140
|
+
readonly name: "sender";
|
|
4141
|
+
readonly type: "address";
|
|
4142
|
+
}, {
|
|
4143
|
+
readonly name: "recipient";
|
|
4144
|
+
readonly type: "address";
|
|
4145
|
+
}, {
|
|
4146
|
+
readonly name: "amount";
|
|
4147
|
+
readonly type: "uint256";
|
|
4148
|
+
}];
|
|
4149
|
+
readonly outputs: readonly [{
|
|
4150
|
+
readonly type: "bool";
|
|
4151
|
+
}];
|
|
4152
|
+
}];
|
|
4153
|
+
readonly read: {
|
|
4154
|
+
readonly decimals: () => 6;
|
|
4155
|
+
};
|
|
4156
|
+
};
|
|
4157
|
+
readonly multicall3: {
|
|
4158
|
+
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
4159
|
+
readonly blockCreated: 251449;
|
|
4160
|
+
};
|
|
4161
|
+
};
|
|
4162
|
+
ensTlds?: readonly string[] | undefined;
|
|
4163
|
+
id: 10143;
|
|
4164
|
+
name: "Monad Testnet";
|
|
4165
|
+
nativeCurrency: {
|
|
4166
|
+
readonly name: "Testnet MON Token";
|
|
4167
|
+
readonly symbol: "MON";
|
|
4168
|
+
readonly decimals: 18;
|
|
4169
|
+
};
|
|
4170
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
4171
|
+
rpcUrls: {
|
|
4172
|
+
readonly default: {
|
|
4173
|
+
readonly http: readonly ["https://testnet-rpc.monad.xyz"];
|
|
4174
|
+
};
|
|
4175
|
+
};
|
|
4176
|
+
sourceId?: number | undefined | undefined;
|
|
4177
|
+
testnet: true;
|
|
4178
|
+
custom?: Record<string, unknown> | undefined;
|
|
4179
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
4180
|
+
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
4181
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
4182
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
4183
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
4184
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
4185
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
4186
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
4187
|
+
}] | undefined;
|
|
4188
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
4189
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
4190
|
+
readonly blockchainId: "MONAD-TESTNET";
|
|
4191
|
+
readonly blockchainVm: "EVM";
|
|
4192
|
+
readonly formatters?: undefined | undefined;
|
|
3714
4193
|
} | {
|
|
3715
4194
|
blockExplorers: {
|
|
3716
4195
|
readonly default: {
|
|
@@ -3922,11 +4401,12 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
|
|
|
3922
4401
|
sourceId: 1;
|
|
3923
4402
|
testnet?: boolean | undefined | undefined;
|
|
3924
4403
|
custom?: Record<string, unknown> | undefined;
|
|
4404
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
3925
4405
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
3926
4406
|
formatters: {
|
|
3927
4407
|
readonly block: {
|
|
3928
4408
|
exclude: [] | undefined;
|
|
3929
|
-
format: (args: import("viem/chains").OpStackRpcBlock) => {
|
|
4409
|
+
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
3930
4410
|
baseFeePerGas: bigint | null;
|
|
3931
4411
|
blobGasUsed: bigint;
|
|
3932
4412
|
difficulty: bigint;
|
|
@@ -3959,7 +4439,7 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
|
|
|
3959
4439
|
};
|
|
3960
4440
|
readonly transaction: {
|
|
3961
4441
|
exclude: [] | undefined;
|
|
3962
|
-
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
4442
|
+
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
3963
4443
|
blockHash: `0x${string}` | null;
|
|
3964
4444
|
blockNumber: bigint | null;
|
|
3965
4445
|
from: import("abitype").Address;
|
|
@@ -4128,11 +4608,12 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
|
|
|
4128
4608
|
};
|
|
4129
4609
|
readonly transactionReceipt: {
|
|
4130
4610
|
exclude: [] | undefined;
|
|
4131
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
4611
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
4132
4612
|
blobGasPrice?: bigint | undefined;
|
|
4133
4613
|
blobGasUsed?: bigint | undefined;
|
|
4134
4614
|
blockHash: import("viem").Hash;
|
|
4135
4615
|
blockNumber: bigint;
|
|
4616
|
+
blockTimestamp?: bigint | undefined;
|
|
4136
4617
|
contractAddress: import("abitype").Address | null | undefined;
|
|
4137
4618
|
cumulativeGasUsed: bigint;
|
|
4138
4619
|
effectiveGasPrice: bigint;
|
|
@@ -4154,9 +4635,17 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
|
|
|
4154
4635
|
type: "transactionReceipt";
|
|
4155
4636
|
};
|
|
4156
4637
|
};
|
|
4638
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
4639
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
4640
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
4641
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
4642
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
4643
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
4644
|
+
}] | undefined;
|
|
4157
4645
|
serializers: {
|
|
4158
4646
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
4159
4647
|
};
|
|
4648
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
4160
4649
|
readonly blockchainId: "OP";
|
|
4161
4650
|
readonly blockchainVm: "EVM";
|
|
4162
4651
|
} | {
|
|
@@ -4370,11 +4859,12 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
|
|
|
4370
4859
|
sourceId: 11155111;
|
|
4371
4860
|
testnet: true;
|
|
4372
4861
|
custom?: Record<string, unknown> | undefined;
|
|
4862
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
4373
4863
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
4374
4864
|
formatters: {
|
|
4375
4865
|
readonly block: {
|
|
4376
4866
|
exclude: [] | undefined;
|
|
4377
|
-
format: (args: import("viem/chains").OpStackRpcBlock) => {
|
|
4867
|
+
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
4378
4868
|
baseFeePerGas: bigint | null;
|
|
4379
4869
|
blobGasUsed: bigint;
|
|
4380
4870
|
difficulty: bigint;
|
|
@@ -4407,7 +4897,7 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
|
|
|
4407
4897
|
};
|
|
4408
4898
|
readonly transaction: {
|
|
4409
4899
|
exclude: [] | undefined;
|
|
4410
|
-
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
4900
|
+
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
4411
4901
|
blockHash: `0x${string}` | null;
|
|
4412
4902
|
blockNumber: bigint | null;
|
|
4413
4903
|
from: import("abitype").Address;
|
|
@@ -4576,11 +5066,12 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
|
|
|
4576
5066
|
};
|
|
4577
5067
|
readonly transactionReceipt: {
|
|
4578
5068
|
exclude: [] | undefined;
|
|
4579
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
5069
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
4580
5070
|
blobGasPrice?: bigint | undefined;
|
|
4581
5071
|
blobGasUsed?: bigint | undefined;
|
|
4582
5072
|
blockHash: import("viem").Hash;
|
|
4583
5073
|
blockNumber: bigint;
|
|
5074
|
+
blockTimestamp?: bigint | undefined;
|
|
4584
5075
|
contractAddress: import("abitype").Address | null | undefined;
|
|
4585
5076
|
cumulativeGasUsed: bigint;
|
|
4586
5077
|
effectiveGasPrice: bigint;
|
|
@@ -4602,9 +5093,17 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
|
|
|
4602
5093
|
type: "transactionReceipt";
|
|
4603
5094
|
};
|
|
4604
5095
|
};
|
|
5096
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
5097
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
5098
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
5099
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
5100
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
5101
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
5102
|
+
}] | undefined;
|
|
4605
5103
|
serializers: {
|
|
4606
5104
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
4607
5105
|
};
|
|
5106
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
4608
5107
|
readonly blockchainId: "OP-SEPOLIA";
|
|
4609
5108
|
readonly blockchainVm: "EVM";
|
|
4610
5109
|
} | {
|
|
@@ -4615,7 +5114,7 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
|
|
|
4615
5114
|
readonly apiUrl: "https://api.uniscan.xyz/api";
|
|
4616
5115
|
};
|
|
4617
5116
|
};
|
|
4618
|
-
blockTime:
|
|
5117
|
+
blockTime: 1000;
|
|
4619
5118
|
contracts: {
|
|
4620
5119
|
readonly USDC: {
|
|
4621
5120
|
readonly address: "0x078D782b760474a361dDA0AF3839290b0EF57AD6";
|
|
@@ -4813,11 +5312,12 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
|
|
|
4813
5312
|
sourceId: 1;
|
|
4814
5313
|
testnet?: boolean | undefined | undefined;
|
|
4815
5314
|
custom?: Record<string, unknown> | undefined;
|
|
5315
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
4816
5316
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
4817
5317
|
formatters: {
|
|
4818
5318
|
readonly block: {
|
|
4819
5319
|
exclude: [] | undefined;
|
|
4820
|
-
format: (args: import("viem/chains").OpStackRpcBlock) => {
|
|
5320
|
+
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
4821
5321
|
baseFeePerGas: bigint | null;
|
|
4822
5322
|
blobGasUsed: bigint;
|
|
4823
5323
|
difficulty: bigint;
|
|
@@ -4850,7 +5350,7 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
|
|
|
4850
5350
|
};
|
|
4851
5351
|
readonly transaction: {
|
|
4852
5352
|
exclude: [] | undefined;
|
|
4853
|
-
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
5353
|
+
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
4854
5354
|
blockHash: `0x${string}` | null;
|
|
4855
5355
|
blockNumber: bigint | null;
|
|
4856
5356
|
from: import("abitype").Address;
|
|
@@ -5019,11 +5519,12 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
|
|
|
5019
5519
|
};
|
|
5020
5520
|
readonly transactionReceipt: {
|
|
5021
5521
|
exclude: [] | undefined;
|
|
5022
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
5522
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
5023
5523
|
blobGasPrice?: bigint | undefined;
|
|
5024
5524
|
blobGasUsed?: bigint | undefined;
|
|
5025
5525
|
blockHash: import("viem").Hash;
|
|
5026
5526
|
blockNumber: bigint;
|
|
5527
|
+
blockTimestamp?: bigint | undefined;
|
|
5027
5528
|
contractAddress: import("abitype").Address | null | undefined;
|
|
5028
5529
|
cumulativeGasUsed: bigint;
|
|
5029
5530
|
effectiveGasPrice: bigint;
|
|
@@ -5045,9 +5546,17 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
|
|
|
5045
5546
|
type: "transactionReceipt";
|
|
5046
5547
|
};
|
|
5047
5548
|
};
|
|
5549
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
5550
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
5551
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
5552
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
5553
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
5554
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
5555
|
+
}] | undefined;
|
|
5048
5556
|
serializers: {
|
|
5049
5557
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
5050
5558
|
};
|
|
5559
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
5051
5560
|
readonly blockchainId: "UNI";
|
|
5052
5561
|
readonly blockchainVm: "EVM";
|
|
5053
5562
|
} | {
|
|
@@ -5058,7 +5567,7 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
|
|
|
5058
5567
|
readonly apiUrl: "https://api-sepolia.uniscan.xyz/api";
|
|
5059
5568
|
};
|
|
5060
5569
|
};
|
|
5061
|
-
blockTime:
|
|
5570
|
+
blockTime: 1000;
|
|
5062
5571
|
contracts: {
|
|
5063
5572
|
readonly USDC: {
|
|
5064
5573
|
readonly address: "0x31d0220469e10c4E71834a79b1f276d740d3768F";
|
|
@@ -5256,11 +5765,12 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
|
|
|
5256
5765
|
sourceId: 11155111;
|
|
5257
5766
|
testnet: true;
|
|
5258
5767
|
custom?: Record<string, unknown> | undefined;
|
|
5768
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
5259
5769
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
5260
5770
|
formatters: {
|
|
5261
5771
|
readonly block: {
|
|
5262
5772
|
exclude: [] | undefined;
|
|
5263
|
-
format: (args: import("viem/chains").OpStackRpcBlock) => {
|
|
5773
|
+
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
5264
5774
|
baseFeePerGas: bigint | null;
|
|
5265
5775
|
blobGasUsed: bigint;
|
|
5266
5776
|
difficulty: bigint;
|
|
@@ -5293,7 +5803,7 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
|
|
|
5293
5803
|
};
|
|
5294
5804
|
readonly transaction: {
|
|
5295
5805
|
exclude: [] | undefined;
|
|
5296
|
-
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
5806
|
+
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
5297
5807
|
blockHash: `0x${string}` | null;
|
|
5298
5808
|
blockNumber: bigint | null;
|
|
5299
5809
|
from: import("abitype").Address;
|
|
@@ -5462,11 +5972,12 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
|
|
|
5462
5972
|
};
|
|
5463
5973
|
readonly transactionReceipt: {
|
|
5464
5974
|
exclude: [] | undefined;
|
|
5465
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
5975
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
5466
5976
|
blobGasPrice?: bigint | undefined;
|
|
5467
5977
|
blobGasUsed?: bigint | undefined;
|
|
5468
5978
|
blockHash: import("viem").Hash;
|
|
5469
5979
|
blockNumber: bigint;
|
|
5980
|
+
blockTimestamp?: bigint | undefined;
|
|
5470
5981
|
contractAddress: import("abitype").Address | null | undefined;
|
|
5471
5982
|
cumulativeGasUsed: bigint;
|
|
5472
5983
|
effectiveGasPrice: bigint;
|
|
@@ -5488,9 +5999,17 @@ export declare function createAccount(client: ExtendedViemClient, params?: Creat
|
|
|
5488
5999
|
type: "transactionReceipt";
|
|
5489
6000
|
};
|
|
5490
6001
|
};
|
|
6002
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
6003
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
6004
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
6005
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
6006
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
6007
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
6008
|
+
}] | undefined;
|
|
5491
6009
|
serializers: {
|
|
5492
6010
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
5493
6011
|
};
|
|
6012
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
5494
6013
|
readonly blockchainId: "UNI-SEPOLIA";
|
|
5495
6014
|
readonly blockchainVm: "EVM";
|
|
5496
6015
|
};
|