@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
|
@@ -183,8 +183,17 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
|
|
|
183
183
|
sourceId?: number | undefined | undefined;
|
|
184
184
|
testnet?: boolean | undefined | undefined;
|
|
185
185
|
custom?: Record<string, unknown> | undefined;
|
|
186
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
186
187
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
188
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
189
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
190
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
191
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
192
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
193
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
194
|
+
}] | undefined;
|
|
187
195
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
196
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
188
197
|
readonly blockchainId: "ARB";
|
|
189
198
|
readonly blockchainVm: "EVM";
|
|
190
199
|
readonly formatters?: undefined | undefined;
|
|
@@ -361,8 +370,17 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
|
|
|
361
370
|
sourceId?: number | undefined | undefined;
|
|
362
371
|
testnet: true;
|
|
363
372
|
custom?: Record<string, unknown> | undefined;
|
|
373
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
364
374
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
375
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
376
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
377
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
378
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
379
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
380
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
381
|
+
}] | undefined;
|
|
365
382
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
383
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
366
384
|
readonly blockchainId: "ARB-SEPOLIA";
|
|
367
385
|
readonly blockchainVm: "EVM";
|
|
368
386
|
readonly formatters?: undefined | undefined;
|
|
@@ -540,11 +558,20 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
|
|
|
540
558
|
sourceId?: number | undefined | undefined;
|
|
541
559
|
testnet: true;
|
|
542
560
|
custom?: Record<string, unknown> | undefined;
|
|
561
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
543
562
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
544
|
-
|
|
563
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
564
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
565
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
566
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
567
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
568
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
569
|
+
}] | undefined;
|
|
570
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
571
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
545
572
|
readonly blockchainId: "ARC-TESTNET";
|
|
546
573
|
readonly blockchainVm: "EVM";
|
|
547
|
-
readonly formatters?: undefined;
|
|
574
|
+
readonly formatters?: undefined | undefined;
|
|
548
575
|
} | {
|
|
549
576
|
blockExplorers: {
|
|
550
577
|
readonly default: {
|
|
@@ -1000,8 +1027,17 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
|
|
|
1000
1027
|
sourceId?: number | undefined | undefined;
|
|
1001
1028
|
testnet?: boolean | undefined | undefined;
|
|
1002
1029
|
custom?: Record<string, unknown> | undefined;
|
|
1030
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
1003
1031
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
1032
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
1033
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
1034
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
1035
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
1036
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
1037
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
1038
|
+
}] | undefined;
|
|
1004
1039
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
1040
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
1005
1041
|
readonly blockchainId: "AVAX";
|
|
1006
1042
|
readonly blockchainVm: "EVM";
|
|
1007
1043
|
readonly formatters?: undefined | undefined;
|
|
@@ -1319,8 +1355,17 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
|
|
|
1319
1355
|
sourceId?: number | undefined | undefined;
|
|
1320
1356
|
testnet: true;
|
|
1321
1357
|
custom?: Record<string, unknown> | undefined;
|
|
1358
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
1322
1359
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
1360
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
1361
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
1362
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
1363
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
1364
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
1365
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
1366
|
+
}] | undefined;
|
|
1323
1367
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
1368
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
1324
1369
|
readonly blockchainId: "AVAX-FUJI";
|
|
1325
1370
|
readonly blockchainVm: "EVM";
|
|
1326
1371
|
readonly formatters?: undefined | undefined;
|
|
@@ -1678,11 +1723,12 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
|
|
|
1678
1723
|
sourceId: 1;
|
|
1679
1724
|
testnet?: boolean | undefined | undefined;
|
|
1680
1725
|
custom?: Record<string, unknown> | undefined;
|
|
1726
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
1681
1727
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
1682
1728
|
formatters: {
|
|
1683
1729
|
readonly block: {
|
|
1684
1730
|
exclude: [] | undefined;
|
|
1685
|
-
format: (args: import("viem/chains").OpStackRpcBlock) => {
|
|
1731
|
+
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
1686
1732
|
baseFeePerGas: bigint | null;
|
|
1687
1733
|
blobGasUsed: bigint;
|
|
1688
1734
|
difficulty: bigint;
|
|
@@ -1715,7 +1761,7 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
|
|
|
1715
1761
|
};
|
|
1716
1762
|
readonly transaction: {
|
|
1717
1763
|
exclude: [] | undefined;
|
|
1718
|
-
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
1764
|
+
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
1719
1765
|
blockHash: `0x${string}` | null;
|
|
1720
1766
|
blockNumber: bigint | null;
|
|
1721
1767
|
from: import("abitype").Address;
|
|
@@ -1884,11 +1930,12 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
|
|
|
1884
1930
|
};
|
|
1885
1931
|
readonly transactionReceipt: {
|
|
1886
1932
|
exclude: [] | undefined;
|
|
1887
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
1933
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
1888
1934
|
blobGasPrice?: bigint | undefined;
|
|
1889
1935
|
blobGasUsed?: bigint | undefined;
|
|
1890
1936
|
blockHash: import("viem").Hash;
|
|
1891
1937
|
blockNumber: bigint;
|
|
1938
|
+
blockTimestamp?: bigint | undefined;
|
|
1892
1939
|
contractAddress: import("abitype").Address | null | undefined;
|
|
1893
1940
|
cumulativeGasUsed: bigint;
|
|
1894
1941
|
effectiveGasPrice: bigint;
|
|
@@ -1910,9 +1957,17 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
|
|
|
1910
1957
|
type: "transactionReceipt";
|
|
1911
1958
|
};
|
|
1912
1959
|
};
|
|
1960
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
1961
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
1962
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
1963
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
1964
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
1965
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
1966
|
+
}] | undefined;
|
|
1913
1967
|
serializers: {
|
|
1914
1968
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
1915
1969
|
};
|
|
1970
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
1916
1971
|
readonly blockchainId: "BASE";
|
|
1917
1972
|
readonly blockchainVm: "EVM";
|
|
1918
1973
|
} | {
|
|
@@ -2269,11 +2324,12 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
|
|
|
2269
2324
|
sourceId: 11155111;
|
|
2270
2325
|
testnet: true;
|
|
2271
2326
|
custom?: Record<string, unknown> | undefined;
|
|
2327
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
2272
2328
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
2273
2329
|
formatters: {
|
|
2274
2330
|
readonly block: {
|
|
2275
2331
|
exclude: [] | undefined;
|
|
2276
|
-
format: (args: import("viem/chains").OpStackRpcBlock) => {
|
|
2332
|
+
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
2277
2333
|
baseFeePerGas: bigint | null;
|
|
2278
2334
|
blobGasUsed: bigint;
|
|
2279
2335
|
difficulty: bigint;
|
|
@@ -2306,7 +2362,7 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
|
|
|
2306
2362
|
};
|
|
2307
2363
|
readonly transaction: {
|
|
2308
2364
|
exclude: [] | undefined;
|
|
2309
|
-
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
2365
|
+
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
2310
2366
|
blockHash: `0x${string}` | null;
|
|
2311
2367
|
blockNumber: bigint | null;
|
|
2312
2368
|
from: import("abitype").Address;
|
|
@@ -2475,11 +2531,12 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
|
|
|
2475
2531
|
};
|
|
2476
2532
|
readonly transactionReceipt: {
|
|
2477
2533
|
exclude: [] | undefined;
|
|
2478
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
2534
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
2479
2535
|
blobGasPrice?: bigint | undefined;
|
|
2480
2536
|
blobGasUsed?: bigint | undefined;
|
|
2481
2537
|
blockHash: import("viem").Hash;
|
|
2482
2538
|
blockNumber: bigint;
|
|
2539
|
+
blockTimestamp?: bigint | undefined;
|
|
2483
2540
|
contractAddress: import("abitype").Address | null | undefined;
|
|
2484
2541
|
cumulativeGasUsed: bigint;
|
|
2485
2542
|
effectiveGasPrice: bigint;
|
|
@@ -2501,9 +2558,17 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
|
|
|
2501
2558
|
type: "transactionReceipt";
|
|
2502
2559
|
};
|
|
2503
2560
|
};
|
|
2561
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
2562
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
2563
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
2564
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
2565
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
2566
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
2567
|
+
}] | undefined;
|
|
2504
2568
|
serializers: {
|
|
2505
2569
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
2506
2570
|
};
|
|
2571
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
2507
2572
|
readonly blockchainId: "BASE-SEPOLIA";
|
|
2508
2573
|
readonly blockchainVm: "EVM";
|
|
2509
2574
|
readonly network: "base-sepolia";
|
|
@@ -2966,8 +3031,17 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
|
|
|
2966
3031
|
sourceId?: number | undefined | undefined;
|
|
2967
3032
|
testnet?: boolean | undefined | undefined;
|
|
2968
3033
|
custom?: Record<string, unknown> | undefined;
|
|
3034
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
2969
3035
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
3036
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3037
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3038
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3039
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3040
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
3041
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
3042
|
+
}] | undefined;
|
|
2970
3043
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
3044
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
2971
3045
|
readonly blockchainId: "ETH";
|
|
2972
3046
|
readonly blockchainVm: "EVM";
|
|
2973
3047
|
readonly formatters?: undefined | undefined;
|
|
@@ -3283,14 +3357,23 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
|
|
|
3283
3357
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
3284
3358
|
rpcUrls: {
|
|
3285
3359
|
readonly default: {
|
|
3286
|
-
readonly http: readonly ["https://
|
|
3360
|
+
readonly http: readonly ["https://11155111.rpc.thirdweb.com"];
|
|
3287
3361
|
};
|
|
3288
3362
|
};
|
|
3289
3363
|
sourceId?: number | undefined | undefined;
|
|
3290
3364
|
testnet: true;
|
|
3291
3365
|
custom?: Record<string, unknown> | undefined;
|
|
3366
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
3292
3367
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
3368
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3369
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3370
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3371
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3372
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
3373
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
3374
|
+
}] | undefined;
|
|
3293
3375
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
3376
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
3294
3377
|
readonly blockchainId: "ETH-SEPOLIA";
|
|
3295
3378
|
readonly blockchainVm: "EVM";
|
|
3296
3379
|
readonly formatters?: undefined | undefined;
|
|
@@ -3299,10 +3382,10 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
|
|
|
3299
3382
|
readonly default: {
|
|
3300
3383
|
readonly name: "PolygonScan";
|
|
3301
3384
|
readonly url: "https://polygonscan.com";
|
|
3302
|
-
readonly apiUrl: "https://api.
|
|
3385
|
+
readonly apiUrl: "https://api.etherscan.io/v2/api";
|
|
3303
3386
|
};
|
|
3304
3387
|
};
|
|
3305
|
-
blockTime
|
|
3388
|
+
blockTime: 2000;
|
|
3306
3389
|
contracts: {
|
|
3307
3390
|
readonly USDC: {
|
|
3308
3391
|
readonly address: "0x3c499c542cef5e3811e1192ce70d8cc03d5c3359";
|
|
@@ -3461,14 +3544,23 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
|
|
|
3461
3544
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
3462
3545
|
rpcUrls: {
|
|
3463
3546
|
readonly default: {
|
|
3464
|
-
readonly http: readonly ["https://polygon
|
|
3547
|
+
readonly http: readonly ["https://polygon.drpc.org"];
|
|
3465
3548
|
};
|
|
3466
3549
|
};
|
|
3467
3550
|
sourceId?: number | undefined | undefined;
|
|
3468
3551
|
testnet?: boolean | undefined | undefined;
|
|
3469
3552
|
custom?: Record<string, unknown> | undefined;
|
|
3553
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
3470
3554
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
3555
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3556
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3557
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3558
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3559
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
3560
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
3561
|
+
}] | undefined;
|
|
3471
3562
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
3563
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
3472
3564
|
readonly blockchainId: "MATIC";
|
|
3473
3565
|
readonly blockchainVm: "EVM";
|
|
3474
3566
|
readonly formatters?: undefined | undefined;
|
|
@@ -3477,7 +3569,7 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
|
|
|
3477
3569
|
readonly default: {
|
|
3478
3570
|
readonly name: "PolygonScan";
|
|
3479
3571
|
readonly url: "https://amoy.polygonscan.com";
|
|
3480
|
-
readonly apiUrl: "https://api
|
|
3572
|
+
readonly apiUrl: "https://api.etherscan.io/v2/api";
|
|
3481
3573
|
};
|
|
3482
3574
|
};
|
|
3483
3575
|
blockTime?: number | undefined | undefined;
|
|
@@ -3645,11 +3737,398 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
|
|
|
3645
3737
|
sourceId?: number | undefined | undefined;
|
|
3646
3738
|
testnet: true;
|
|
3647
3739
|
custom?: Record<string, unknown> | undefined;
|
|
3740
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
3648
3741
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
3742
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3743
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3744
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3745
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3746
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
3747
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
3748
|
+
}] | undefined;
|
|
3649
3749
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
3750
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
3650
3751
|
readonly blockchainId: "MATIC-AMOY";
|
|
3651
3752
|
readonly blockchainVm: "EVM";
|
|
3652
3753
|
readonly formatters?: undefined | undefined;
|
|
3754
|
+
} | {
|
|
3755
|
+
blockExplorers: {
|
|
3756
|
+
readonly default: {
|
|
3757
|
+
readonly name: "MonadVision";
|
|
3758
|
+
readonly url: "https://monadvision.com";
|
|
3759
|
+
};
|
|
3760
|
+
readonly monadscan: {
|
|
3761
|
+
readonly name: "Monadscan";
|
|
3762
|
+
readonly url: "https://monadscan.com";
|
|
3763
|
+
readonly apiUrl: "https://api.monadscan.com/api";
|
|
3764
|
+
};
|
|
3765
|
+
};
|
|
3766
|
+
blockTime: 400;
|
|
3767
|
+
contracts: {
|
|
3768
|
+
readonly USDC: {
|
|
3769
|
+
readonly address: "0x754704Bc059F8C67012fEd69BC8A327a5aafb603";
|
|
3770
|
+
readonly abi: readonly [{
|
|
3771
|
+
readonly type: "event";
|
|
3772
|
+
readonly name: "Approval";
|
|
3773
|
+
readonly inputs: readonly [{
|
|
3774
|
+
readonly indexed: true;
|
|
3775
|
+
readonly name: "owner";
|
|
3776
|
+
readonly type: "address";
|
|
3777
|
+
}, {
|
|
3778
|
+
readonly indexed: true;
|
|
3779
|
+
readonly name: "spender";
|
|
3780
|
+
readonly type: "address";
|
|
3781
|
+
}, {
|
|
3782
|
+
readonly indexed: false;
|
|
3783
|
+
readonly name: "value";
|
|
3784
|
+
readonly type: "uint256";
|
|
3785
|
+
}];
|
|
3786
|
+
}, {
|
|
3787
|
+
readonly type: "event";
|
|
3788
|
+
readonly name: "Transfer";
|
|
3789
|
+
readonly inputs: readonly [{
|
|
3790
|
+
readonly indexed: true;
|
|
3791
|
+
readonly name: "from";
|
|
3792
|
+
readonly type: "address";
|
|
3793
|
+
}, {
|
|
3794
|
+
readonly indexed: true;
|
|
3795
|
+
readonly name: "to";
|
|
3796
|
+
readonly type: "address";
|
|
3797
|
+
}, {
|
|
3798
|
+
readonly indexed: false;
|
|
3799
|
+
readonly name: "value";
|
|
3800
|
+
readonly type: "uint256";
|
|
3801
|
+
}];
|
|
3802
|
+
}, {
|
|
3803
|
+
readonly type: "function";
|
|
3804
|
+
readonly name: "allowance";
|
|
3805
|
+
readonly stateMutability: "view";
|
|
3806
|
+
readonly inputs: readonly [{
|
|
3807
|
+
readonly name: "owner";
|
|
3808
|
+
readonly type: "address";
|
|
3809
|
+
}, {
|
|
3810
|
+
readonly name: "spender";
|
|
3811
|
+
readonly type: "address";
|
|
3812
|
+
}];
|
|
3813
|
+
readonly outputs: readonly [{
|
|
3814
|
+
readonly type: "uint256";
|
|
3815
|
+
}];
|
|
3816
|
+
}, {
|
|
3817
|
+
readonly type: "function";
|
|
3818
|
+
readonly name: "approve";
|
|
3819
|
+
readonly stateMutability: "nonpayable";
|
|
3820
|
+
readonly inputs: readonly [{
|
|
3821
|
+
readonly name: "spender";
|
|
3822
|
+
readonly type: "address";
|
|
3823
|
+
}, {
|
|
3824
|
+
readonly name: "amount";
|
|
3825
|
+
readonly type: "uint256";
|
|
3826
|
+
}];
|
|
3827
|
+
readonly outputs: readonly [{
|
|
3828
|
+
readonly type: "bool";
|
|
3829
|
+
}];
|
|
3830
|
+
}, {
|
|
3831
|
+
readonly type: "function";
|
|
3832
|
+
readonly name: "balanceOf";
|
|
3833
|
+
readonly stateMutability: "view";
|
|
3834
|
+
readonly inputs: readonly [{
|
|
3835
|
+
readonly name: "account";
|
|
3836
|
+
readonly type: "address";
|
|
3837
|
+
}];
|
|
3838
|
+
readonly outputs: readonly [{
|
|
3839
|
+
readonly type: "uint256";
|
|
3840
|
+
}];
|
|
3841
|
+
}, {
|
|
3842
|
+
readonly type: "function";
|
|
3843
|
+
readonly name: "decimals";
|
|
3844
|
+
readonly stateMutability: "view";
|
|
3845
|
+
readonly inputs: readonly [];
|
|
3846
|
+
readonly outputs: readonly [{
|
|
3847
|
+
readonly type: "uint8";
|
|
3848
|
+
}];
|
|
3849
|
+
}, {
|
|
3850
|
+
readonly type: "function";
|
|
3851
|
+
readonly name: "name";
|
|
3852
|
+
readonly stateMutability: "view";
|
|
3853
|
+
readonly inputs: readonly [];
|
|
3854
|
+
readonly outputs: readonly [{
|
|
3855
|
+
readonly type: "string";
|
|
3856
|
+
}];
|
|
3857
|
+
}, {
|
|
3858
|
+
readonly type: "function";
|
|
3859
|
+
readonly name: "symbol";
|
|
3860
|
+
readonly stateMutability: "view";
|
|
3861
|
+
readonly inputs: readonly [];
|
|
3862
|
+
readonly outputs: readonly [{
|
|
3863
|
+
readonly type: "string";
|
|
3864
|
+
}];
|
|
3865
|
+
}, {
|
|
3866
|
+
readonly type: "function";
|
|
3867
|
+
readonly name: "totalSupply";
|
|
3868
|
+
readonly stateMutability: "view";
|
|
3869
|
+
readonly inputs: readonly [];
|
|
3870
|
+
readonly outputs: readonly [{
|
|
3871
|
+
readonly type: "uint256";
|
|
3872
|
+
}];
|
|
3873
|
+
}, {
|
|
3874
|
+
readonly type: "function";
|
|
3875
|
+
readonly name: "transfer";
|
|
3876
|
+
readonly stateMutability: "nonpayable";
|
|
3877
|
+
readonly inputs: readonly [{
|
|
3878
|
+
readonly name: "recipient";
|
|
3879
|
+
readonly type: "address";
|
|
3880
|
+
}, {
|
|
3881
|
+
readonly name: "amount";
|
|
3882
|
+
readonly type: "uint256";
|
|
3883
|
+
}];
|
|
3884
|
+
readonly outputs: readonly [{
|
|
3885
|
+
readonly type: "bool";
|
|
3886
|
+
}];
|
|
3887
|
+
}, {
|
|
3888
|
+
readonly type: "function";
|
|
3889
|
+
readonly name: "transferFrom";
|
|
3890
|
+
readonly stateMutability: "nonpayable";
|
|
3891
|
+
readonly inputs: readonly [{
|
|
3892
|
+
readonly name: "sender";
|
|
3893
|
+
readonly type: "address";
|
|
3894
|
+
}, {
|
|
3895
|
+
readonly name: "recipient";
|
|
3896
|
+
readonly type: "address";
|
|
3897
|
+
}, {
|
|
3898
|
+
readonly name: "amount";
|
|
3899
|
+
readonly type: "uint256";
|
|
3900
|
+
}];
|
|
3901
|
+
readonly outputs: readonly [{
|
|
3902
|
+
readonly type: "bool";
|
|
3903
|
+
}];
|
|
3904
|
+
}];
|
|
3905
|
+
readonly read: {
|
|
3906
|
+
readonly decimals: () => 6;
|
|
3907
|
+
};
|
|
3908
|
+
};
|
|
3909
|
+
readonly multicall3: {
|
|
3910
|
+
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
3911
|
+
readonly blockCreated: 9248132;
|
|
3912
|
+
};
|
|
3913
|
+
};
|
|
3914
|
+
ensTlds?: readonly string[] | undefined;
|
|
3915
|
+
id: 143;
|
|
3916
|
+
name: "Monad";
|
|
3917
|
+
nativeCurrency: {
|
|
3918
|
+
readonly name: "Monad";
|
|
3919
|
+
readonly symbol: "MON";
|
|
3920
|
+
readonly decimals: 18;
|
|
3921
|
+
};
|
|
3922
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
3923
|
+
rpcUrls: {
|
|
3924
|
+
readonly default: {
|
|
3925
|
+
readonly http: readonly ["https://rpc.monad.xyz", "https://rpc1.monad.xyz"];
|
|
3926
|
+
readonly webSocket: readonly ["wss://rpc.monad.xyz", "wss://rpc1.monad.xyz"];
|
|
3927
|
+
};
|
|
3928
|
+
};
|
|
3929
|
+
sourceId?: number | undefined | undefined;
|
|
3930
|
+
testnet: false;
|
|
3931
|
+
custom?: Record<string, unknown> | undefined;
|
|
3932
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
3933
|
+
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
3934
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3935
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3936
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3937
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3938
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
3939
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
3940
|
+
}] | undefined;
|
|
3941
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
3942
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
3943
|
+
readonly blockchainId: "MONAD";
|
|
3944
|
+
readonly blockchainVm: "EVM";
|
|
3945
|
+
readonly formatters?: undefined | undefined;
|
|
3946
|
+
} | {
|
|
3947
|
+
blockExplorers: {
|
|
3948
|
+
readonly default: {
|
|
3949
|
+
readonly name: "Monad Testnet explorer";
|
|
3950
|
+
readonly url: "https://testnet.monadexplorer.com";
|
|
3951
|
+
};
|
|
3952
|
+
};
|
|
3953
|
+
blockTime: 400;
|
|
3954
|
+
contracts: {
|
|
3955
|
+
readonly USDC: {
|
|
3956
|
+
readonly address: "0x534b2f3A21130d7a60830c2Df862319e593943A3";
|
|
3957
|
+
readonly abi: readonly [{
|
|
3958
|
+
readonly type: "event";
|
|
3959
|
+
readonly name: "Approval";
|
|
3960
|
+
readonly inputs: readonly [{
|
|
3961
|
+
readonly indexed: true;
|
|
3962
|
+
readonly name: "owner";
|
|
3963
|
+
readonly type: "address";
|
|
3964
|
+
}, {
|
|
3965
|
+
readonly indexed: true;
|
|
3966
|
+
readonly name: "spender";
|
|
3967
|
+
readonly type: "address";
|
|
3968
|
+
}, {
|
|
3969
|
+
readonly indexed: false;
|
|
3970
|
+
readonly name: "value";
|
|
3971
|
+
readonly type: "uint256";
|
|
3972
|
+
}];
|
|
3973
|
+
}, {
|
|
3974
|
+
readonly type: "event";
|
|
3975
|
+
readonly name: "Transfer";
|
|
3976
|
+
readonly inputs: readonly [{
|
|
3977
|
+
readonly indexed: true;
|
|
3978
|
+
readonly name: "from";
|
|
3979
|
+
readonly type: "address";
|
|
3980
|
+
}, {
|
|
3981
|
+
readonly indexed: true;
|
|
3982
|
+
readonly name: "to";
|
|
3983
|
+
readonly type: "address";
|
|
3984
|
+
}, {
|
|
3985
|
+
readonly indexed: false;
|
|
3986
|
+
readonly name: "value";
|
|
3987
|
+
readonly type: "uint256";
|
|
3988
|
+
}];
|
|
3989
|
+
}, {
|
|
3990
|
+
readonly type: "function";
|
|
3991
|
+
readonly name: "allowance";
|
|
3992
|
+
readonly stateMutability: "view";
|
|
3993
|
+
readonly inputs: readonly [{
|
|
3994
|
+
readonly name: "owner";
|
|
3995
|
+
readonly type: "address";
|
|
3996
|
+
}, {
|
|
3997
|
+
readonly name: "spender";
|
|
3998
|
+
readonly type: "address";
|
|
3999
|
+
}];
|
|
4000
|
+
readonly outputs: readonly [{
|
|
4001
|
+
readonly type: "uint256";
|
|
4002
|
+
}];
|
|
4003
|
+
}, {
|
|
4004
|
+
readonly type: "function";
|
|
4005
|
+
readonly name: "approve";
|
|
4006
|
+
readonly stateMutability: "nonpayable";
|
|
4007
|
+
readonly inputs: readonly [{
|
|
4008
|
+
readonly name: "spender";
|
|
4009
|
+
readonly type: "address";
|
|
4010
|
+
}, {
|
|
4011
|
+
readonly name: "amount";
|
|
4012
|
+
readonly type: "uint256";
|
|
4013
|
+
}];
|
|
4014
|
+
readonly outputs: readonly [{
|
|
4015
|
+
readonly type: "bool";
|
|
4016
|
+
}];
|
|
4017
|
+
}, {
|
|
4018
|
+
readonly type: "function";
|
|
4019
|
+
readonly name: "balanceOf";
|
|
4020
|
+
readonly stateMutability: "view";
|
|
4021
|
+
readonly inputs: readonly [{
|
|
4022
|
+
readonly name: "account";
|
|
4023
|
+
readonly type: "address";
|
|
4024
|
+
}];
|
|
4025
|
+
readonly outputs: readonly [{
|
|
4026
|
+
readonly type: "uint256";
|
|
4027
|
+
}];
|
|
4028
|
+
}, {
|
|
4029
|
+
readonly type: "function";
|
|
4030
|
+
readonly name: "decimals";
|
|
4031
|
+
readonly stateMutability: "view";
|
|
4032
|
+
readonly inputs: readonly [];
|
|
4033
|
+
readonly outputs: readonly [{
|
|
4034
|
+
readonly type: "uint8";
|
|
4035
|
+
}];
|
|
4036
|
+
}, {
|
|
4037
|
+
readonly type: "function";
|
|
4038
|
+
readonly name: "name";
|
|
4039
|
+
readonly stateMutability: "view";
|
|
4040
|
+
readonly inputs: readonly [];
|
|
4041
|
+
readonly outputs: readonly [{
|
|
4042
|
+
readonly type: "string";
|
|
4043
|
+
}];
|
|
4044
|
+
}, {
|
|
4045
|
+
readonly type: "function";
|
|
4046
|
+
readonly name: "symbol";
|
|
4047
|
+
readonly stateMutability: "view";
|
|
4048
|
+
readonly inputs: readonly [];
|
|
4049
|
+
readonly outputs: readonly [{
|
|
4050
|
+
readonly type: "string";
|
|
4051
|
+
}];
|
|
4052
|
+
}, {
|
|
4053
|
+
readonly type: "function";
|
|
4054
|
+
readonly name: "totalSupply";
|
|
4055
|
+
readonly stateMutability: "view";
|
|
4056
|
+
readonly inputs: readonly [];
|
|
4057
|
+
readonly outputs: readonly [{
|
|
4058
|
+
readonly type: "uint256";
|
|
4059
|
+
}];
|
|
4060
|
+
}, {
|
|
4061
|
+
readonly type: "function";
|
|
4062
|
+
readonly name: "transfer";
|
|
4063
|
+
readonly stateMutability: "nonpayable";
|
|
4064
|
+
readonly inputs: readonly [{
|
|
4065
|
+
readonly name: "recipient";
|
|
4066
|
+
readonly type: "address";
|
|
4067
|
+
}, {
|
|
4068
|
+
readonly name: "amount";
|
|
4069
|
+
readonly type: "uint256";
|
|
4070
|
+
}];
|
|
4071
|
+
readonly outputs: readonly [{
|
|
4072
|
+
readonly type: "bool";
|
|
4073
|
+
}];
|
|
4074
|
+
}, {
|
|
4075
|
+
readonly type: "function";
|
|
4076
|
+
readonly name: "transferFrom";
|
|
4077
|
+
readonly stateMutability: "nonpayable";
|
|
4078
|
+
readonly inputs: readonly [{
|
|
4079
|
+
readonly name: "sender";
|
|
4080
|
+
readonly type: "address";
|
|
4081
|
+
}, {
|
|
4082
|
+
readonly name: "recipient";
|
|
4083
|
+
readonly type: "address";
|
|
4084
|
+
}, {
|
|
4085
|
+
readonly name: "amount";
|
|
4086
|
+
readonly type: "uint256";
|
|
4087
|
+
}];
|
|
4088
|
+
readonly outputs: readonly [{
|
|
4089
|
+
readonly type: "bool";
|
|
4090
|
+
}];
|
|
4091
|
+
}];
|
|
4092
|
+
readonly read: {
|
|
4093
|
+
readonly decimals: () => 6;
|
|
4094
|
+
};
|
|
4095
|
+
};
|
|
4096
|
+
readonly multicall3: {
|
|
4097
|
+
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
4098
|
+
readonly blockCreated: 251449;
|
|
4099
|
+
};
|
|
4100
|
+
};
|
|
4101
|
+
ensTlds?: readonly string[] | undefined;
|
|
4102
|
+
id: 10143;
|
|
4103
|
+
name: "Monad Testnet";
|
|
4104
|
+
nativeCurrency: {
|
|
4105
|
+
readonly name: "Testnet MON Token";
|
|
4106
|
+
readonly symbol: "MON";
|
|
4107
|
+
readonly decimals: 18;
|
|
4108
|
+
};
|
|
4109
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
4110
|
+
rpcUrls: {
|
|
4111
|
+
readonly default: {
|
|
4112
|
+
readonly http: readonly ["https://testnet-rpc.monad.xyz"];
|
|
4113
|
+
};
|
|
4114
|
+
};
|
|
4115
|
+
sourceId?: number | undefined | undefined;
|
|
4116
|
+
testnet: true;
|
|
4117
|
+
custom?: Record<string, unknown> | undefined;
|
|
4118
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
4119
|
+
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
4120
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
4121
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
4122
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
4123
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
4124
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
4125
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
4126
|
+
}] | undefined;
|
|
4127
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
4128
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
4129
|
+
readonly blockchainId: "MONAD-TESTNET";
|
|
4130
|
+
readonly blockchainVm: "EVM";
|
|
4131
|
+
readonly formatters?: undefined | undefined;
|
|
3653
4132
|
} | {
|
|
3654
4133
|
blockExplorers: {
|
|
3655
4134
|
readonly default: {
|
|
@@ -3861,11 +4340,12 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
|
|
|
3861
4340
|
sourceId: 1;
|
|
3862
4341
|
testnet?: boolean | undefined | undefined;
|
|
3863
4342
|
custom?: Record<string, unknown> | undefined;
|
|
4343
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
3864
4344
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
3865
4345
|
formatters: {
|
|
3866
4346
|
readonly block: {
|
|
3867
4347
|
exclude: [] | undefined;
|
|
3868
|
-
format: (args: import("viem/chains").OpStackRpcBlock) => {
|
|
4348
|
+
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
3869
4349
|
baseFeePerGas: bigint | null;
|
|
3870
4350
|
blobGasUsed: bigint;
|
|
3871
4351
|
difficulty: bigint;
|
|
@@ -3898,7 +4378,7 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
|
|
|
3898
4378
|
};
|
|
3899
4379
|
readonly transaction: {
|
|
3900
4380
|
exclude: [] | undefined;
|
|
3901
|
-
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
4381
|
+
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
3902
4382
|
blockHash: `0x${string}` | null;
|
|
3903
4383
|
blockNumber: bigint | null;
|
|
3904
4384
|
from: import("abitype").Address;
|
|
@@ -4067,11 +4547,12 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
|
|
|
4067
4547
|
};
|
|
4068
4548
|
readonly transactionReceipt: {
|
|
4069
4549
|
exclude: [] | undefined;
|
|
4070
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
4550
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
4071
4551
|
blobGasPrice?: bigint | undefined;
|
|
4072
4552
|
blobGasUsed?: bigint | undefined;
|
|
4073
4553
|
blockHash: import("viem").Hash;
|
|
4074
4554
|
blockNumber: bigint;
|
|
4555
|
+
blockTimestamp?: bigint | undefined;
|
|
4075
4556
|
contractAddress: import("abitype").Address | null | undefined;
|
|
4076
4557
|
cumulativeGasUsed: bigint;
|
|
4077
4558
|
effectiveGasPrice: bigint;
|
|
@@ -4093,9 +4574,17 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
|
|
|
4093
4574
|
type: "transactionReceipt";
|
|
4094
4575
|
};
|
|
4095
4576
|
};
|
|
4577
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
4578
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
4579
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
4580
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
4581
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
4582
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
4583
|
+
}] | undefined;
|
|
4096
4584
|
serializers: {
|
|
4097
4585
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
4098
4586
|
};
|
|
4587
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
4099
4588
|
readonly blockchainId: "OP";
|
|
4100
4589
|
readonly blockchainVm: "EVM";
|
|
4101
4590
|
} | {
|
|
@@ -4309,11 +4798,12 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
|
|
|
4309
4798
|
sourceId: 11155111;
|
|
4310
4799
|
testnet: true;
|
|
4311
4800
|
custom?: Record<string, unknown> | undefined;
|
|
4801
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
4312
4802
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
4313
4803
|
formatters: {
|
|
4314
4804
|
readonly block: {
|
|
4315
4805
|
exclude: [] | undefined;
|
|
4316
|
-
format: (args: import("viem/chains").OpStackRpcBlock) => {
|
|
4806
|
+
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
4317
4807
|
baseFeePerGas: bigint | null;
|
|
4318
4808
|
blobGasUsed: bigint;
|
|
4319
4809
|
difficulty: bigint;
|
|
@@ -4346,7 +4836,7 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
|
|
|
4346
4836
|
};
|
|
4347
4837
|
readonly transaction: {
|
|
4348
4838
|
exclude: [] | undefined;
|
|
4349
|
-
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
4839
|
+
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
4350
4840
|
blockHash: `0x${string}` | null;
|
|
4351
4841
|
blockNumber: bigint | null;
|
|
4352
4842
|
from: import("abitype").Address;
|
|
@@ -4515,11 +5005,12 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
|
|
|
4515
5005
|
};
|
|
4516
5006
|
readonly transactionReceipt: {
|
|
4517
5007
|
exclude: [] | undefined;
|
|
4518
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
5008
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
4519
5009
|
blobGasPrice?: bigint | undefined;
|
|
4520
5010
|
blobGasUsed?: bigint | undefined;
|
|
4521
5011
|
blockHash: import("viem").Hash;
|
|
4522
5012
|
blockNumber: bigint;
|
|
5013
|
+
blockTimestamp?: bigint | undefined;
|
|
4523
5014
|
contractAddress: import("abitype").Address | null | undefined;
|
|
4524
5015
|
cumulativeGasUsed: bigint;
|
|
4525
5016
|
effectiveGasPrice: bigint;
|
|
@@ -4541,9 +5032,17 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
|
|
|
4541
5032
|
type: "transactionReceipt";
|
|
4542
5033
|
};
|
|
4543
5034
|
};
|
|
5035
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
5036
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
5037
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
5038
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
5039
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
5040
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
5041
|
+
}] | undefined;
|
|
4544
5042
|
serializers: {
|
|
4545
5043
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
4546
5044
|
};
|
|
5045
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
4547
5046
|
readonly blockchainId: "OP-SEPOLIA";
|
|
4548
5047
|
readonly blockchainVm: "EVM";
|
|
4549
5048
|
} | {
|
|
@@ -4554,7 +5053,7 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
|
|
|
4554
5053
|
readonly apiUrl: "https://api.uniscan.xyz/api";
|
|
4555
5054
|
};
|
|
4556
5055
|
};
|
|
4557
|
-
blockTime:
|
|
5056
|
+
blockTime: 1000;
|
|
4558
5057
|
contracts: {
|
|
4559
5058
|
readonly USDC: {
|
|
4560
5059
|
readonly address: "0x078D782b760474a361dDA0AF3839290b0EF57AD6";
|
|
@@ -4752,11 +5251,12 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
|
|
|
4752
5251
|
sourceId: 1;
|
|
4753
5252
|
testnet?: boolean | undefined | undefined;
|
|
4754
5253
|
custom?: Record<string, unknown> | undefined;
|
|
5254
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
4755
5255
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
4756
5256
|
formatters: {
|
|
4757
5257
|
readonly block: {
|
|
4758
5258
|
exclude: [] | undefined;
|
|
4759
|
-
format: (args: import("viem/chains").OpStackRpcBlock) => {
|
|
5259
|
+
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
4760
5260
|
baseFeePerGas: bigint | null;
|
|
4761
5261
|
blobGasUsed: bigint;
|
|
4762
5262
|
difficulty: bigint;
|
|
@@ -4789,7 +5289,7 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
|
|
|
4789
5289
|
};
|
|
4790
5290
|
readonly transaction: {
|
|
4791
5291
|
exclude: [] | undefined;
|
|
4792
|
-
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
5292
|
+
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
4793
5293
|
blockHash: `0x${string}` | null;
|
|
4794
5294
|
blockNumber: bigint | null;
|
|
4795
5295
|
from: import("abitype").Address;
|
|
@@ -4958,11 +5458,12 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
|
|
|
4958
5458
|
};
|
|
4959
5459
|
readonly transactionReceipt: {
|
|
4960
5460
|
exclude: [] | undefined;
|
|
4961
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
5461
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
4962
5462
|
blobGasPrice?: bigint | undefined;
|
|
4963
5463
|
blobGasUsed?: bigint | undefined;
|
|
4964
5464
|
blockHash: import("viem").Hash;
|
|
4965
5465
|
blockNumber: bigint;
|
|
5466
|
+
blockTimestamp?: bigint | undefined;
|
|
4966
5467
|
contractAddress: import("abitype").Address | null | undefined;
|
|
4967
5468
|
cumulativeGasUsed: bigint;
|
|
4968
5469
|
effectiveGasPrice: bigint;
|
|
@@ -4984,9 +5485,17 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
|
|
|
4984
5485
|
type: "transactionReceipt";
|
|
4985
5486
|
};
|
|
4986
5487
|
};
|
|
5488
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
5489
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
5490
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
5491
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
5492
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
5493
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
5494
|
+
}] | undefined;
|
|
4987
5495
|
serializers: {
|
|
4988
5496
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
4989
5497
|
};
|
|
5498
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
4990
5499
|
readonly blockchainId: "UNI";
|
|
4991
5500
|
readonly blockchainVm: "EVM";
|
|
4992
5501
|
} | {
|
|
@@ -4997,7 +5506,7 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
|
|
|
4997
5506
|
readonly apiUrl: "https://api-sepolia.uniscan.xyz/api";
|
|
4998
5507
|
};
|
|
4999
5508
|
};
|
|
5000
|
-
blockTime:
|
|
5509
|
+
blockTime: 1000;
|
|
5001
5510
|
contracts: {
|
|
5002
5511
|
readonly USDC: {
|
|
5003
5512
|
readonly address: "0x31d0220469e10c4E71834a79b1f276d740d3768F";
|
|
@@ -5195,11 +5704,12 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
|
|
|
5195
5704
|
sourceId: 11155111;
|
|
5196
5705
|
testnet: true;
|
|
5197
5706
|
custom?: Record<string, unknown> | undefined;
|
|
5707
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
5198
5708
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
5199
5709
|
formatters: {
|
|
5200
5710
|
readonly block: {
|
|
5201
5711
|
exclude: [] | undefined;
|
|
5202
|
-
format: (args: import("viem/chains").OpStackRpcBlock) => {
|
|
5712
|
+
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
5203
5713
|
baseFeePerGas: bigint | null;
|
|
5204
5714
|
blobGasUsed: bigint;
|
|
5205
5715
|
difficulty: bigint;
|
|
@@ -5232,7 +5742,7 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
|
|
|
5232
5742
|
};
|
|
5233
5743
|
readonly transaction: {
|
|
5234
5744
|
exclude: [] | undefined;
|
|
5235
|
-
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
5745
|
+
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
5236
5746
|
blockHash: `0x${string}` | null;
|
|
5237
5747
|
blockNumber: bigint | null;
|
|
5238
5748
|
from: import("abitype").Address;
|
|
@@ -5401,11 +5911,12 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
|
|
|
5401
5911
|
};
|
|
5402
5912
|
readonly transactionReceipt: {
|
|
5403
5913
|
exclude: [] | undefined;
|
|
5404
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
5914
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
5405
5915
|
blobGasPrice?: bigint | undefined;
|
|
5406
5916
|
blobGasUsed?: bigint | undefined;
|
|
5407
5917
|
blockHash: import("viem").Hash;
|
|
5408
5918
|
blockNumber: bigint;
|
|
5919
|
+
blockTimestamp?: bigint | undefined;
|
|
5409
5920
|
contractAddress: import("abitype").Address | null | undefined;
|
|
5410
5921
|
cumulativeGasUsed: bigint;
|
|
5411
5922
|
effectiveGasPrice: bigint;
|
|
@@ -5427,9 +5938,17 @@ export declare function getAccounts(client: ExtendedViemClient, params: GetAccou
|
|
|
5427
5938
|
type: "transactionReceipt";
|
|
5428
5939
|
};
|
|
5429
5940
|
};
|
|
5941
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
5942
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
5943
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
5944
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
5945
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
5946
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
5947
|
+
}] | undefined;
|
|
5430
5948
|
serializers: {
|
|
5431
5949
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
5432
5950
|
};
|
|
5951
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
5433
5952
|
readonly blockchainId: "UNI-SEPOLIA";
|
|
5434
5953
|
readonly blockchainVm: "EVM";
|
|
5435
5954
|
};
|