@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
|
@@ -174,8 +174,17 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
174
174
|
sourceId?: number | undefined | undefined;
|
|
175
175
|
testnet?: boolean | undefined | undefined;
|
|
176
176
|
custom?: Record<string, unknown> | undefined;
|
|
177
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
177
178
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
179
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
180
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
181
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
182
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
183
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
184
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
185
|
+
}] | undefined;
|
|
178
186
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
187
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
179
188
|
readonly blockchainId: "ARB";
|
|
180
189
|
readonly blockchainVm: "EVM";
|
|
181
190
|
readonly formatters?: undefined | undefined;
|
|
@@ -352,8 +361,17 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
352
361
|
sourceId?: number | undefined | undefined;
|
|
353
362
|
testnet: true;
|
|
354
363
|
custom?: Record<string, unknown> | undefined;
|
|
364
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
355
365
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
366
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
367
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
368
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
369
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
370
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
371
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
372
|
+
}] | undefined;
|
|
356
373
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
374
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
357
375
|
readonly blockchainId: "ARB-SEPOLIA";
|
|
358
376
|
readonly blockchainVm: "EVM";
|
|
359
377
|
readonly formatters?: undefined | undefined;
|
|
@@ -531,11 +549,20 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
531
549
|
sourceId?: number | undefined | undefined;
|
|
532
550
|
testnet: true;
|
|
533
551
|
custom?: Record<string, unknown> | undefined;
|
|
552
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
534
553
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
535
|
-
|
|
554
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
555
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
556
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
557
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
558
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
559
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
560
|
+
}] | undefined;
|
|
561
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
562
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
536
563
|
readonly blockchainId: "ARC-TESTNET";
|
|
537
564
|
readonly blockchainVm: "EVM";
|
|
538
|
-
readonly formatters?: undefined;
|
|
565
|
+
readonly formatters?: undefined | undefined;
|
|
539
566
|
}, {
|
|
540
567
|
blockExplorers: {
|
|
541
568
|
readonly default: {
|
|
@@ -991,8 +1018,17 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
991
1018
|
sourceId?: number | undefined | undefined;
|
|
992
1019
|
testnet?: boolean | undefined | undefined;
|
|
993
1020
|
custom?: Record<string, unknown> | undefined;
|
|
1021
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
994
1022
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
1023
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
1024
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
1025
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
1026
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
1027
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
1028
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
1029
|
+
}] | undefined;
|
|
995
1030
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
1031
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
996
1032
|
readonly blockchainId: "AVAX";
|
|
997
1033
|
readonly blockchainVm: "EVM";
|
|
998
1034
|
readonly formatters?: undefined | undefined;
|
|
@@ -1310,8 +1346,17 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
1310
1346
|
sourceId?: number | undefined | undefined;
|
|
1311
1347
|
testnet: true;
|
|
1312
1348
|
custom?: Record<string, unknown> | undefined;
|
|
1349
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
1313
1350
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
1351
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
1352
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
1353
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
1354
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
1355
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
1356
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
1357
|
+
}] | undefined;
|
|
1314
1358
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
1359
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
1315
1360
|
readonly blockchainId: "AVAX-FUJI";
|
|
1316
1361
|
readonly blockchainVm: "EVM";
|
|
1317
1362
|
readonly formatters?: undefined | undefined;
|
|
@@ -1669,11 +1714,12 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
1669
1714
|
sourceId: 1;
|
|
1670
1715
|
testnet?: boolean | undefined | undefined;
|
|
1671
1716
|
custom?: Record<string, unknown> | undefined;
|
|
1717
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
1672
1718
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
1673
1719
|
formatters: {
|
|
1674
1720
|
readonly block: {
|
|
1675
1721
|
exclude: [] | undefined;
|
|
1676
|
-
format: (args: import("viem/chains").OpStackRpcBlock) => {
|
|
1722
|
+
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
1677
1723
|
baseFeePerGas: bigint | null;
|
|
1678
1724
|
blobGasUsed: bigint;
|
|
1679
1725
|
difficulty: bigint;
|
|
@@ -1706,7 +1752,7 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
1706
1752
|
};
|
|
1707
1753
|
readonly transaction: {
|
|
1708
1754
|
exclude: [] | undefined;
|
|
1709
|
-
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
1755
|
+
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
1710
1756
|
blockHash: `0x${string}` | null;
|
|
1711
1757
|
blockNumber: bigint | null;
|
|
1712
1758
|
from: import("abitype").Address;
|
|
@@ -1875,11 +1921,12 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
1875
1921
|
};
|
|
1876
1922
|
readonly transactionReceipt: {
|
|
1877
1923
|
exclude: [] | undefined;
|
|
1878
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
1924
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
1879
1925
|
blobGasPrice?: bigint | undefined;
|
|
1880
1926
|
blobGasUsed?: bigint | undefined;
|
|
1881
1927
|
blockHash: import("viem").Hash;
|
|
1882
1928
|
blockNumber: bigint;
|
|
1929
|
+
blockTimestamp?: bigint | undefined;
|
|
1883
1930
|
contractAddress: import("abitype").Address | null | undefined;
|
|
1884
1931
|
cumulativeGasUsed: bigint;
|
|
1885
1932
|
effectiveGasPrice: bigint;
|
|
@@ -1901,9 +1948,17 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
1901
1948
|
type: "transactionReceipt";
|
|
1902
1949
|
};
|
|
1903
1950
|
};
|
|
1951
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
1952
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
1953
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
1954
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
1955
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
1956
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
1957
|
+
}] | undefined;
|
|
1904
1958
|
serializers: {
|
|
1905
1959
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
1906
1960
|
};
|
|
1961
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
1907
1962
|
readonly blockchainId: "BASE";
|
|
1908
1963
|
readonly blockchainVm: "EVM";
|
|
1909
1964
|
}, {
|
|
@@ -2260,11 +2315,12 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
2260
2315
|
sourceId: 11155111;
|
|
2261
2316
|
testnet: true;
|
|
2262
2317
|
custom?: Record<string, unknown> | undefined;
|
|
2318
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
2263
2319
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
2264
2320
|
formatters: {
|
|
2265
2321
|
readonly block: {
|
|
2266
2322
|
exclude: [] | undefined;
|
|
2267
|
-
format: (args: import("viem/chains").OpStackRpcBlock) => {
|
|
2323
|
+
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
2268
2324
|
baseFeePerGas: bigint | null;
|
|
2269
2325
|
blobGasUsed: bigint;
|
|
2270
2326
|
difficulty: bigint;
|
|
@@ -2297,7 +2353,7 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
2297
2353
|
};
|
|
2298
2354
|
readonly transaction: {
|
|
2299
2355
|
exclude: [] | undefined;
|
|
2300
|
-
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
2356
|
+
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
2301
2357
|
blockHash: `0x${string}` | null;
|
|
2302
2358
|
blockNumber: bigint | null;
|
|
2303
2359
|
from: import("abitype").Address;
|
|
@@ -2466,11 +2522,12 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
2466
2522
|
};
|
|
2467
2523
|
readonly transactionReceipt: {
|
|
2468
2524
|
exclude: [] | undefined;
|
|
2469
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
2525
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
2470
2526
|
blobGasPrice?: bigint | undefined;
|
|
2471
2527
|
blobGasUsed?: bigint | undefined;
|
|
2472
2528
|
blockHash: import("viem").Hash;
|
|
2473
2529
|
blockNumber: bigint;
|
|
2530
|
+
blockTimestamp?: bigint | undefined;
|
|
2474
2531
|
contractAddress: import("abitype").Address | null | undefined;
|
|
2475
2532
|
cumulativeGasUsed: bigint;
|
|
2476
2533
|
effectiveGasPrice: bigint;
|
|
@@ -2492,9 +2549,17 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
2492
2549
|
type: "transactionReceipt";
|
|
2493
2550
|
};
|
|
2494
2551
|
};
|
|
2552
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
2553
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
2554
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
2555
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
2556
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
2557
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
2558
|
+
}] | undefined;
|
|
2495
2559
|
serializers: {
|
|
2496
2560
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
2497
2561
|
};
|
|
2562
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
2498
2563
|
readonly blockchainId: "BASE-SEPOLIA";
|
|
2499
2564
|
readonly blockchainVm: "EVM";
|
|
2500
2565
|
readonly network: "base-sepolia";
|
|
@@ -2957,8 +3022,17 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
2957
3022
|
sourceId?: number | undefined | undefined;
|
|
2958
3023
|
testnet?: boolean | undefined | undefined;
|
|
2959
3024
|
custom?: Record<string, unknown> | undefined;
|
|
3025
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
2960
3026
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
3027
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3028
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3029
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3030
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3031
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
3032
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
3033
|
+
}] | undefined;
|
|
2961
3034
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
3035
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
2962
3036
|
readonly blockchainId: "ETH";
|
|
2963
3037
|
readonly blockchainVm: "EVM";
|
|
2964
3038
|
readonly formatters?: undefined | undefined;
|
|
@@ -3274,14 +3348,23 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
3274
3348
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
3275
3349
|
rpcUrls: {
|
|
3276
3350
|
readonly default: {
|
|
3277
|
-
readonly http: readonly ["https://
|
|
3351
|
+
readonly http: readonly ["https://11155111.rpc.thirdweb.com"];
|
|
3278
3352
|
};
|
|
3279
3353
|
};
|
|
3280
3354
|
sourceId?: number | undefined | undefined;
|
|
3281
3355
|
testnet: true;
|
|
3282
3356
|
custom?: Record<string, unknown> | undefined;
|
|
3357
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
3283
3358
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
3359
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3360
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3361
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3362
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3363
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
3364
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
3365
|
+
}] | undefined;
|
|
3284
3366
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
3367
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
3285
3368
|
readonly blockchainId: "ETH-SEPOLIA";
|
|
3286
3369
|
readonly blockchainVm: "EVM";
|
|
3287
3370
|
readonly formatters?: undefined | undefined;
|
|
@@ -3290,10 +3373,10 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
3290
3373
|
readonly default: {
|
|
3291
3374
|
readonly name: "PolygonScan";
|
|
3292
3375
|
readonly url: "https://polygonscan.com";
|
|
3293
|
-
readonly apiUrl: "https://api.
|
|
3376
|
+
readonly apiUrl: "https://api.etherscan.io/v2/api";
|
|
3294
3377
|
};
|
|
3295
3378
|
};
|
|
3296
|
-
blockTime
|
|
3379
|
+
blockTime: 2000;
|
|
3297
3380
|
contracts: {
|
|
3298
3381
|
readonly USDC: {
|
|
3299
3382
|
readonly address: "0x3c499c542cef5e3811e1192ce70d8cc03d5c3359";
|
|
@@ -3452,14 +3535,23 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
3452
3535
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
3453
3536
|
rpcUrls: {
|
|
3454
3537
|
readonly default: {
|
|
3455
|
-
readonly http: readonly ["https://polygon
|
|
3538
|
+
readonly http: readonly ["https://polygon.drpc.org"];
|
|
3456
3539
|
};
|
|
3457
3540
|
};
|
|
3458
3541
|
sourceId?: number | undefined | undefined;
|
|
3459
3542
|
testnet?: boolean | undefined | undefined;
|
|
3460
3543
|
custom?: Record<string, unknown> | undefined;
|
|
3544
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
3461
3545
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
3546
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3547
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3548
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3549
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3550
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
3551
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
3552
|
+
}] | undefined;
|
|
3462
3553
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
3554
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
3463
3555
|
readonly blockchainId: "MATIC";
|
|
3464
3556
|
readonly blockchainVm: "EVM";
|
|
3465
3557
|
readonly formatters?: undefined | undefined;
|
|
@@ -3468,7 +3560,7 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
3468
3560
|
readonly default: {
|
|
3469
3561
|
readonly name: "PolygonScan";
|
|
3470
3562
|
readonly url: "https://amoy.polygonscan.com";
|
|
3471
|
-
readonly apiUrl: "https://api
|
|
3563
|
+
readonly apiUrl: "https://api.etherscan.io/v2/api";
|
|
3472
3564
|
};
|
|
3473
3565
|
};
|
|
3474
3566
|
blockTime?: number | undefined | undefined;
|
|
@@ -3636,11 +3728,398 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
3636
3728
|
sourceId?: number | undefined | undefined;
|
|
3637
3729
|
testnet: true;
|
|
3638
3730
|
custom?: Record<string, unknown> | undefined;
|
|
3731
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
3639
3732
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
3733
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3734
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3735
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3736
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3737
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
3738
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
3739
|
+
}] | undefined;
|
|
3640
3740
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
3741
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
3641
3742
|
readonly blockchainId: "MATIC-AMOY";
|
|
3642
3743
|
readonly blockchainVm: "EVM";
|
|
3643
3744
|
readonly formatters?: undefined | undefined;
|
|
3745
|
+
}, {
|
|
3746
|
+
blockExplorers: {
|
|
3747
|
+
readonly default: {
|
|
3748
|
+
readonly name: "MonadVision";
|
|
3749
|
+
readonly url: "https://monadvision.com";
|
|
3750
|
+
};
|
|
3751
|
+
readonly monadscan: {
|
|
3752
|
+
readonly name: "Monadscan";
|
|
3753
|
+
readonly url: "https://monadscan.com";
|
|
3754
|
+
readonly apiUrl: "https://api.monadscan.com/api";
|
|
3755
|
+
};
|
|
3756
|
+
};
|
|
3757
|
+
blockTime: 400;
|
|
3758
|
+
contracts: {
|
|
3759
|
+
readonly USDC: {
|
|
3760
|
+
readonly address: "0x754704Bc059F8C67012fEd69BC8A327a5aafb603";
|
|
3761
|
+
readonly abi: readonly [{
|
|
3762
|
+
readonly type: "event";
|
|
3763
|
+
readonly name: "Approval";
|
|
3764
|
+
readonly inputs: readonly [{
|
|
3765
|
+
readonly indexed: true;
|
|
3766
|
+
readonly name: "owner";
|
|
3767
|
+
readonly type: "address";
|
|
3768
|
+
}, {
|
|
3769
|
+
readonly indexed: true;
|
|
3770
|
+
readonly name: "spender";
|
|
3771
|
+
readonly type: "address";
|
|
3772
|
+
}, {
|
|
3773
|
+
readonly indexed: false;
|
|
3774
|
+
readonly name: "value";
|
|
3775
|
+
readonly type: "uint256";
|
|
3776
|
+
}];
|
|
3777
|
+
}, {
|
|
3778
|
+
readonly type: "event";
|
|
3779
|
+
readonly name: "Transfer";
|
|
3780
|
+
readonly inputs: readonly [{
|
|
3781
|
+
readonly indexed: true;
|
|
3782
|
+
readonly name: "from";
|
|
3783
|
+
readonly type: "address";
|
|
3784
|
+
}, {
|
|
3785
|
+
readonly indexed: true;
|
|
3786
|
+
readonly name: "to";
|
|
3787
|
+
readonly type: "address";
|
|
3788
|
+
}, {
|
|
3789
|
+
readonly indexed: false;
|
|
3790
|
+
readonly name: "value";
|
|
3791
|
+
readonly type: "uint256";
|
|
3792
|
+
}];
|
|
3793
|
+
}, {
|
|
3794
|
+
readonly type: "function";
|
|
3795
|
+
readonly name: "allowance";
|
|
3796
|
+
readonly stateMutability: "view";
|
|
3797
|
+
readonly inputs: readonly [{
|
|
3798
|
+
readonly name: "owner";
|
|
3799
|
+
readonly type: "address";
|
|
3800
|
+
}, {
|
|
3801
|
+
readonly name: "spender";
|
|
3802
|
+
readonly type: "address";
|
|
3803
|
+
}];
|
|
3804
|
+
readonly outputs: readonly [{
|
|
3805
|
+
readonly type: "uint256";
|
|
3806
|
+
}];
|
|
3807
|
+
}, {
|
|
3808
|
+
readonly type: "function";
|
|
3809
|
+
readonly name: "approve";
|
|
3810
|
+
readonly stateMutability: "nonpayable";
|
|
3811
|
+
readonly inputs: readonly [{
|
|
3812
|
+
readonly name: "spender";
|
|
3813
|
+
readonly type: "address";
|
|
3814
|
+
}, {
|
|
3815
|
+
readonly name: "amount";
|
|
3816
|
+
readonly type: "uint256";
|
|
3817
|
+
}];
|
|
3818
|
+
readonly outputs: readonly [{
|
|
3819
|
+
readonly type: "bool";
|
|
3820
|
+
}];
|
|
3821
|
+
}, {
|
|
3822
|
+
readonly type: "function";
|
|
3823
|
+
readonly name: "balanceOf";
|
|
3824
|
+
readonly stateMutability: "view";
|
|
3825
|
+
readonly inputs: readonly [{
|
|
3826
|
+
readonly name: "account";
|
|
3827
|
+
readonly type: "address";
|
|
3828
|
+
}];
|
|
3829
|
+
readonly outputs: readonly [{
|
|
3830
|
+
readonly type: "uint256";
|
|
3831
|
+
}];
|
|
3832
|
+
}, {
|
|
3833
|
+
readonly type: "function";
|
|
3834
|
+
readonly name: "decimals";
|
|
3835
|
+
readonly stateMutability: "view";
|
|
3836
|
+
readonly inputs: readonly [];
|
|
3837
|
+
readonly outputs: readonly [{
|
|
3838
|
+
readonly type: "uint8";
|
|
3839
|
+
}];
|
|
3840
|
+
}, {
|
|
3841
|
+
readonly type: "function";
|
|
3842
|
+
readonly name: "name";
|
|
3843
|
+
readonly stateMutability: "view";
|
|
3844
|
+
readonly inputs: readonly [];
|
|
3845
|
+
readonly outputs: readonly [{
|
|
3846
|
+
readonly type: "string";
|
|
3847
|
+
}];
|
|
3848
|
+
}, {
|
|
3849
|
+
readonly type: "function";
|
|
3850
|
+
readonly name: "symbol";
|
|
3851
|
+
readonly stateMutability: "view";
|
|
3852
|
+
readonly inputs: readonly [];
|
|
3853
|
+
readonly outputs: readonly [{
|
|
3854
|
+
readonly type: "string";
|
|
3855
|
+
}];
|
|
3856
|
+
}, {
|
|
3857
|
+
readonly type: "function";
|
|
3858
|
+
readonly name: "totalSupply";
|
|
3859
|
+
readonly stateMutability: "view";
|
|
3860
|
+
readonly inputs: readonly [];
|
|
3861
|
+
readonly outputs: readonly [{
|
|
3862
|
+
readonly type: "uint256";
|
|
3863
|
+
}];
|
|
3864
|
+
}, {
|
|
3865
|
+
readonly type: "function";
|
|
3866
|
+
readonly name: "transfer";
|
|
3867
|
+
readonly stateMutability: "nonpayable";
|
|
3868
|
+
readonly inputs: readonly [{
|
|
3869
|
+
readonly name: "recipient";
|
|
3870
|
+
readonly type: "address";
|
|
3871
|
+
}, {
|
|
3872
|
+
readonly name: "amount";
|
|
3873
|
+
readonly type: "uint256";
|
|
3874
|
+
}];
|
|
3875
|
+
readonly outputs: readonly [{
|
|
3876
|
+
readonly type: "bool";
|
|
3877
|
+
}];
|
|
3878
|
+
}, {
|
|
3879
|
+
readonly type: "function";
|
|
3880
|
+
readonly name: "transferFrom";
|
|
3881
|
+
readonly stateMutability: "nonpayable";
|
|
3882
|
+
readonly inputs: readonly [{
|
|
3883
|
+
readonly name: "sender";
|
|
3884
|
+
readonly type: "address";
|
|
3885
|
+
}, {
|
|
3886
|
+
readonly name: "recipient";
|
|
3887
|
+
readonly type: "address";
|
|
3888
|
+
}, {
|
|
3889
|
+
readonly name: "amount";
|
|
3890
|
+
readonly type: "uint256";
|
|
3891
|
+
}];
|
|
3892
|
+
readonly outputs: readonly [{
|
|
3893
|
+
readonly type: "bool";
|
|
3894
|
+
}];
|
|
3895
|
+
}];
|
|
3896
|
+
readonly read: {
|
|
3897
|
+
readonly decimals: () => 6;
|
|
3898
|
+
};
|
|
3899
|
+
};
|
|
3900
|
+
readonly multicall3: {
|
|
3901
|
+
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
3902
|
+
readonly blockCreated: 9248132;
|
|
3903
|
+
};
|
|
3904
|
+
};
|
|
3905
|
+
ensTlds?: readonly string[] | undefined;
|
|
3906
|
+
id: 143;
|
|
3907
|
+
name: "Monad";
|
|
3908
|
+
nativeCurrency: {
|
|
3909
|
+
readonly name: "Monad";
|
|
3910
|
+
readonly symbol: "MON";
|
|
3911
|
+
readonly decimals: 18;
|
|
3912
|
+
};
|
|
3913
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
3914
|
+
rpcUrls: {
|
|
3915
|
+
readonly default: {
|
|
3916
|
+
readonly http: readonly ["https://rpc.monad.xyz", "https://rpc1.monad.xyz"];
|
|
3917
|
+
readonly webSocket: readonly ["wss://rpc.monad.xyz", "wss://rpc1.monad.xyz"];
|
|
3918
|
+
};
|
|
3919
|
+
};
|
|
3920
|
+
sourceId?: number | undefined | undefined;
|
|
3921
|
+
testnet: false;
|
|
3922
|
+
custom?: Record<string, unknown> | undefined;
|
|
3923
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
3924
|
+
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
3925
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3926
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3927
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3928
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3929
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
3930
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
3931
|
+
}] | undefined;
|
|
3932
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
3933
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
3934
|
+
readonly blockchainId: "MONAD";
|
|
3935
|
+
readonly blockchainVm: "EVM";
|
|
3936
|
+
readonly formatters?: undefined | undefined;
|
|
3937
|
+
}, {
|
|
3938
|
+
blockExplorers: {
|
|
3939
|
+
readonly default: {
|
|
3940
|
+
readonly name: "Monad Testnet explorer";
|
|
3941
|
+
readonly url: "https://testnet.monadexplorer.com";
|
|
3942
|
+
};
|
|
3943
|
+
};
|
|
3944
|
+
blockTime: 400;
|
|
3945
|
+
contracts: {
|
|
3946
|
+
readonly USDC: {
|
|
3947
|
+
readonly address: "0x534b2f3A21130d7a60830c2Df862319e593943A3";
|
|
3948
|
+
readonly abi: readonly [{
|
|
3949
|
+
readonly type: "event";
|
|
3950
|
+
readonly name: "Approval";
|
|
3951
|
+
readonly inputs: readonly [{
|
|
3952
|
+
readonly indexed: true;
|
|
3953
|
+
readonly name: "owner";
|
|
3954
|
+
readonly type: "address";
|
|
3955
|
+
}, {
|
|
3956
|
+
readonly indexed: true;
|
|
3957
|
+
readonly name: "spender";
|
|
3958
|
+
readonly type: "address";
|
|
3959
|
+
}, {
|
|
3960
|
+
readonly indexed: false;
|
|
3961
|
+
readonly name: "value";
|
|
3962
|
+
readonly type: "uint256";
|
|
3963
|
+
}];
|
|
3964
|
+
}, {
|
|
3965
|
+
readonly type: "event";
|
|
3966
|
+
readonly name: "Transfer";
|
|
3967
|
+
readonly inputs: readonly [{
|
|
3968
|
+
readonly indexed: true;
|
|
3969
|
+
readonly name: "from";
|
|
3970
|
+
readonly type: "address";
|
|
3971
|
+
}, {
|
|
3972
|
+
readonly indexed: true;
|
|
3973
|
+
readonly name: "to";
|
|
3974
|
+
readonly type: "address";
|
|
3975
|
+
}, {
|
|
3976
|
+
readonly indexed: false;
|
|
3977
|
+
readonly name: "value";
|
|
3978
|
+
readonly type: "uint256";
|
|
3979
|
+
}];
|
|
3980
|
+
}, {
|
|
3981
|
+
readonly type: "function";
|
|
3982
|
+
readonly name: "allowance";
|
|
3983
|
+
readonly stateMutability: "view";
|
|
3984
|
+
readonly inputs: readonly [{
|
|
3985
|
+
readonly name: "owner";
|
|
3986
|
+
readonly type: "address";
|
|
3987
|
+
}, {
|
|
3988
|
+
readonly name: "spender";
|
|
3989
|
+
readonly type: "address";
|
|
3990
|
+
}];
|
|
3991
|
+
readonly outputs: readonly [{
|
|
3992
|
+
readonly type: "uint256";
|
|
3993
|
+
}];
|
|
3994
|
+
}, {
|
|
3995
|
+
readonly type: "function";
|
|
3996
|
+
readonly name: "approve";
|
|
3997
|
+
readonly stateMutability: "nonpayable";
|
|
3998
|
+
readonly inputs: readonly [{
|
|
3999
|
+
readonly name: "spender";
|
|
4000
|
+
readonly type: "address";
|
|
4001
|
+
}, {
|
|
4002
|
+
readonly name: "amount";
|
|
4003
|
+
readonly type: "uint256";
|
|
4004
|
+
}];
|
|
4005
|
+
readonly outputs: readonly [{
|
|
4006
|
+
readonly type: "bool";
|
|
4007
|
+
}];
|
|
4008
|
+
}, {
|
|
4009
|
+
readonly type: "function";
|
|
4010
|
+
readonly name: "balanceOf";
|
|
4011
|
+
readonly stateMutability: "view";
|
|
4012
|
+
readonly inputs: readonly [{
|
|
4013
|
+
readonly name: "account";
|
|
4014
|
+
readonly type: "address";
|
|
4015
|
+
}];
|
|
4016
|
+
readonly outputs: readonly [{
|
|
4017
|
+
readonly type: "uint256";
|
|
4018
|
+
}];
|
|
4019
|
+
}, {
|
|
4020
|
+
readonly type: "function";
|
|
4021
|
+
readonly name: "decimals";
|
|
4022
|
+
readonly stateMutability: "view";
|
|
4023
|
+
readonly inputs: readonly [];
|
|
4024
|
+
readonly outputs: readonly [{
|
|
4025
|
+
readonly type: "uint8";
|
|
4026
|
+
}];
|
|
4027
|
+
}, {
|
|
4028
|
+
readonly type: "function";
|
|
4029
|
+
readonly name: "name";
|
|
4030
|
+
readonly stateMutability: "view";
|
|
4031
|
+
readonly inputs: readonly [];
|
|
4032
|
+
readonly outputs: readonly [{
|
|
4033
|
+
readonly type: "string";
|
|
4034
|
+
}];
|
|
4035
|
+
}, {
|
|
4036
|
+
readonly type: "function";
|
|
4037
|
+
readonly name: "symbol";
|
|
4038
|
+
readonly stateMutability: "view";
|
|
4039
|
+
readonly inputs: readonly [];
|
|
4040
|
+
readonly outputs: readonly [{
|
|
4041
|
+
readonly type: "string";
|
|
4042
|
+
}];
|
|
4043
|
+
}, {
|
|
4044
|
+
readonly type: "function";
|
|
4045
|
+
readonly name: "totalSupply";
|
|
4046
|
+
readonly stateMutability: "view";
|
|
4047
|
+
readonly inputs: readonly [];
|
|
4048
|
+
readonly outputs: readonly [{
|
|
4049
|
+
readonly type: "uint256";
|
|
4050
|
+
}];
|
|
4051
|
+
}, {
|
|
4052
|
+
readonly type: "function";
|
|
4053
|
+
readonly name: "transfer";
|
|
4054
|
+
readonly stateMutability: "nonpayable";
|
|
4055
|
+
readonly inputs: readonly [{
|
|
4056
|
+
readonly name: "recipient";
|
|
4057
|
+
readonly type: "address";
|
|
4058
|
+
}, {
|
|
4059
|
+
readonly name: "amount";
|
|
4060
|
+
readonly type: "uint256";
|
|
4061
|
+
}];
|
|
4062
|
+
readonly outputs: readonly [{
|
|
4063
|
+
readonly type: "bool";
|
|
4064
|
+
}];
|
|
4065
|
+
}, {
|
|
4066
|
+
readonly type: "function";
|
|
4067
|
+
readonly name: "transferFrom";
|
|
4068
|
+
readonly stateMutability: "nonpayable";
|
|
4069
|
+
readonly inputs: readonly [{
|
|
4070
|
+
readonly name: "sender";
|
|
4071
|
+
readonly type: "address";
|
|
4072
|
+
}, {
|
|
4073
|
+
readonly name: "recipient";
|
|
4074
|
+
readonly type: "address";
|
|
4075
|
+
}, {
|
|
4076
|
+
readonly name: "amount";
|
|
4077
|
+
readonly type: "uint256";
|
|
4078
|
+
}];
|
|
4079
|
+
readonly outputs: readonly [{
|
|
4080
|
+
readonly type: "bool";
|
|
4081
|
+
}];
|
|
4082
|
+
}];
|
|
4083
|
+
readonly read: {
|
|
4084
|
+
readonly decimals: () => 6;
|
|
4085
|
+
};
|
|
4086
|
+
};
|
|
4087
|
+
readonly multicall3: {
|
|
4088
|
+
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
4089
|
+
readonly blockCreated: 251449;
|
|
4090
|
+
};
|
|
4091
|
+
};
|
|
4092
|
+
ensTlds?: readonly string[] | undefined;
|
|
4093
|
+
id: 10143;
|
|
4094
|
+
name: "Monad Testnet";
|
|
4095
|
+
nativeCurrency: {
|
|
4096
|
+
readonly name: "Testnet MON Token";
|
|
4097
|
+
readonly symbol: "MON";
|
|
4098
|
+
readonly decimals: 18;
|
|
4099
|
+
};
|
|
4100
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
4101
|
+
rpcUrls: {
|
|
4102
|
+
readonly default: {
|
|
4103
|
+
readonly http: readonly ["https://testnet-rpc.monad.xyz"];
|
|
4104
|
+
};
|
|
4105
|
+
};
|
|
4106
|
+
sourceId?: number | undefined | undefined;
|
|
4107
|
+
testnet: true;
|
|
4108
|
+
custom?: Record<string, unknown> | undefined;
|
|
4109
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
4110
|
+
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
4111
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
4112
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
4113
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
4114
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
4115
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
4116
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
4117
|
+
}] | undefined;
|
|
4118
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
4119
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
4120
|
+
readonly blockchainId: "MONAD-TESTNET";
|
|
4121
|
+
readonly blockchainVm: "EVM";
|
|
4122
|
+
readonly formatters?: undefined | undefined;
|
|
3644
4123
|
}, {
|
|
3645
4124
|
blockExplorers: {
|
|
3646
4125
|
readonly default: {
|
|
@@ -3852,11 +4331,12 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
3852
4331
|
sourceId: 1;
|
|
3853
4332
|
testnet?: boolean | undefined | undefined;
|
|
3854
4333
|
custom?: Record<string, unknown> | undefined;
|
|
4334
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
3855
4335
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
3856
4336
|
formatters: {
|
|
3857
4337
|
readonly block: {
|
|
3858
4338
|
exclude: [] | undefined;
|
|
3859
|
-
format: (args: import("viem/chains").OpStackRpcBlock) => {
|
|
4339
|
+
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
3860
4340
|
baseFeePerGas: bigint | null;
|
|
3861
4341
|
blobGasUsed: bigint;
|
|
3862
4342
|
difficulty: bigint;
|
|
@@ -3889,7 +4369,7 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
3889
4369
|
};
|
|
3890
4370
|
readonly transaction: {
|
|
3891
4371
|
exclude: [] | undefined;
|
|
3892
|
-
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
4372
|
+
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
3893
4373
|
blockHash: `0x${string}` | null;
|
|
3894
4374
|
blockNumber: bigint | null;
|
|
3895
4375
|
from: import("abitype").Address;
|
|
@@ -4058,11 +4538,12 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
4058
4538
|
};
|
|
4059
4539
|
readonly transactionReceipt: {
|
|
4060
4540
|
exclude: [] | undefined;
|
|
4061
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
4541
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
4062
4542
|
blobGasPrice?: bigint | undefined;
|
|
4063
4543
|
blobGasUsed?: bigint | undefined;
|
|
4064
4544
|
blockHash: import("viem").Hash;
|
|
4065
4545
|
blockNumber: bigint;
|
|
4546
|
+
blockTimestamp?: bigint | undefined;
|
|
4066
4547
|
contractAddress: import("abitype").Address | null | undefined;
|
|
4067
4548
|
cumulativeGasUsed: bigint;
|
|
4068
4549
|
effectiveGasPrice: bigint;
|
|
@@ -4084,9 +4565,17 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
4084
4565
|
type: "transactionReceipt";
|
|
4085
4566
|
};
|
|
4086
4567
|
};
|
|
4568
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
4569
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
4570
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
4571
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
4572
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
4573
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
4574
|
+
}] | undefined;
|
|
4087
4575
|
serializers: {
|
|
4088
4576
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
4089
4577
|
};
|
|
4578
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
4090
4579
|
readonly blockchainId: "OP";
|
|
4091
4580
|
readonly blockchainVm: "EVM";
|
|
4092
4581
|
}, {
|
|
@@ -4300,11 +4789,12 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
4300
4789
|
sourceId: 11155111;
|
|
4301
4790
|
testnet: true;
|
|
4302
4791
|
custom?: Record<string, unknown> | undefined;
|
|
4792
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
4303
4793
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
4304
4794
|
formatters: {
|
|
4305
4795
|
readonly block: {
|
|
4306
4796
|
exclude: [] | undefined;
|
|
4307
|
-
format: (args: import("viem/chains").OpStackRpcBlock) => {
|
|
4797
|
+
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
4308
4798
|
baseFeePerGas: bigint | null;
|
|
4309
4799
|
blobGasUsed: bigint;
|
|
4310
4800
|
difficulty: bigint;
|
|
@@ -4337,7 +4827,7 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
4337
4827
|
};
|
|
4338
4828
|
readonly transaction: {
|
|
4339
4829
|
exclude: [] | undefined;
|
|
4340
|
-
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
4830
|
+
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
4341
4831
|
blockHash: `0x${string}` | null;
|
|
4342
4832
|
blockNumber: bigint | null;
|
|
4343
4833
|
from: import("abitype").Address;
|
|
@@ -4506,11 +4996,12 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
4506
4996
|
};
|
|
4507
4997
|
readonly transactionReceipt: {
|
|
4508
4998
|
exclude: [] | undefined;
|
|
4509
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
4999
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
4510
5000
|
blobGasPrice?: bigint | undefined;
|
|
4511
5001
|
blobGasUsed?: bigint | undefined;
|
|
4512
5002
|
blockHash: import("viem").Hash;
|
|
4513
5003
|
blockNumber: bigint;
|
|
5004
|
+
blockTimestamp?: bigint | undefined;
|
|
4514
5005
|
contractAddress: import("abitype").Address | null | undefined;
|
|
4515
5006
|
cumulativeGasUsed: bigint;
|
|
4516
5007
|
effectiveGasPrice: bigint;
|
|
@@ -4532,9 +5023,17 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
4532
5023
|
type: "transactionReceipt";
|
|
4533
5024
|
};
|
|
4534
5025
|
};
|
|
5026
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
5027
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
5028
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
5029
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
5030
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
5031
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
5032
|
+
}] | undefined;
|
|
4535
5033
|
serializers: {
|
|
4536
5034
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
4537
5035
|
};
|
|
5036
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
4538
5037
|
readonly blockchainId: "OP-SEPOLIA";
|
|
4539
5038
|
readonly blockchainVm: "EVM";
|
|
4540
5039
|
}, {
|
|
@@ -4545,7 +5044,7 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
4545
5044
|
readonly apiUrl: "https://api.uniscan.xyz/api";
|
|
4546
5045
|
};
|
|
4547
5046
|
};
|
|
4548
|
-
blockTime:
|
|
5047
|
+
blockTime: 1000;
|
|
4549
5048
|
contracts: {
|
|
4550
5049
|
readonly USDC: {
|
|
4551
5050
|
readonly address: "0x078D782b760474a361dDA0AF3839290b0EF57AD6";
|
|
@@ -4743,11 +5242,12 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
4743
5242
|
sourceId: 1;
|
|
4744
5243
|
testnet?: boolean | undefined | undefined;
|
|
4745
5244
|
custom?: Record<string, unknown> | undefined;
|
|
5245
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
4746
5246
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
4747
5247
|
formatters: {
|
|
4748
5248
|
readonly block: {
|
|
4749
5249
|
exclude: [] | undefined;
|
|
4750
|
-
format: (args: import("viem/chains").OpStackRpcBlock) => {
|
|
5250
|
+
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
4751
5251
|
baseFeePerGas: bigint | null;
|
|
4752
5252
|
blobGasUsed: bigint;
|
|
4753
5253
|
difficulty: bigint;
|
|
@@ -4780,7 +5280,7 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
4780
5280
|
};
|
|
4781
5281
|
readonly transaction: {
|
|
4782
5282
|
exclude: [] | undefined;
|
|
4783
|
-
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
5283
|
+
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
4784
5284
|
blockHash: `0x${string}` | null;
|
|
4785
5285
|
blockNumber: bigint | null;
|
|
4786
5286
|
from: import("abitype").Address;
|
|
@@ -4949,11 +5449,12 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
4949
5449
|
};
|
|
4950
5450
|
readonly transactionReceipt: {
|
|
4951
5451
|
exclude: [] | undefined;
|
|
4952
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
5452
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
4953
5453
|
blobGasPrice?: bigint | undefined;
|
|
4954
5454
|
blobGasUsed?: bigint | undefined;
|
|
4955
5455
|
blockHash: import("viem").Hash;
|
|
4956
5456
|
blockNumber: bigint;
|
|
5457
|
+
blockTimestamp?: bigint | undefined;
|
|
4957
5458
|
contractAddress: import("abitype").Address | null | undefined;
|
|
4958
5459
|
cumulativeGasUsed: bigint;
|
|
4959
5460
|
effectiveGasPrice: bigint;
|
|
@@ -4975,9 +5476,17 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
4975
5476
|
type: "transactionReceipt";
|
|
4976
5477
|
};
|
|
4977
5478
|
};
|
|
5479
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
5480
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
5481
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
5482
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
5483
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
5484
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
5485
|
+
}] | undefined;
|
|
4978
5486
|
serializers: {
|
|
4979
5487
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
4980
5488
|
};
|
|
5489
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
4981
5490
|
readonly blockchainId: "UNI";
|
|
4982
5491
|
readonly blockchainVm: "EVM";
|
|
4983
5492
|
}, {
|
|
@@ -4988,7 +5497,7 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
4988
5497
|
readonly apiUrl: "https://api-sepolia.uniscan.xyz/api";
|
|
4989
5498
|
};
|
|
4990
5499
|
};
|
|
4991
|
-
blockTime:
|
|
5500
|
+
blockTime: 1000;
|
|
4992
5501
|
contracts: {
|
|
4993
5502
|
readonly USDC: {
|
|
4994
5503
|
readonly address: "0x31d0220469e10c4E71834a79b1f276d740d3768F";
|
|
@@ -5186,11 +5695,12 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
5186
5695
|
sourceId: 11155111;
|
|
5187
5696
|
testnet: true;
|
|
5188
5697
|
custom?: Record<string, unknown> | undefined;
|
|
5698
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
5189
5699
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
5190
5700
|
formatters: {
|
|
5191
5701
|
readonly block: {
|
|
5192
5702
|
exclude: [] | undefined;
|
|
5193
|
-
format: (args: import("viem/chains").OpStackRpcBlock) => {
|
|
5703
|
+
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
5194
5704
|
baseFeePerGas: bigint | null;
|
|
5195
5705
|
blobGasUsed: bigint;
|
|
5196
5706
|
difficulty: bigint;
|
|
@@ -5223,7 +5733,7 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
5223
5733
|
};
|
|
5224
5734
|
readonly transaction: {
|
|
5225
5735
|
exclude: [] | undefined;
|
|
5226
|
-
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
5736
|
+
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
5227
5737
|
blockHash: `0x${string}` | null;
|
|
5228
5738
|
blockNumber: bigint | null;
|
|
5229
5739
|
from: import("abitype").Address;
|
|
@@ -5392,11 +5902,12 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
5392
5902
|
};
|
|
5393
5903
|
readonly transactionReceipt: {
|
|
5394
5904
|
exclude: [] | undefined;
|
|
5395
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
5905
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
5396
5906
|
blobGasPrice?: bigint | undefined;
|
|
5397
5907
|
blobGasUsed?: bigint | undefined;
|
|
5398
5908
|
blockHash: import("viem").Hash;
|
|
5399
5909
|
blockNumber: bigint;
|
|
5910
|
+
blockTimestamp?: bigint | undefined;
|
|
5400
5911
|
contractAddress: import("abitype").Address | null | undefined;
|
|
5401
5912
|
cumulativeGasUsed: bigint;
|
|
5402
5913
|
effectiveGasPrice: bigint;
|
|
@@ -5418,9 +5929,17 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
5418
5929
|
type: "transactionReceipt";
|
|
5419
5930
|
};
|
|
5420
5931
|
};
|
|
5932
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
5933
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
5934
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
5935
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
5936
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
5937
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
5938
|
+
}] | undefined;
|
|
5421
5939
|
serializers: {
|
|
5422
5940
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
5423
5941
|
};
|
|
5942
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
5424
5943
|
readonly blockchainId: "UNI-SEPOLIA";
|
|
5425
5944
|
readonly blockchainVm: "EVM";
|
|
5426
5945
|
}];
|
|
@@ -5597,8 +6116,17 @@ export declare const SUPPORTED_CHAINS_FAUCET: readonly [{
|
|
|
5597
6116
|
sourceId?: number | undefined | undefined;
|
|
5598
6117
|
testnet: true;
|
|
5599
6118
|
custom?: Record<string, unknown> | undefined;
|
|
6119
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
5600
6120
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
6121
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
6122
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
6123
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
6124
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
6125
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
6126
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
6127
|
+
}] | undefined;
|
|
5601
6128
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
6129
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
5602
6130
|
readonly blockchainId: "ARB-SEPOLIA";
|
|
5603
6131
|
readonly blockchainVm: "EVM";
|
|
5604
6132
|
readonly formatters?: undefined | undefined;
|
|
@@ -5776,11 +6304,20 @@ export declare const SUPPORTED_CHAINS_FAUCET: readonly [{
|
|
|
5776
6304
|
sourceId?: number | undefined | undefined;
|
|
5777
6305
|
testnet: true;
|
|
5778
6306
|
custom?: Record<string, unknown> | undefined;
|
|
6307
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
5779
6308
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
5780
|
-
|
|
6309
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
6310
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
6311
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
6312
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
6313
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
6314
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
6315
|
+
}] | undefined;
|
|
6316
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
6317
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
5781
6318
|
readonly blockchainId: "ARC-TESTNET";
|
|
5782
6319
|
readonly blockchainVm: "EVM";
|
|
5783
|
-
readonly formatters?: undefined;
|
|
6320
|
+
readonly formatters?: undefined | undefined;
|
|
5784
6321
|
}, {
|
|
5785
6322
|
blockExplorers: {
|
|
5786
6323
|
readonly default: {
|
|
@@ -6095,8 +6632,17 @@ export declare const SUPPORTED_CHAINS_FAUCET: readonly [{
|
|
|
6095
6632
|
sourceId?: number | undefined | undefined;
|
|
6096
6633
|
testnet: true;
|
|
6097
6634
|
custom?: Record<string, unknown> | undefined;
|
|
6635
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
6098
6636
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
6637
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
6638
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
6639
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
6640
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
6641
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
6642
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
6643
|
+
}] | undefined;
|
|
6099
6644
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
6645
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
6100
6646
|
readonly blockchainId: "AVAX-FUJI";
|
|
6101
6647
|
readonly blockchainVm: "EVM";
|
|
6102
6648
|
readonly formatters?: undefined | undefined;
|
|
@@ -6454,11 +7000,12 @@ export declare const SUPPORTED_CHAINS_FAUCET: readonly [{
|
|
|
6454
7000
|
sourceId: 11155111;
|
|
6455
7001
|
testnet: true;
|
|
6456
7002
|
custom?: Record<string, unknown> | undefined;
|
|
7003
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
6457
7004
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
6458
7005
|
formatters: {
|
|
6459
7006
|
readonly block: {
|
|
6460
7007
|
exclude: [] | undefined;
|
|
6461
|
-
format: (args: import("viem/chains").OpStackRpcBlock) => {
|
|
7008
|
+
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
6462
7009
|
baseFeePerGas: bigint | null;
|
|
6463
7010
|
blobGasUsed: bigint;
|
|
6464
7011
|
difficulty: bigint;
|
|
@@ -6491,7 +7038,7 @@ export declare const SUPPORTED_CHAINS_FAUCET: readonly [{
|
|
|
6491
7038
|
};
|
|
6492
7039
|
readonly transaction: {
|
|
6493
7040
|
exclude: [] | undefined;
|
|
6494
|
-
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
7041
|
+
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
6495
7042
|
blockHash: `0x${string}` | null;
|
|
6496
7043
|
blockNumber: bigint | null;
|
|
6497
7044
|
from: import("abitype").Address;
|
|
@@ -6660,11 +7207,12 @@ export declare const SUPPORTED_CHAINS_FAUCET: readonly [{
|
|
|
6660
7207
|
};
|
|
6661
7208
|
readonly transactionReceipt: {
|
|
6662
7209
|
exclude: [] | undefined;
|
|
6663
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
7210
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
6664
7211
|
blobGasPrice?: bigint | undefined;
|
|
6665
7212
|
blobGasUsed?: bigint | undefined;
|
|
6666
7213
|
blockHash: import("viem").Hash;
|
|
6667
7214
|
blockNumber: bigint;
|
|
7215
|
+
blockTimestamp?: bigint | undefined;
|
|
6668
7216
|
contractAddress: import("abitype").Address | null | undefined;
|
|
6669
7217
|
cumulativeGasUsed: bigint;
|
|
6670
7218
|
effectiveGasPrice: bigint;
|
|
@@ -6686,9 +7234,17 @@ export declare const SUPPORTED_CHAINS_FAUCET: readonly [{
|
|
|
6686
7234
|
type: "transactionReceipt";
|
|
6687
7235
|
};
|
|
6688
7236
|
};
|
|
7237
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
7238
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
7239
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
7240
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
7241
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
7242
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
7243
|
+
}] | undefined;
|
|
6689
7244
|
serializers: {
|
|
6690
7245
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
6691
7246
|
};
|
|
7247
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
6692
7248
|
readonly blockchainId: "BASE-SEPOLIA";
|
|
6693
7249
|
readonly blockchainVm: "EVM";
|
|
6694
7250
|
readonly network: "base-sepolia";
|
|
@@ -7004,14 +7560,23 @@ export declare const SUPPORTED_CHAINS_FAUCET: readonly [{
|
|
|
7004
7560
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
7005
7561
|
rpcUrls: {
|
|
7006
7562
|
readonly default: {
|
|
7007
|
-
readonly http: readonly ["https://
|
|
7563
|
+
readonly http: readonly ["https://11155111.rpc.thirdweb.com"];
|
|
7008
7564
|
};
|
|
7009
7565
|
};
|
|
7010
7566
|
sourceId?: number | undefined | undefined;
|
|
7011
7567
|
testnet: true;
|
|
7012
7568
|
custom?: Record<string, unknown> | undefined;
|
|
7569
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
7013
7570
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
7571
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
7572
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
7573
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
7574
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
7575
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
7576
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
7577
|
+
}] | undefined;
|
|
7014
7578
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
7579
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
7015
7580
|
readonly blockchainId: "ETH-SEPOLIA";
|
|
7016
7581
|
readonly blockchainVm: "EVM";
|
|
7017
7582
|
readonly formatters?: undefined | undefined;
|
|
@@ -7020,7 +7585,7 @@ export declare const SUPPORTED_CHAINS_FAUCET: readonly [{
|
|
|
7020
7585
|
readonly default: {
|
|
7021
7586
|
readonly name: "PolygonScan";
|
|
7022
7587
|
readonly url: "https://amoy.polygonscan.com";
|
|
7023
|
-
readonly apiUrl: "https://api
|
|
7588
|
+
readonly apiUrl: "https://api.etherscan.io/v2/api";
|
|
7024
7589
|
};
|
|
7025
7590
|
};
|
|
7026
7591
|
blockTime?: number | undefined | undefined;
|
|
@@ -7188,11 +7753,206 @@ export declare const SUPPORTED_CHAINS_FAUCET: readonly [{
|
|
|
7188
7753
|
sourceId?: number | undefined | undefined;
|
|
7189
7754
|
testnet: true;
|
|
7190
7755
|
custom?: Record<string, unknown> | undefined;
|
|
7756
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
7191
7757
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
7758
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
7759
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
7760
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
7761
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
7762
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
7763
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
7764
|
+
}] | undefined;
|
|
7192
7765
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
7766
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
7193
7767
|
readonly blockchainId: "MATIC-AMOY";
|
|
7194
7768
|
readonly blockchainVm: "EVM";
|
|
7195
7769
|
readonly formatters?: undefined | undefined;
|
|
7770
|
+
}, {
|
|
7771
|
+
blockExplorers: {
|
|
7772
|
+
readonly default: {
|
|
7773
|
+
readonly name: "Monad Testnet explorer";
|
|
7774
|
+
readonly url: "https://testnet.monadexplorer.com";
|
|
7775
|
+
};
|
|
7776
|
+
};
|
|
7777
|
+
blockTime: 400;
|
|
7778
|
+
contracts: {
|
|
7779
|
+
readonly USDC: {
|
|
7780
|
+
readonly address: "0x534b2f3A21130d7a60830c2Df862319e593943A3";
|
|
7781
|
+
readonly abi: readonly [{
|
|
7782
|
+
readonly type: "event";
|
|
7783
|
+
readonly name: "Approval";
|
|
7784
|
+
readonly inputs: readonly [{
|
|
7785
|
+
readonly indexed: true;
|
|
7786
|
+
readonly name: "owner";
|
|
7787
|
+
readonly type: "address";
|
|
7788
|
+
}, {
|
|
7789
|
+
readonly indexed: true;
|
|
7790
|
+
readonly name: "spender";
|
|
7791
|
+
readonly type: "address";
|
|
7792
|
+
}, {
|
|
7793
|
+
readonly indexed: false;
|
|
7794
|
+
readonly name: "value";
|
|
7795
|
+
readonly type: "uint256";
|
|
7796
|
+
}];
|
|
7797
|
+
}, {
|
|
7798
|
+
readonly type: "event";
|
|
7799
|
+
readonly name: "Transfer";
|
|
7800
|
+
readonly inputs: readonly [{
|
|
7801
|
+
readonly indexed: true;
|
|
7802
|
+
readonly name: "from";
|
|
7803
|
+
readonly type: "address";
|
|
7804
|
+
}, {
|
|
7805
|
+
readonly indexed: true;
|
|
7806
|
+
readonly name: "to";
|
|
7807
|
+
readonly type: "address";
|
|
7808
|
+
}, {
|
|
7809
|
+
readonly indexed: false;
|
|
7810
|
+
readonly name: "value";
|
|
7811
|
+
readonly type: "uint256";
|
|
7812
|
+
}];
|
|
7813
|
+
}, {
|
|
7814
|
+
readonly type: "function";
|
|
7815
|
+
readonly name: "allowance";
|
|
7816
|
+
readonly stateMutability: "view";
|
|
7817
|
+
readonly inputs: readonly [{
|
|
7818
|
+
readonly name: "owner";
|
|
7819
|
+
readonly type: "address";
|
|
7820
|
+
}, {
|
|
7821
|
+
readonly name: "spender";
|
|
7822
|
+
readonly type: "address";
|
|
7823
|
+
}];
|
|
7824
|
+
readonly outputs: readonly [{
|
|
7825
|
+
readonly type: "uint256";
|
|
7826
|
+
}];
|
|
7827
|
+
}, {
|
|
7828
|
+
readonly type: "function";
|
|
7829
|
+
readonly name: "approve";
|
|
7830
|
+
readonly stateMutability: "nonpayable";
|
|
7831
|
+
readonly inputs: readonly [{
|
|
7832
|
+
readonly name: "spender";
|
|
7833
|
+
readonly type: "address";
|
|
7834
|
+
}, {
|
|
7835
|
+
readonly name: "amount";
|
|
7836
|
+
readonly type: "uint256";
|
|
7837
|
+
}];
|
|
7838
|
+
readonly outputs: readonly [{
|
|
7839
|
+
readonly type: "bool";
|
|
7840
|
+
}];
|
|
7841
|
+
}, {
|
|
7842
|
+
readonly type: "function";
|
|
7843
|
+
readonly name: "balanceOf";
|
|
7844
|
+
readonly stateMutability: "view";
|
|
7845
|
+
readonly inputs: readonly [{
|
|
7846
|
+
readonly name: "account";
|
|
7847
|
+
readonly type: "address";
|
|
7848
|
+
}];
|
|
7849
|
+
readonly outputs: readonly [{
|
|
7850
|
+
readonly type: "uint256";
|
|
7851
|
+
}];
|
|
7852
|
+
}, {
|
|
7853
|
+
readonly type: "function";
|
|
7854
|
+
readonly name: "decimals";
|
|
7855
|
+
readonly stateMutability: "view";
|
|
7856
|
+
readonly inputs: readonly [];
|
|
7857
|
+
readonly outputs: readonly [{
|
|
7858
|
+
readonly type: "uint8";
|
|
7859
|
+
}];
|
|
7860
|
+
}, {
|
|
7861
|
+
readonly type: "function";
|
|
7862
|
+
readonly name: "name";
|
|
7863
|
+
readonly stateMutability: "view";
|
|
7864
|
+
readonly inputs: readonly [];
|
|
7865
|
+
readonly outputs: readonly [{
|
|
7866
|
+
readonly type: "string";
|
|
7867
|
+
}];
|
|
7868
|
+
}, {
|
|
7869
|
+
readonly type: "function";
|
|
7870
|
+
readonly name: "symbol";
|
|
7871
|
+
readonly stateMutability: "view";
|
|
7872
|
+
readonly inputs: readonly [];
|
|
7873
|
+
readonly outputs: readonly [{
|
|
7874
|
+
readonly type: "string";
|
|
7875
|
+
}];
|
|
7876
|
+
}, {
|
|
7877
|
+
readonly type: "function";
|
|
7878
|
+
readonly name: "totalSupply";
|
|
7879
|
+
readonly stateMutability: "view";
|
|
7880
|
+
readonly inputs: readonly [];
|
|
7881
|
+
readonly outputs: readonly [{
|
|
7882
|
+
readonly type: "uint256";
|
|
7883
|
+
}];
|
|
7884
|
+
}, {
|
|
7885
|
+
readonly type: "function";
|
|
7886
|
+
readonly name: "transfer";
|
|
7887
|
+
readonly stateMutability: "nonpayable";
|
|
7888
|
+
readonly inputs: readonly [{
|
|
7889
|
+
readonly name: "recipient";
|
|
7890
|
+
readonly type: "address";
|
|
7891
|
+
}, {
|
|
7892
|
+
readonly name: "amount";
|
|
7893
|
+
readonly type: "uint256";
|
|
7894
|
+
}];
|
|
7895
|
+
readonly outputs: readonly [{
|
|
7896
|
+
readonly type: "bool";
|
|
7897
|
+
}];
|
|
7898
|
+
}, {
|
|
7899
|
+
readonly type: "function";
|
|
7900
|
+
readonly name: "transferFrom";
|
|
7901
|
+
readonly stateMutability: "nonpayable";
|
|
7902
|
+
readonly inputs: readonly [{
|
|
7903
|
+
readonly name: "sender";
|
|
7904
|
+
readonly type: "address";
|
|
7905
|
+
}, {
|
|
7906
|
+
readonly name: "recipient";
|
|
7907
|
+
readonly type: "address";
|
|
7908
|
+
}, {
|
|
7909
|
+
readonly name: "amount";
|
|
7910
|
+
readonly type: "uint256";
|
|
7911
|
+
}];
|
|
7912
|
+
readonly outputs: readonly [{
|
|
7913
|
+
readonly type: "bool";
|
|
7914
|
+
}];
|
|
7915
|
+
}];
|
|
7916
|
+
readonly read: {
|
|
7917
|
+
readonly decimals: () => 6;
|
|
7918
|
+
};
|
|
7919
|
+
};
|
|
7920
|
+
readonly multicall3: {
|
|
7921
|
+
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
7922
|
+
readonly blockCreated: 251449;
|
|
7923
|
+
};
|
|
7924
|
+
};
|
|
7925
|
+
ensTlds?: readonly string[] | undefined;
|
|
7926
|
+
id: 10143;
|
|
7927
|
+
name: "Monad Testnet";
|
|
7928
|
+
nativeCurrency: {
|
|
7929
|
+
readonly name: "Testnet MON Token";
|
|
7930
|
+
readonly symbol: "MON";
|
|
7931
|
+
readonly decimals: 18;
|
|
7932
|
+
};
|
|
7933
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
7934
|
+
rpcUrls: {
|
|
7935
|
+
readonly default: {
|
|
7936
|
+
readonly http: readonly ["https://testnet-rpc.monad.xyz"];
|
|
7937
|
+
};
|
|
7938
|
+
};
|
|
7939
|
+
sourceId?: number | undefined | undefined;
|
|
7940
|
+
testnet: true;
|
|
7941
|
+
custom?: Record<string, unknown> | undefined;
|
|
7942
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
7943
|
+
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
7944
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
7945
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
7946
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
7947
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
7948
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
7949
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
7950
|
+
}] | undefined;
|
|
7951
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
7952
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
7953
|
+
readonly blockchainId: "MONAD-TESTNET";
|
|
7954
|
+
readonly blockchainVm: "EVM";
|
|
7955
|
+
readonly formatters?: undefined | undefined;
|
|
7196
7956
|
}, {
|
|
7197
7957
|
blockExplorers: {
|
|
7198
7958
|
readonly default: {
|
|
@@ -7404,11 +8164,12 @@ export declare const SUPPORTED_CHAINS_FAUCET: readonly [{
|
|
|
7404
8164
|
sourceId: 11155111;
|
|
7405
8165
|
testnet: true;
|
|
7406
8166
|
custom?: Record<string, unknown> | undefined;
|
|
8167
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
7407
8168
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
7408
8169
|
formatters: {
|
|
7409
8170
|
readonly block: {
|
|
7410
8171
|
exclude: [] | undefined;
|
|
7411
|
-
format: (args: import("viem/chains").OpStackRpcBlock) => {
|
|
8172
|
+
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
7412
8173
|
baseFeePerGas: bigint | null;
|
|
7413
8174
|
blobGasUsed: bigint;
|
|
7414
8175
|
difficulty: bigint;
|
|
@@ -7441,7 +8202,7 @@ export declare const SUPPORTED_CHAINS_FAUCET: readonly [{
|
|
|
7441
8202
|
};
|
|
7442
8203
|
readonly transaction: {
|
|
7443
8204
|
exclude: [] | undefined;
|
|
7444
|
-
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
8205
|
+
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
7445
8206
|
blockHash: `0x${string}` | null;
|
|
7446
8207
|
blockNumber: bigint | null;
|
|
7447
8208
|
from: import("abitype").Address;
|
|
@@ -7610,11 +8371,12 @@ export declare const SUPPORTED_CHAINS_FAUCET: readonly [{
|
|
|
7610
8371
|
};
|
|
7611
8372
|
readonly transactionReceipt: {
|
|
7612
8373
|
exclude: [] | undefined;
|
|
7613
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
8374
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
7614
8375
|
blobGasPrice?: bigint | undefined;
|
|
7615
8376
|
blobGasUsed?: bigint | undefined;
|
|
7616
8377
|
blockHash: import("viem").Hash;
|
|
7617
8378
|
blockNumber: bigint;
|
|
8379
|
+
blockTimestamp?: bigint | undefined;
|
|
7618
8380
|
contractAddress: import("abitype").Address | null | undefined;
|
|
7619
8381
|
cumulativeGasUsed: bigint;
|
|
7620
8382
|
effectiveGasPrice: bigint;
|
|
@@ -7636,9 +8398,17 @@ export declare const SUPPORTED_CHAINS_FAUCET: readonly [{
|
|
|
7636
8398
|
type: "transactionReceipt";
|
|
7637
8399
|
};
|
|
7638
8400
|
};
|
|
8401
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
8402
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
8403
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
8404
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
8405
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
8406
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
8407
|
+
}] | undefined;
|
|
7639
8408
|
serializers: {
|
|
7640
8409
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
7641
8410
|
};
|
|
8411
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
7642
8412
|
readonly blockchainId: "OP-SEPOLIA";
|
|
7643
8413
|
readonly blockchainVm: "EVM";
|
|
7644
8414
|
}, {
|
|
@@ -7649,7 +8419,7 @@ export declare const SUPPORTED_CHAINS_FAUCET: readonly [{
|
|
|
7649
8419
|
readonly apiUrl: "https://api-sepolia.uniscan.xyz/api";
|
|
7650
8420
|
};
|
|
7651
8421
|
};
|
|
7652
|
-
blockTime:
|
|
8422
|
+
blockTime: 1000;
|
|
7653
8423
|
contracts: {
|
|
7654
8424
|
readonly USDC: {
|
|
7655
8425
|
readonly address: "0x31d0220469e10c4E71834a79b1f276d740d3768F";
|
|
@@ -7847,11 +8617,12 @@ export declare const SUPPORTED_CHAINS_FAUCET: readonly [{
|
|
|
7847
8617
|
sourceId: 11155111;
|
|
7848
8618
|
testnet: true;
|
|
7849
8619
|
custom?: Record<string, unknown> | undefined;
|
|
8620
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
7850
8621
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
7851
8622
|
formatters: {
|
|
7852
8623
|
readonly block: {
|
|
7853
8624
|
exclude: [] | undefined;
|
|
7854
|
-
format: (args: import("viem/chains").OpStackRpcBlock) => {
|
|
8625
|
+
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
7855
8626
|
baseFeePerGas: bigint | null;
|
|
7856
8627
|
blobGasUsed: bigint;
|
|
7857
8628
|
difficulty: bigint;
|
|
@@ -7884,7 +8655,7 @@ export declare const SUPPORTED_CHAINS_FAUCET: readonly [{
|
|
|
7884
8655
|
};
|
|
7885
8656
|
readonly transaction: {
|
|
7886
8657
|
exclude: [] | undefined;
|
|
7887
|
-
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
8658
|
+
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
7888
8659
|
blockHash: `0x${string}` | null;
|
|
7889
8660
|
blockNumber: bigint | null;
|
|
7890
8661
|
from: import("abitype").Address;
|
|
@@ -8053,11 +8824,12 @@ export declare const SUPPORTED_CHAINS_FAUCET: readonly [{
|
|
|
8053
8824
|
};
|
|
8054
8825
|
readonly transactionReceipt: {
|
|
8055
8826
|
exclude: [] | undefined;
|
|
8056
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
8827
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
8057
8828
|
blobGasPrice?: bigint | undefined;
|
|
8058
8829
|
blobGasUsed?: bigint | undefined;
|
|
8059
8830
|
blockHash: import("viem").Hash;
|
|
8060
8831
|
blockNumber: bigint;
|
|
8832
|
+
blockTimestamp?: bigint | undefined;
|
|
8061
8833
|
contractAddress: import("abitype").Address | null | undefined;
|
|
8062
8834
|
cumulativeGasUsed: bigint;
|
|
8063
8835
|
effectiveGasPrice: bigint;
|
|
@@ -8079,9 +8851,17 @@ export declare const SUPPORTED_CHAINS_FAUCET: readonly [{
|
|
|
8079
8851
|
type: "transactionReceipt";
|
|
8080
8852
|
};
|
|
8081
8853
|
};
|
|
8854
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
8855
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
8856
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
8857
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
8858
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
8859
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
8860
|
+
}] | undefined;
|
|
8082
8861
|
serializers: {
|
|
8083
8862
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
8084
8863
|
};
|
|
8864
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
8085
8865
|
readonly blockchainId: "UNI-SEPOLIA";
|
|
8086
8866
|
readonly blockchainVm: "EVM";
|
|
8087
8867
|
}];
|
|
@@ -8544,8 +9324,17 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
|
|
|
8544
9324
|
sourceId?: number | undefined | undefined;
|
|
8545
9325
|
testnet?: boolean | undefined | undefined;
|
|
8546
9326
|
custom?: Record<string, unknown> | undefined;
|
|
9327
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
8547
9328
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
9329
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
9330
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
9331
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
9332
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
9333
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
9334
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
9335
|
+
}] | undefined;
|
|
8548
9336
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
9337
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
8549
9338
|
readonly blockchainId: "ETH";
|
|
8550
9339
|
readonly blockchainVm: "EVM";
|
|
8551
9340
|
readonly formatters?: undefined | undefined;
|
|
@@ -8861,14 +9650,23 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
|
|
|
8861
9650
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
8862
9651
|
rpcUrls: {
|
|
8863
9652
|
readonly default: {
|
|
8864
|
-
readonly http: readonly ["https://
|
|
9653
|
+
readonly http: readonly ["https://11155111.rpc.thirdweb.com"];
|
|
8865
9654
|
};
|
|
8866
9655
|
};
|
|
8867
9656
|
sourceId?: number | undefined | undefined;
|
|
8868
9657
|
testnet: true;
|
|
8869
9658
|
custom?: Record<string, unknown> | undefined;
|
|
9659
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
8870
9660
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
9661
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
9662
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
9663
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
9664
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
9665
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
9666
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
9667
|
+
}] | undefined;
|
|
8871
9668
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
9669
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
8872
9670
|
readonly blockchainId: "ETH-SEPOLIA";
|
|
8873
9671
|
readonly blockchainVm: "EVM";
|
|
8874
9672
|
readonly formatters?: undefined | undefined;
|
|
@@ -8877,10 +9675,10 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
|
|
|
8877
9675
|
readonly default: {
|
|
8878
9676
|
readonly name: "PolygonScan";
|
|
8879
9677
|
readonly url: "https://polygonscan.com";
|
|
8880
|
-
readonly apiUrl: "https://api.
|
|
9678
|
+
readonly apiUrl: "https://api.etherscan.io/v2/api";
|
|
8881
9679
|
};
|
|
8882
9680
|
};
|
|
8883
|
-
blockTime
|
|
9681
|
+
blockTime: 2000;
|
|
8884
9682
|
contracts: {
|
|
8885
9683
|
readonly USDC: {
|
|
8886
9684
|
readonly address: "0x3c499c542cef5e3811e1192ce70d8cc03d5c3359";
|
|
@@ -9039,14 +9837,23 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
|
|
|
9039
9837
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
9040
9838
|
rpcUrls: {
|
|
9041
9839
|
readonly default: {
|
|
9042
|
-
readonly http: readonly ["https://polygon
|
|
9840
|
+
readonly http: readonly ["https://polygon.drpc.org"];
|
|
9043
9841
|
};
|
|
9044
9842
|
};
|
|
9045
9843
|
sourceId?: number | undefined | undefined;
|
|
9046
9844
|
testnet?: boolean | undefined | undefined;
|
|
9047
9845
|
custom?: Record<string, unknown> | undefined;
|
|
9846
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
9048
9847
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
9848
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
9849
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
9850
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
9851
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
9852
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
9853
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
9854
|
+
}] | undefined;
|
|
9049
9855
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
9856
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
9050
9857
|
readonly blockchainId: "MATIC";
|
|
9051
9858
|
readonly blockchainVm: "EVM";
|
|
9052
9859
|
readonly formatters?: undefined | undefined;
|
|
@@ -9055,7 +9862,7 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
|
|
|
9055
9862
|
readonly default: {
|
|
9056
9863
|
readonly name: "PolygonScan";
|
|
9057
9864
|
readonly url: "https://amoy.polygonscan.com";
|
|
9058
|
-
readonly apiUrl: "https://api
|
|
9865
|
+
readonly apiUrl: "https://api.etherscan.io/v2/api";
|
|
9059
9866
|
};
|
|
9060
9867
|
};
|
|
9061
9868
|
blockTime?: number | undefined | undefined;
|
|
@@ -9223,8 +10030,17 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
|
|
|
9223
10030
|
sourceId?: number | undefined | undefined;
|
|
9224
10031
|
testnet: true;
|
|
9225
10032
|
custom?: Record<string, unknown> | undefined;
|
|
10033
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
9226
10034
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
10035
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
10036
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
10037
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
10038
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
10039
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
10040
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
10041
|
+
}] | undefined;
|
|
9227
10042
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
10043
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
9228
10044
|
readonly blockchainId: "MATIC-AMOY";
|
|
9229
10045
|
readonly blockchainVm: "EVM";
|
|
9230
10046
|
readonly formatters?: undefined | undefined;
|
|
@@ -9401,8 +10217,17 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
|
|
|
9401
10217
|
sourceId?: number | undefined | undefined;
|
|
9402
10218
|
testnet?: boolean | undefined | undefined;
|
|
9403
10219
|
custom?: Record<string, unknown> | undefined;
|
|
10220
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
9404
10221
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
10222
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
10223
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
10224
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
10225
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
10226
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
10227
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
10228
|
+
}] | undefined;
|
|
9405
10229
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
10230
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
9406
10231
|
readonly blockchainId: "ARB";
|
|
9407
10232
|
readonly blockchainVm: "EVM";
|
|
9408
10233
|
readonly formatters?: undefined | undefined;
|
|
@@ -9579,8 +10404,17 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
|
|
|
9579
10404
|
sourceId?: number | undefined | undefined;
|
|
9580
10405
|
testnet: true;
|
|
9581
10406
|
custom?: Record<string, unknown> | undefined;
|
|
10407
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
9582
10408
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
10409
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
10410
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
10411
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
10412
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
10413
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
10414
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
10415
|
+
}] | undefined;
|
|
9583
10416
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
10417
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
9584
10418
|
readonly blockchainId: "ARB-SEPOLIA";
|
|
9585
10419
|
readonly blockchainVm: "EVM";
|
|
9586
10420
|
readonly formatters?: undefined | undefined;
|
|
@@ -9592,7 +10426,7 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
|
|
|
9592
10426
|
readonly apiUrl: "https://api.uniscan.xyz/api";
|
|
9593
10427
|
};
|
|
9594
10428
|
};
|
|
9595
|
-
blockTime:
|
|
10429
|
+
blockTime: 1000;
|
|
9596
10430
|
contracts: {
|
|
9597
10431
|
readonly USDC: {
|
|
9598
10432
|
readonly address: "0x078D782b760474a361dDA0AF3839290b0EF57AD6";
|
|
@@ -9790,11 +10624,12 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
|
|
|
9790
10624
|
sourceId: 1;
|
|
9791
10625
|
testnet?: boolean | undefined | undefined;
|
|
9792
10626
|
custom?: Record<string, unknown> | undefined;
|
|
10627
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
9793
10628
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
9794
10629
|
formatters: {
|
|
9795
10630
|
readonly block: {
|
|
9796
10631
|
exclude: [] | undefined;
|
|
9797
|
-
format: (args: import("viem/chains").OpStackRpcBlock) => {
|
|
10632
|
+
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
9798
10633
|
baseFeePerGas: bigint | null;
|
|
9799
10634
|
blobGasUsed: bigint;
|
|
9800
10635
|
difficulty: bigint;
|
|
@@ -9827,7 +10662,7 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
|
|
|
9827
10662
|
};
|
|
9828
10663
|
readonly transaction: {
|
|
9829
10664
|
exclude: [] | undefined;
|
|
9830
|
-
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
10665
|
+
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
9831
10666
|
blockHash: `0x${string}` | null;
|
|
9832
10667
|
blockNumber: bigint | null;
|
|
9833
10668
|
from: import("abitype").Address;
|
|
@@ -9996,11 +10831,12 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
|
|
|
9996
10831
|
};
|
|
9997
10832
|
readonly transactionReceipt: {
|
|
9998
10833
|
exclude: [] | undefined;
|
|
9999
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
10834
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
10000
10835
|
blobGasPrice?: bigint | undefined;
|
|
10001
10836
|
blobGasUsed?: bigint | undefined;
|
|
10002
10837
|
blockHash: import("viem").Hash;
|
|
10003
10838
|
blockNumber: bigint;
|
|
10839
|
+
blockTimestamp?: bigint | undefined;
|
|
10004
10840
|
contractAddress: import("abitype").Address | null | undefined;
|
|
10005
10841
|
cumulativeGasUsed: bigint;
|
|
10006
10842
|
effectiveGasPrice: bigint;
|
|
@@ -10022,9 +10858,17 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
|
|
|
10022
10858
|
type: "transactionReceipt";
|
|
10023
10859
|
};
|
|
10024
10860
|
};
|
|
10861
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
10862
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
10863
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
10864
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
10865
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
10866
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
10867
|
+
}] | undefined;
|
|
10025
10868
|
serializers: {
|
|
10026
10869
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
10027
10870
|
};
|
|
10871
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
10028
10872
|
readonly blockchainId: "UNI";
|
|
10029
10873
|
readonly blockchainVm: "EVM";
|
|
10030
10874
|
}, {
|
|
@@ -10035,7 +10879,7 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
|
|
|
10035
10879
|
readonly apiUrl: "https://api-sepolia.uniscan.xyz/api";
|
|
10036
10880
|
};
|
|
10037
10881
|
};
|
|
10038
|
-
blockTime:
|
|
10882
|
+
blockTime: 1000;
|
|
10039
10883
|
contracts: {
|
|
10040
10884
|
readonly USDC: {
|
|
10041
10885
|
readonly address: "0x31d0220469e10c4E71834a79b1f276d740d3768F";
|
|
@@ -10233,11 +11077,12 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
|
|
|
10233
11077
|
sourceId: 11155111;
|
|
10234
11078
|
testnet: true;
|
|
10235
11079
|
custom?: Record<string, unknown> | undefined;
|
|
11080
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
10236
11081
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
10237
11082
|
formatters: {
|
|
10238
11083
|
readonly block: {
|
|
10239
11084
|
exclude: [] | undefined;
|
|
10240
|
-
format: (args: import("viem/chains").OpStackRpcBlock) => {
|
|
11085
|
+
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
10241
11086
|
baseFeePerGas: bigint | null;
|
|
10242
11087
|
blobGasUsed: bigint;
|
|
10243
11088
|
difficulty: bigint;
|
|
@@ -10270,7 +11115,7 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
|
|
|
10270
11115
|
};
|
|
10271
11116
|
readonly transaction: {
|
|
10272
11117
|
exclude: [] | undefined;
|
|
10273
|
-
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
11118
|
+
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
10274
11119
|
blockHash: `0x${string}` | null;
|
|
10275
11120
|
blockNumber: bigint | null;
|
|
10276
11121
|
from: import("abitype").Address;
|
|
@@ -10439,11 +11284,12 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
|
|
|
10439
11284
|
};
|
|
10440
11285
|
readonly transactionReceipt: {
|
|
10441
11286
|
exclude: [] | undefined;
|
|
10442
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
11287
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
10443
11288
|
blobGasPrice?: bigint | undefined;
|
|
10444
11289
|
blobGasUsed?: bigint | undefined;
|
|
10445
11290
|
blockHash: import("viem").Hash;
|
|
10446
11291
|
blockNumber: bigint;
|
|
11292
|
+
blockTimestamp?: bigint | undefined;
|
|
10447
11293
|
contractAddress: import("abitype").Address | null | undefined;
|
|
10448
11294
|
cumulativeGasUsed: bigint;
|
|
10449
11295
|
effectiveGasPrice: bigint;
|
|
@@ -10465,9 +11311,17 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
|
|
|
10465
11311
|
type: "transactionReceipt";
|
|
10466
11312
|
};
|
|
10467
11313
|
};
|
|
11314
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
11315
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
11316
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
11317
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
11318
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
11319
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
11320
|
+
}] | undefined;
|
|
10468
11321
|
serializers: {
|
|
10469
11322
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
10470
11323
|
};
|
|
11324
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
10471
11325
|
readonly blockchainId: "UNI-SEPOLIA";
|
|
10472
11326
|
readonly blockchainVm: "EVM";
|
|
10473
11327
|
}, {
|
|
@@ -10824,11 +11678,12 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
|
|
|
10824
11678
|
sourceId: 1;
|
|
10825
11679
|
testnet?: boolean | undefined | undefined;
|
|
10826
11680
|
custom?: Record<string, unknown> | undefined;
|
|
11681
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
10827
11682
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
10828
11683
|
formatters: {
|
|
10829
11684
|
readonly block: {
|
|
10830
11685
|
exclude: [] | undefined;
|
|
10831
|
-
format: (args: import("viem/chains").OpStackRpcBlock) => {
|
|
11686
|
+
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
10832
11687
|
baseFeePerGas: bigint | null;
|
|
10833
11688
|
blobGasUsed: bigint;
|
|
10834
11689
|
difficulty: bigint;
|
|
@@ -10861,7 +11716,7 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
|
|
|
10861
11716
|
};
|
|
10862
11717
|
readonly transaction: {
|
|
10863
11718
|
exclude: [] | undefined;
|
|
10864
|
-
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
11719
|
+
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
10865
11720
|
blockHash: `0x${string}` | null;
|
|
10866
11721
|
blockNumber: bigint | null;
|
|
10867
11722
|
from: import("abitype").Address;
|
|
@@ -11030,11 +11885,12 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
|
|
|
11030
11885
|
};
|
|
11031
11886
|
readonly transactionReceipt: {
|
|
11032
11887
|
exclude: [] | undefined;
|
|
11033
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
11888
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
11034
11889
|
blobGasPrice?: bigint | undefined;
|
|
11035
11890
|
blobGasUsed?: bigint | undefined;
|
|
11036
11891
|
blockHash: import("viem").Hash;
|
|
11037
11892
|
blockNumber: bigint;
|
|
11893
|
+
blockTimestamp?: bigint | undefined;
|
|
11038
11894
|
contractAddress: import("abitype").Address | null | undefined;
|
|
11039
11895
|
cumulativeGasUsed: bigint;
|
|
11040
11896
|
effectiveGasPrice: bigint;
|
|
@@ -11056,9 +11912,17 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
|
|
|
11056
11912
|
type: "transactionReceipt";
|
|
11057
11913
|
};
|
|
11058
11914
|
};
|
|
11915
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
11916
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
11917
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
11918
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
11919
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
11920
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
11921
|
+
}] | undefined;
|
|
11059
11922
|
serializers: {
|
|
11060
11923
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
11061
11924
|
};
|
|
11925
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
11062
11926
|
readonly blockchainId: "BASE";
|
|
11063
11927
|
readonly blockchainVm: "EVM";
|
|
11064
11928
|
}, {
|
|
@@ -11415,11 +12279,12 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
|
|
|
11415
12279
|
sourceId: 11155111;
|
|
11416
12280
|
testnet: true;
|
|
11417
12281
|
custom?: Record<string, unknown> | undefined;
|
|
12282
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
11418
12283
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
11419
12284
|
formatters: {
|
|
11420
12285
|
readonly block: {
|
|
11421
12286
|
exclude: [] | undefined;
|
|
11422
|
-
format: (args: import("viem/chains").OpStackRpcBlock) => {
|
|
12287
|
+
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
11423
12288
|
baseFeePerGas: bigint | null;
|
|
11424
12289
|
blobGasUsed: bigint;
|
|
11425
12290
|
difficulty: bigint;
|
|
@@ -11452,7 +12317,7 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
|
|
|
11452
12317
|
};
|
|
11453
12318
|
readonly transaction: {
|
|
11454
12319
|
exclude: [] | undefined;
|
|
11455
|
-
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
12320
|
+
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
11456
12321
|
blockHash: `0x${string}` | null;
|
|
11457
12322
|
blockNumber: bigint | null;
|
|
11458
12323
|
from: import("abitype").Address;
|
|
@@ -11621,11 +12486,12 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
|
|
|
11621
12486
|
};
|
|
11622
12487
|
readonly transactionReceipt: {
|
|
11623
12488
|
exclude: [] | undefined;
|
|
11624
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
12489
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
11625
12490
|
blobGasPrice?: bigint | undefined;
|
|
11626
12491
|
blobGasUsed?: bigint | undefined;
|
|
11627
12492
|
blockHash: import("viem").Hash;
|
|
11628
12493
|
blockNumber: bigint;
|
|
12494
|
+
blockTimestamp?: bigint | undefined;
|
|
11629
12495
|
contractAddress: import("abitype").Address | null | undefined;
|
|
11630
12496
|
cumulativeGasUsed: bigint;
|
|
11631
12497
|
effectiveGasPrice: bigint;
|
|
@@ -11647,9 +12513,17 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
|
|
|
11647
12513
|
type: "transactionReceipt";
|
|
11648
12514
|
};
|
|
11649
12515
|
};
|
|
12516
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
12517
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
12518
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
12519
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
12520
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
12521
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
12522
|
+
}] | undefined;
|
|
11650
12523
|
serializers: {
|
|
11651
12524
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
11652
12525
|
};
|
|
12526
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
11653
12527
|
readonly blockchainId: "BASE-SEPOLIA";
|
|
11654
12528
|
readonly blockchainVm: "EVM";
|
|
11655
12529
|
readonly network: "base-sepolia";
|
|
@@ -11864,11 +12738,12 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
|
|
|
11864
12738
|
sourceId: 1;
|
|
11865
12739
|
testnet?: boolean | undefined | undefined;
|
|
11866
12740
|
custom?: Record<string, unknown> | undefined;
|
|
12741
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
11867
12742
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
11868
12743
|
formatters: {
|
|
11869
12744
|
readonly block: {
|
|
11870
12745
|
exclude: [] | undefined;
|
|
11871
|
-
format: (args: import("viem/chains").OpStackRpcBlock) => {
|
|
12746
|
+
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
11872
12747
|
baseFeePerGas: bigint | null;
|
|
11873
12748
|
blobGasUsed: bigint;
|
|
11874
12749
|
difficulty: bigint;
|
|
@@ -11901,7 +12776,7 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
|
|
|
11901
12776
|
};
|
|
11902
12777
|
readonly transaction: {
|
|
11903
12778
|
exclude: [] | undefined;
|
|
11904
|
-
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
12779
|
+
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
11905
12780
|
blockHash: `0x${string}` | null;
|
|
11906
12781
|
blockNumber: bigint | null;
|
|
11907
12782
|
from: import("abitype").Address;
|
|
@@ -12070,11 +12945,12 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
|
|
|
12070
12945
|
};
|
|
12071
12946
|
readonly transactionReceipt: {
|
|
12072
12947
|
exclude: [] | undefined;
|
|
12073
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
12948
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
12074
12949
|
blobGasPrice?: bigint | undefined;
|
|
12075
12950
|
blobGasUsed?: bigint | undefined;
|
|
12076
12951
|
blockHash: import("viem").Hash;
|
|
12077
12952
|
blockNumber: bigint;
|
|
12953
|
+
blockTimestamp?: bigint | undefined;
|
|
12078
12954
|
contractAddress: import("abitype").Address | null | undefined;
|
|
12079
12955
|
cumulativeGasUsed: bigint;
|
|
12080
12956
|
effectiveGasPrice: bigint;
|
|
@@ -12096,9 +12972,17 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
|
|
|
12096
12972
|
type: "transactionReceipt";
|
|
12097
12973
|
};
|
|
12098
12974
|
};
|
|
12975
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
12976
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
12977
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
12978
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
12979
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
12980
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
12981
|
+
}] | undefined;
|
|
12099
12982
|
serializers: {
|
|
12100
12983
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
12101
12984
|
};
|
|
12985
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
12102
12986
|
readonly blockchainId: "OP";
|
|
12103
12987
|
readonly blockchainVm: "EVM";
|
|
12104
12988
|
}, {
|
|
@@ -12312,11 +13196,12 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
|
|
|
12312
13196
|
sourceId: 11155111;
|
|
12313
13197
|
testnet: true;
|
|
12314
13198
|
custom?: Record<string, unknown> | undefined;
|
|
13199
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
12315
13200
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
12316
13201
|
formatters: {
|
|
12317
13202
|
readonly block: {
|
|
12318
13203
|
exclude: [] | undefined;
|
|
12319
|
-
format: (args: import("viem/chains").OpStackRpcBlock) => {
|
|
13204
|
+
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
12320
13205
|
baseFeePerGas: bigint | null;
|
|
12321
13206
|
blobGasUsed: bigint;
|
|
12322
13207
|
difficulty: bigint;
|
|
@@ -12349,7 +13234,7 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
|
|
|
12349
13234
|
};
|
|
12350
13235
|
readonly transaction: {
|
|
12351
13236
|
exclude: [] | undefined;
|
|
12352
|
-
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
13237
|
+
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
12353
13238
|
blockHash: `0x${string}` | null;
|
|
12354
13239
|
blockNumber: bigint | null;
|
|
12355
13240
|
from: import("abitype").Address;
|
|
@@ -12518,11 +13403,12 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
|
|
|
12518
13403
|
};
|
|
12519
13404
|
readonly transactionReceipt: {
|
|
12520
13405
|
exclude: [] | undefined;
|
|
12521
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
13406
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
12522
13407
|
blobGasPrice?: bigint | undefined;
|
|
12523
13408
|
blobGasUsed?: bigint | undefined;
|
|
12524
13409
|
blockHash: import("viem").Hash;
|
|
12525
13410
|
blockNumber: bigint;
|
|
13411
|
+
blockTimestamp?: bigint | undefined;
|
|
12526
13412
|
contractAddress: import("abitype").Address | null | undefined;
|
|
12527
13413
|
cumulativeGasUsed: bigint;
|
|
12528
13414
|
effectiveGasPrice: bigint;
|
|
@@ -12544,9 +13430,17 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
|
|
|
12544
13430
|
type: "transactionReceipt";
|
|
12545
13431
|
};
|
|
12546
13432
|
};
|
|
13433
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
13434
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
13435
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
13436
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
13437
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
13438
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
13439
|
+
}] | undefined;
|
|
12547
13440
|
serializers: {
|
|
12548
13441
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
12549
13442
|
};
|
|
13443
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
12550
13444
|
readonly blockchainId: "OP-SEPOLIA";
|
|
12551
13445
|
readonly blockchainVm: "EVM";
|
|
12552
13446
|
}];
|