@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
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { Chain } from './chains
|
|
1
|
+
import type { Chain } from './chains.js';
|
|
2
2
|
declare const SUPPORTED_CHAINS: ({
|
|
3
3
|
blockExplorers: {
|
|
4
4
|
readonly default: {
|
|
@@ -172,8 +172,17 @@ declare const SUPPORTED_CHAINS: ({
|
|
|
172
172
|
sourceId?: number | undefined | undefined;
|
|
173
173
|
testnet?: boolean | undefined | undefined;
|
|
174
174
|
custom?: Record<string, unknown> | undefined;
|
|
175
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
175
176
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
177
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
178
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
179
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
180
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
181
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
182
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
183
|
+
}] | undefined;
|
|
176
184
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
185
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
177
186
|
readonly blockchainId: "ARB";
|
|
178
187
|
readonly blockchainVm: "EVM";
|
|
179
188
|
readonly formatters?: undefined | undefined;
|
|
@@ -350,8 +359,17 @@ declare const SUPPORTED_CHAINS: ({
|
|
|
350
359
|
sourceId?: number | undefined | undefined;
|
|
351
360
|
testnet: true;
|
|
352
361
|
custom?: Record<string, unknown> | undefined;
|
|
362
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
353
363
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
364
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
365
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
366
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
367
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
368
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
369
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
370
|
+
}] | undefined;
|
|
354
371
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
372
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
355
373
|
readonly blockchainId: "ARB-SEPOLIA";
|
|
356
374
|
readonly blockchainVm: "EVM";
|
|
357
375
|
readonly formatters?: undefined | undefined;
|
|
@@ -529,11 +547,20 @@ declare const SUPPORTED_CHAINS: ({
|
|
|
529
547
|
sourceId?: number | undefined | undefined;
|
|
530
548
|
testnet: true;
|
|
531
549
|
custom?: Record<string, unknown> | undefined;
|
|
550
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
532
551
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
533
|
-
|
|
552
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
553
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
554
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
555
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
556
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
557
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
558
|
+
}] | undefined;
|
|
559
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
560
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
534
561
|
readonly blockchainId: "ARC-TESTNET";
|
|
535
562
|
readonly blockchainVm: "EVM";
|
|
536
|
-
readonly formatters?: undefined;
|
|
563
|
+
readonly formatters?: undefined | undefined;
|
|
537
564
|
} | {
|
|
538
565
|
blockExplorers: {
|
|
539
566
|
readonly default: {
|
|
@@ -989,8 +1016,17 @@ declare const SUPPORTED_CHAINS: ({
|
|
|
989
1016
|
sourceId?: number | undefined | undefined;
|
|
990
1017
|
testnet?: boolean | undefined | undefined;
|
|
991
1018
|
custom?: Record<string, unknown> | undefined;
|
|
1019
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
992
1020
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
1021
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
1022
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
1023
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
1024
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
1025
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
1026
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
1027
|
+
}] | undefined;
|
|
993
1028
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
1029
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
994
1030
|
readonly blockchainId: "AVAX";
|
|
995
1031
|
readonly blockchainVm: "EVM";
|
|
996
1032
|
readonly formatters?: undefined | undefined;
|
|
@@ -1308,8 +1344,17 @@ declare const SUPPORTED_CHAINS: ({
|
|
|
1308
1344
|
sourceId?: number | undefined | undefined;
|
|
1309
1345
|
testnet: true;
|
|
1310
1346
|
custom?: Record<string, unknown> | undefined;
|
|
1347
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
1311
1348
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
1349
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
1350
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
1351
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
1352
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
1353
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
1354
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
1355
|
+
}] | undefined;
|
|
1312
1356
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
1357
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
1313
1358
|
readonly blockchainId: "AVAX-FUJI";
|
|
1314
1359
|
readonly blockchainVm: "EVM";
|
|
1315
1360
|
readonly formatters?: undefined | undefined;
|
|
@@ -1667,11 +1712,12 @@ declare const SUPPORTED_CHAINS: ({
|
|
|
1667
1712
|
sourceId: 1;
|
|
1668
1713
|
testnet?: boolean | undefined | undefined;
|
|
1669
1714
|
custom?: Record<string, unknown> | undefined;
|
|
1715
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
1670
1716
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
1671
1717
|
formatters: {
|
|
1672
1718
|
readonly block: {
|
|
1673
1719
|
exclude: [] | undefined;
|
|
1674
|
-
format: (args: import("viem/chains").OpStackRpcBlock) => {
|
|
1720
|
+
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
1675
1721
|
baseFeePerGas: bigint | null;
|
|
1676
1722
|
blobGasUsed: bigint;
|
|
1677
1723
|
difficulty: bigint;
|
|
@@ -1704,7 +1750,7 @@ declare const SUPPORTED_CHAINS: ({
|
|
|
1704
1750
|
};
|
|
1705
1751
|
readonly transaction: {
|
|
1706
1752
|
exclude: [] | undefined;
|
|
1707
|
-
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
1753
|
+
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
1708
1754
|
blockHash: `0x${string}` | null;
|
|
1709
1755
|
blockNumber: bigint | null;
|
|
1710
1756
|
from: import("abitype").Address;
|
|
@@ -1873,11 +1919,12 @@ declare const SUPPORTED_CHAINS: ({
|
|
|
1873
1919
|
};
|
|
1874
1920
|
readonly transactionReceipt: {
|
|
1875
1921
|
exclude: [] | undefined;
|
|
1876
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
1922
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
1877
1923
|
blobGasPrice?: bigint | undefined;
|
|
1878
1924
|
blobGasUsed?: bigint | undefined;
|
|
1879
1925
|
blockHash: import("viem").Hash;
|
|
1880
1926
|
blockNumber: bigint;
|
|
1927
|
+
blockTimestamp?: bigint | undefined;
|
|
1881
1928
|
contractAddress: import("abitype").Address | null | undefined;
|
|
1882
1929
|
cumulativeGasUsed: bigint;
|
|
1883
1930
|
effectiveGasPrice: bigint;
|
|
@@ -1899,9 +1946,17 @@ declare const SUPPORTED_CHAINS: ({
|
|
|
1899
1946
|
type: "transactionReceipt";
|
|
1900
1947
|
};
|
|
1901
1948
|
};
|
|
1949
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
1950
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
1951
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
1952
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
1953
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
1954
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
1955
|
+
}] | undefined;
|
|
1902
1956
|
serializers: {
|
|
1903
1957
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
1904
1958
|
};
|
|
1959
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
1905
1960
|
readonly blockchainId: "BASE";
|
|
1906
1961
|
readonly blockchainVm: "EVM";
|
|
1907
1962
|
} | {
|
|
@@ -2258,11 +2313,12 @@ declare const SUPPORTED_CHAINS: ({
|
|
|
2258
2313
|
sourceId: 11155111;
|
|
2259
2314
|
testnet: true;
|
|
2260
2315
|
custom?: Record<string, unknown> | undefined;
|
|
2316
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
2261
2317
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
2262
2318
|
formatters: {
|
|
2263
2319
|
readonly block: {
|
|
2264
2320
|
exclude: [] | undefined;
|
|
2265
|
-
format: (args: import("viem/chains").OpStackRpcBlock) => {
|
|
2321
|
+
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
2266
2322
|
baseFeePerGas: bigint | null;
|
|
2267
2323
|
blobGasUsed: bigint;
|
|
2268
2324
|
difficulty: bigint;
|
|
@@ -2295,7 +2351,7 @@ declare const SUPPORTED_CHAINS: ({
|
|
|
2295
2351
|
};
|
|
2296
2352
|
readonly transaction: {
|
|
2297
2353
|
exclude: [] | undefined;
|
|
2298
|
-
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
2354
|
+
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
2299
2355
|
blockHash: `0x${string}` | null;
|
|
2300
2356
|
blockNumber: bigint | null;
|
|
2301
2357
|
from: import("abitype").Address;
|
|
@@ -2464,11 +2520,12 @@ declare const SUPPORTED_CHAINS: ({
|
|
|
2464
2520
|
};
|
|
2465
2521
|
readonly transactionReceipt: {
|
|
2466
2522
|
exclude: [] | undefined;
|
|
2467
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
2523
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
2468
2524
|
blobGasPrice?: bigint | undefined;
|
|
2469
2525
|
blobGasUsed?: bigint | undefined;
|
|
2470
2526
|
blockHash: import("viem").Hash;
|
|
2471
2527
|
blockNumber: bigint;
|
|
2528
|
+
blockTimestamp?: bigint | undefined;
|
|
2472
2529
|
contractAddress: import("abitype").Address | null | undefined;
|
|
2473
2530
|
cumulativeGasUsed: bigint;
|
|
2474
2531
|
effectiveGasPrice: bigint;
|
|
@@ -2490,9 +2547,17 @@ declare const SUPPORTED_CHAINS: ({
|
|
|
2490
2547
|
type: "transactionReceipt";
|
|
2491
2548
|
};
|
|
2492
2549
|
};
|
|
2550
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
2551
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
2552
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
2553
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
2554
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
2555
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
2556
|
+
}] | undefined;
|
|
2493
2557
|
serializers: {
|
|
2494
2558
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
2495
2559
|
};
|
|
2560
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
2496
2561
|
readonly blockchainId: "BASE-SEPOLIA";
|
|
2497
2562
|
readonly blockchainVm: "EVM";
|
|
2498
2563
|
readonly network: "base-sepolia";
|
|
@@ -2955,8 +3020,17 @@ declare const SUPPORTED_CHAINS: ({
|
|
|
2955
3020
|
sourceId?: number | undefined | undefined;
|
|
2956
3021
|
testnet?: boolean | undefined | undefined;
|
|
2957
3022
|
custom?: Record<string, unknown> | undefined;
|
|
3023
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
2958
3024
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
3025
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3026
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3027
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3028
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3029
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
3030
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
3031
|
+
}] | undefined;
|
|
2959
3032
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
3033
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
2960
3034
|
readonly blockchainId: "ETH";
|
|
2961
3035
|
readonly blockchainVm: "EVM";
|
|
2962
3036
|
readonly formatters?: undefined | undefined;
|
|
@@ -3272,14 +3346,23 @@ declare const SUPPORTED_CHAINS: ({
|
|
|
3272
3346
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
3273
3347
|
rpcUrls: {
|
|
3274
3348
|
readonly default: {
|
|
3275
|
-
readonly http: readonly ["https://
|
|
3349
|
+
readonly http: readonly ["https://11155111.rpc.thirdweb.com"];
|
|
3276
3350
|
};
|
|
3277
3351
|
};
|
|
3278
3352
|
sourceId?: number | undefined | undefined;
|
|
3279
3353
|
testnet: true;
|
|
3280
3354
|
custom?: Record<string, unknown> | undefined;
|
|
3355
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
3281
3356
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
3357
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3358
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3359
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3360
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3361
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
3362
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
3363
|
+
}] | undefined;
|
|
3282
3364
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
3365
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
3283
3366
|
readonly blockchainId: "ETH-SEPOLIA";
|
|
3284
3367
|
readonly blockchainVm: "EVM";
|
|
3285
3368
|
readonly formatters?: undefined | undefined;
|
|
@@ -3288,10 +3371,10 @@ declare const SUPPORTED_CHAINS: ({
|
|
|
3288
3371
|
readonly default: {
|
|
3289
3372
|
readonly name: "PolygonScan";
|
|
3290
3373
|
readonly url: "https://polygonscan.com";
|
|
3291
|
-
readonly apiUrl: "https://api.
|
|
3374
|
+
readonly apiUrl: "https://api.etherscan.io/v2/api";
|
|
3292
3375
|
};
|
|
3293
3376
|
};
|
|
3294
|
-
blockTime
|
|
3377
|
+
blockTime: 2000;
|
|
3295
3378
|
contracts: {
|
|
3296
3379
|
readonly USDC: {
|
|
3297
3380
|
readonly address: "0x3c499c542cef5e3811e1192ce70d8cc03d5c3359";
|
|
@@ -3450,14 +3533,23 @@ declare const SUPPORTED_CHAINS: ({
|
|
|
3450
3533
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
3451
3534
|
rpcUrls: {
|
|
3452
3535
|
readonly default: {
|
|
3453
|
-
readonly http: readonly ["https://polygon
|
|
3536
|
+
readonly http: readonly ["https://polygon.drpc.org"];
|
|
3454
3537
|
};
|
|
3455
3538
|
};
|
|
3456
3539
|
sourceId?: number | undefined | undefined;
|
|
3457
3540
|
testnet?: boolean | undefined | undefined;
|
|
3458
3541
|
custom?: Record<string, unknown> | undefined;
|
|
3542
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
3459
3543
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
3544
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3545
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3546
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3547
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3548
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
3549
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
3550
|
+
}] | undefined;
|
|
3460
3551
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
3552
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
3461
3553
|
readonly blockchainId: "MATIC";
|
|
3462
3554
|
readonly blockchainVm: "EVM";
|
|
3463
3555
|
readonly formatters?: undefined | undefined;
|
|
@@ -3466,7 +3558,7 @@ declare const SUPPORTED_CHAINS: ({
|
|
|
3466
3558
|
readonly default: {
|
|
3467
3559
|
readonly name: "PolygonScan";
|
|
3468
3560
|
readonly url: "https://amoy.polygonscan.com";
|
|
3469
|
-
readonly apiUrl: "https://api
|
|
3561
|
+
readonly apiUrl: "https://api.etherscan.io/v2/api";
|
|
3470
3562
|
};
|
|
3471
3563
|
};
|
|
3472
3564
|
blockTime?: number | undefined | undefined;
|
|
@@ -3634,11 +3726,398 @@ declare const SUPPORTED_CHAINS: ({
|
|
|
3634
3726
|
sourceId?: number | undefined | undefined;
|
|
3635
3727
|
testnet: true;
|
|
3636
3728
|
custom?: Record<string, unknown> | undefined;
|
|
3729
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
3637
3730
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
3731
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3732
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3733
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3734
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3735
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
3736
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
3737
|
+
}] | undefined;
|
|
3638
3738
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
3739
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
3639
3740
|
readonly blockchainId: "MATIC-AMOY";
|
|
3640
3741
|
readonly blockchainVm: "EVM";
|
|
3641
3742
|
readonly formatters?: undefined | undefined;
|
|
3743
|
+
} | {
|
|
3744
|
+
blockExplorers: {
|
|
3745
|
+
readonly default: {
|
|
3746
|
+
readonly name: "MonadVision";
|
|
3747
|
+
readonly url: "https://monadvision.com";
|
|
3748
|
+
};
|
|
3749
|
+
readonly monadscan: {
|
|
3750
|
+
readonly name: "Monadscan";
|
|
3751
|
+
readonly url: "https://monadscan.com";
|
|
3752
|
+
readonly apiUrl: "https://api.monadscan.com/api";
|
|
3753
|
+
};
|
|
3754
|
+
};
|
|
3755
|
+
blockTime: 400;
|
|
3756
|
+
contracts: {
|
|
3757
|
+
readonly USDC: {
|
|
3758
|
+
readonly address: "0x754704Bc059F8C67012fEd69BC8A327a5aafb603";
|
|
3759
|
+
readonly abi: readonly [{
|
|
3760
|
+
readonly type: "event";
|
|
3761
|
+
readonly name: "Approval";
|
|
3762
|
+
readonly inputs: readonly [{
|
|
3763
|
+
readonly indexed: true;
|
|
3764
|
+
readonly name: "owner";
|
|
3765
|
+
readonly type: "address";
|
|
3766
|
+
}, {
|
|
3767
|
+
readonly indexed: true;
|
|
3768
|
+
readonly name: "spender";
|
|
3769
|
+
readonly type: "address";
|
|
3770
|
+
}, {
|
|
3771
|
+
readonly indexed: false;
|
|
3772
|
+
readonly name: "value";
|
|
3773
|
+
readonly type: "uint256";
|
|
3774
|
+
}];
|
|
3775
|
+
}, {
|
|
3776
|
+
readonly type: "event";
|
|
3777
|
+
readonly name: "Transfer";
|
|
3778
|
+
readonly inputs: readonly [{
|
|
3779
|
+
readonly indexed: true;
|
|
3780
|
+
readonly name: "from";
|
|
3781
|
+
readonly type: "address";
|
|
3782
|
+
}, {
|
|
3783
|
+
readonly indexed: true;
|
|
3784
|
+
readonly name: "to";
|
|
3785
|
+
readonly type: "address";
|
|
3786
|
+
}, {
|
|
3787
|
+
readonly indexed: false;
|
|
3788
|
+
readonly name: "value";
|
|
3789
|
+
readonly type: "uint256";
|
|
3790
|
+
}];
|
|
3791
|
+
}, {
|
|
3792
|
+
readonly type: "function";
|
|
3793
|
+
readonly name: "allowance";
|
|
3794
|
+
readonly stateMutability: "view";
|
|
3795
|
+
readonly inputs: readonly [{
|
|
3796
|
+
readonly name: "owner";
|
|
3797
|
+
readonly type: "address";
|
|
3798
|
+
}, {
|
|
3799
|
+
readonly name: "spender";
|
|
3800
|
+
readonly type: "address";
|
|
3801
|
+
}];
|
|
3802
|
+
readonly outputs: readonly [{
|
|
3803
|
+
readonly type: "uint256";
|
|
3804
|
+
}];
|
|
3805
|
+
}, {
|
|
3806
|
+
readonly type: "function";
|
|
3807
|
+
readonly name: "approve";
|
|
3808
|
+
readonly stateMutability: "nonpayable";
|
|
3809
|
+
readonly inputs: readonly [{
|
|
3810
|
+
readonly name: "spender";
|
|
3811
|
+
readonly type: "address";
|
|
3812
|
+
}, {
|
|
3813
|
+
readonly name: "amount";
|
|
3814
|
+
readonly type: "uint256";
|
|
3815
|
+
}];
|
|
3816
|
+
readonly outputs: readonly [{
|
|
3817
|
+
readonly type: "bool";
|
|
3818
|
+
}];
|
|
3819
|
+
}, {
|
|
3820
|
+
readonly type: "function";
|
|
3821
|
+
readonly name: "balanceOf";
|
|
3822
|
+
readonly stateMutability: "view";
|
|
3823
|
+
readonly inputs: readonly [{
|
|
3824
|
+
readonly name: "account";
|
|
3825
|
+
readonly type: "address";
|
|
3826
|
+
}];
|
|
3827
|
+
readonly outputs: readonly [{
|
|
3828
|
+
readonly type: "uint256";
|
|
3829
|
+
}];
|
|
3830
|
+
}, {
|
|
3831
|
+
readonly type: "function";
|
|
3832
|
+
readonly name: "decimals";
|
|
3833
|
+
readonly stateMutability: "view";
|
|
3834
|
+
readonly inputs: readonly [];
|
|
3835
|
+
readonly outputs: readonly [{
|
|
3836
|
+
readonly type: "uint8";
|
|
3837
|
+
}];
|
|
3838
|
+
}, {
|
|
3839
|
+
readonly type: "function";
|
|
3840
|
+
readonly name: "name";
|
|
3841
|
+
readonly stateMutability: "view";
|
|
3842
|
+
readonly inputs: readonly [];
|
|
3843
|
+
readonly outputs: readonly [{
|
|
3844
|
+
readonly type: "string";
|
|
3845
|
+
}];
|
|
3846
|
+
}, {
|
|
3847
|
+
readonly type: "function";
|
|
3848
|
+
readonly name: "symbol";
|
|
3849
|
+
readonly stateMutability: "view";
|
|
3850
|
+
readonly inputs: readonly [];
|
|
3851
|
+
readonly outputs: readonly [{
|
|
3852
|
+
readonly type: "string";
|
|
3853
|
+
}];
|
|
3854
|
+
}, {
|
|
3855
|
+
readonly type: "function";
|
|
3856
|
+
readonly name: "totalSupply";
|
|
3857
|
+
readonly stateMutability: "view";
|
|
3858
|
+
readonly inputs: readonly [];
|
|
3859
|
+
readonly outputs: readonly [{
|
|
3860
|
+
readonly type: "uint256";
|
|
3861
|
+
}];
|
|
3862
|
+
}, {
|
|
3863
|
+
readonly type: "function";
|
|
3864
|
+
readonly name: "transfer";
|
|
3865
|
+
readonly stateMutability: "nonpayable";
|
|
3866
|
+
readonly inputs: readonly [{
|
|
3867
|
+
readonly name: "recipient";
|
|
3868
|
+
readonly type: "address";
|
|
3869
|
+
}, {
|
|
3870
|
+
readonly name: "amount";
|
|
3871
|
+
readonly type: "uint256";
|
|
3872
|
+
}];
|
|
3873
|
+
readonly outputs: readonly [{
|
|
3874
|
+
readonly type: "bool";
|
|
3875
|
+
}];
|
|
3876
|
+
}, {
|
|
3877
|
+
readonly type: "function";
|
|
3878
|
+
readonly name: "transferFrom";
|
|
3879
|
+
readonly stateMutability: "nonpayable";
|
|
3880
|
+
readonly inputs: readonly [{
|
|
3881
|
+
readonly name: "sender";
|
|
3882
|
+
readonly type: "address";
|
|
3883
|
+
}, {
|
|
3884
|
+
readonly name: "recipient";
|
|
3885
|
+
readonly type: "address";
|
|
3886
|
+
}, {
|
|
3887
|
+
readonly name: "amount";
|
|
3888
|
+
readonly type: "uint256";
|
|
3889
|
+
}];
|
|
3890
|
+
readonly outputs: readonly [{
|
|
3891
|
+
readonly type: "bool";
|
|
3892
|
+
}];
|
|
3893
|
+
}];
|
|
3894
|
+
readonly read: {
|
|
3895
|
+
readonly decimals: () => 6;
|
|
3896
|
+
};
|
|
3897
|
+
};
|
|
3898
|
+
readonly multicall3: {
|
|
3899
|
+
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
3900
|
+
readonly blockCreated: 9248132;
|
|
3901
|
+
};
|
|
3902
|
+
};
|
|
3903
|
+
ensTlds?: readonly string[] | undefined;
|
|
3904
|
+
id: 143;
|
|
3905
|
+
name: "Monad";
|
|
3906
|
+
nativeCurrency: {
|
|
3907
|
+
readonly name: "Monad";
|
|
3908
|
+
readonly symbol: "MON";
|
|
3909
|
+
readonly decimals: 18;
|
|
3910
|
+
};
|
|
3911
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
3912
|
+
rpcUrls: {
|
|
3913
|
+
readonly default: {
|
|
3914
|
+
readonly http: readonly ["https://rpc.monad.xyz", "https://rpc1.monad.xyz"];
|
|
3915
|
+
readonly webSocket: readonly ["wss://rpc.monad.xyz", "wss://rpc1.monad.xyz"];
|
|
3916
|
+
};
|
|
3917
|
+
};
|
|
3918
|
+
sourceId?: number | undefined | undefined;
|
|
3919
|
+
testnet: false;
|
|
3920
|
+
custom?: Record<string, unknown> | undefined;
|
|
3921
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
3922
|
+
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
3923
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3924
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3925
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3926
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3927
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
3928
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
3929
|
+
}] | undefined;
|
|
3930
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
3931
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
3932
|
+
readonly blockchainId: "MONAD";
|
|
3933
|
+
readonly blockchainVm: "EVM";
|
|
3934
|
+
readonly formatters?: undefined | undefined;
|
|
3935
|
+
} | {
|
|
3936
|
+
blockExplorers: {
|
|
3937
|
+
readonly default: {
|
|
3938
|
+
readonly name: "Monad Testnet explorer";
|
|
3939
|
+
readonly url: "https://testnet.monadexplorer.com";
|
|
3940
|
+
};
|
|
3941
|
+
};
|
|
3942
|
+
blockTime: 400;
|
|
3943
|
+
contracts: {
|
|
3944
|
+
readonly USDC: {
|
|
3945
|
+
readonly address: "0x534b2f3A21130d7a60830c2Df862319e593943A3";
|
|
3946
|
+
readonly abi: readonly [{
|
|
3947
|
+
readonly type: "event";
|
|
3948
|
+
readonly name: "Approval";
|
|
3949
|
+
readonly inputs: readonly [{
|
|
3950
|
+
readonly indexed: true;
|
|
3951
|
+
readonly name: "owner";
|
|
3952
|
+
readonly type: "address";
|
|
3953
|
+
}, {
|
|
3954
|
+
readonly indexed: true;
|
|
3955
|
+
readonly name: "spender";
|
|
3956
|
+
readonly type: "address";
|
|
3957
|
+
}, {
|
|
3958
|
+
readonly indexed: false;
|
|
3959
|
+
readonly name: "value";
|
|
3960
|
+
readonly type: "uint256";
|
|
3961
|
+
}];
|
|
3962
|
+
}, {
|
|
3963
|
+
readonly type: "event";
|
|
3964
|
+
readonly name: "Transfer";
|
|
3965
|
+
readonly inputs: readonly [{
|
|
3966
|
+
readonly indexed: true;
|
|
3967
|
+
readonly name: "from";
|
|
3968
|
+
readonly type: "address";
|
|
3969
|
+
}, {
|
|
3970
|
+
readonly indexed: true;
|
|
3971
|
+
readonly name: "to";
|
|
3972
|
+
readonly type: "address";
|
|
3973
|
+
}, {
|
|
3974
|
+
readonly indexed: false;
|
|
3975
|
+
readonly name: "value";
|
|
3976
|
+
readonly type: "uint256";
|
|
3977
|
+
}];
|
|
3978
|
+
}, {
|
|
3979
|
+
readonly type: "function";
|
|
3980
|
+
readonly name: "allowance";
|
|
3981
|
+
readonly stateMutability: "view";
|
|
3982
|
+
readonly inputs: readonly [{
|
|
3983
|
+
readonly name: "owner";
|
|
3984
|
+
readonly type: "address";
|
|
3985
|
+
}, {
|
|
3986
|
+
readonly name: "spender";
|
|
3987
|
+
readonly type: "address";
|
|
3988
|
+
}];
|
|
3989
|
+
readonly outputs: readonly [{
|
|
3990
|
+
readonly type: "uint256";
|
|
3991
|
+
}];
|
|
3992
|
+
}, {
|
|
3993
|
+
readonly type: "function";
|
|
3994
|
+
readonly name: "approve";
|
|
3995
|
+
readonly stateMutability: "nonpayable";
|
|
3996
|
+
readonly inputs: readonly [{
|
|
3997
|
+
readonly name: "spender";
|
|
3998
|
+
readonly type: "address";
|
|
3999
|
+
}, {
|
|
4000
|
+
readonly name: "amount";
|
|
4001
|
+
readonly type: "uint256";
|
|
4002
|
+
}];
|
|
4003
|
+
readonly outputs: readonly [{
|
|
4004
|
+
readonly type: "bool";
|
|
4005
|
+
}];
|
|
4006
|
+
}, {
|
|
4007
|
+
readonly type: "function";
|
|
4008
|
+
readonly name: "balanceOf";
|
|
4009
|
+
readonly stateMutability: "view";
|
|
4010
|
+
readonly inputs: readonly [{
|
|
4011
|
+
readonly name: "account";
|
|
4012
|
+
readonly type: "address";
|
|
4013
|
+
}];
|
|
4014
|
+
readonly outputs: readonly [{
|
|
4015
|
+
readonly type: "uint256";
|
|
4016
|
+
}];
|
|
4017
|
+
}, {
|
|
4018
|
+
readonly type: "function";
|
|
4019
|
+
readonly name: "decimals";
|
|
4020
|
+
readonly stateMutability: "view";
|
|
4021
|
+
readonly inputs: readonly [];
|
|
4022
|
+
readonly outputs: readonly [{
|
|
4023
|
+
readonly type: "uint8";
|
|
4024
|
+
}];
|
|
4025
|
+
}, {
|
|
4026
|
+
readonly type: "function";
|
|
4027
|
+
readonly name: "name";
|
|
4028
|
+
readonly stateMutability: "view";
|
|
4029
|
+
readonly inputs: readonly [];
|
|
4030
|
+
readonly outputs: readonly [{
|
|
4031
|
+
readonly type: "string";
|
|
4032
|
+
}];
|
|
4033
|
+
}, {
|
|
4034
|
+
readonly type: "function";
|
|
4035
|
+
readonly name: "symbol";
|
|
4036
|
+
readonly stateMutability: "view";
|
|
4037
|
+
readonly inputs: readonly [];
|
|
4038
|
+
readonly outputs: readonly [{
|
|
4039
|
+
readonly type: "string";
|
|
4040
|
+
}];
|
|
4041
|
+
}, {
|
|
4042
|
+
readonly type: "function";
|
|
4043
|
+
readonly name: "totalSupply";
|
|
4044
|
+
readonly stateMutability: "view";
|
|
4045
|
+
readonly inputs: readonly [];
|
|
4046
|
+
readonly outputs: readonly [{
|
|
4047
|
+
readonly type: "uint256";
|
|
4048
|
+
}];
|
|
4049
|
+
}, {
|
|
4050
|
+
readonly type: "function";
|
|
4051
|
+
readonly name: "transfer";
|
|
4052
|
+
readonly stateMutability: "nonpayable";
|
|
4053
|
+
readonly inputs: readonly [{
|
|
4054
|
+
readonly name: "recipient";
|
|
4055
|
+
readonly type: "address";
|
|
4056
|
+
}, {
|
|
4057
|
+
readonly name: "amount";
|
|
4058
|
+
readonly type: "uint256";
|
|
4059
|
+
}];
|
|
4060
|
+
readonly outputs: readonly [{
|
|
4061
|
+
readonly type: "bool";
|
|
4062
|
+
}];
|
|
4063
|
+
}, {
|
|
4064
|
+
readonly type: "function";
|
|
4065
|
+
readonly name: "transferFrom";
|
|
4066
|
+
readonly stateMutability: "nonpayable";
|
|
4067
|
+
readonly inputs: readonly [{
|
|
4068
|
+
readonly name: "sender";
|
|
4069
|
+
readonly type: "address";
|
|
4070
|
+
}, {
|
|
4071
|
+
readonly name: "recipient";
|
|
4072
|
+
readonly type: "address";
|
|
4073
|
+
}, {
|
|
4074
|
+
readonly name: "amount";
|
|
4075
|
+
readonly type: "uint256";
|
|
4076
|
+
}];
|
|
4077
|
+
readonly outputs: readonly [{
|
|
4078
|
+
readonly type: "bool";
|
|
4079
|
+
}];
|
|
4080
|
+
}];
|
|
4081
|
+
readonly read: {
|
|
4082
|
+
readonly decimals: () => 6;
|
|
4083
|
+
};
|
|
4084
|
+
};
|
|
4085
|
+
readonly multicall3: {
|
|
4086
|
+
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
4087
|
+
readonly blockCreated: 251449;
|
|
4088
|
+
};
|
|
4089
|
+
};
|
|
4090
|
+
ensTlds?: readonly string[] | undefined;
|
|
4091
|
+
id: 10143;
|
|
4092
|
+
name: "Monad Testnet";
|
|
4093
|
+
nativeCurrency: {
|
|
4094
|
+
readonly name: "Testnet MON Token";
|
|
4095
|
+
readonly symbol: "MON";
|
|
4096
|
+
readonly decimals: 18;
|
|
4097
|
+
};
|
|
4098
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
4099
|
+
rpcUrls: {
|
|
4100
|
+
readonly default: {
|
|
4101
|
+
readonly http: readonly ["https://testnet-rpc.monad.xyz"];
|
|
4102
|
+
};
|
|
4103
|
+
};
|
|
4104
|
+
sourceId?: number | undefined | undefined;
|
|
4105
|
+
testnet: true;
|
|
4106
|
+
custom?: Record<string, unknown> | undefined;
|
|
4107
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
4108
|
+
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
4109
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
4110
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
4111
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
4112
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
4113
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
4114
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
4115
|
+
}] | undefined;
|
|
4116
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
4117
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
4118
|
+
readonly blockchainId: "MONAD-TESTNET";
|
|
4119
|
+
readonly blockchainVm: "EVM";
|
|
4120
|
+
readonly formatters?: undefined | undefined;
|
|
3642
4121
|
} | {
|
|
3643
4122
|
blockExplorers: {
|
|
3644
4123
|
readonly default: {
|
|
@@ -3657,7 +4136,7 @@ declare const SUPPORTED_CHAINS: ({
|
|
|
3657
4136
|
readonly ensRegistry?: import("viem").ChainContract | undefined;
|
|
3658
4137
|
readonly ensUniversalResolver?: import("viem").ChainContract | undefined;
|
|
3659
4138
|
readonly multicall3?: import("viem").ChainContract | undefined;
|
|
3660
|
-
readonly
|
|
4139
|
+
readonly erc6492Verifier?: import("viem").ChainContract | undefined;
|
|
3661
4140
|
};
|
|
3662
4141
|
ensTlds?: readonly string[] | undefined;
|
|
3663
4142
|
id: 397;
|
|
@@ -3676,8 +4155,17 @@ declare const SUPPORTED_CHAINS: ({
|
|
|
3676
4155
|
sourceId?: number | undefined | undefined;
|
|
3677
4156
|
testnet: false;
|
|
3678
4157
|
custom?: Record<string, unknown> | undefined;
|
|
4158
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
3679
4159
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
4160
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
4161
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
4162
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
4163
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
4164
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
4165
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
4166
|
+
}] | undefined;
|
|
3680
4167
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
4168
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
3681
4169
|
readonly blockchainId: "NEAR";
|
|
3682
4170
|
readonly blockchainVm: "NEAR";
|
|
3683
4171
|
readonly formatters?: undefined | undefined;
|
|
@@ -3699,7 +4187,7 @@ declare const SUPPORTED_CHAINS: ({
|
|
|
3699
4187
|
readonly ensRegistry?: import("viem").ChainContract | undefined;
|
|
3700
4188
|
readonly ensUniversalResolver?: import("viem").ChainContract | undefined;
|
|
3701
4189
|
readonly multicall3?: import("viem").ChainContract | undefined;
|
|
3702
|
-
readonly
|
|
4190
|
+
readonly erc6492Verifier?: import("viem").ChainContract | undefined;
|
|
3703
4191
|
};
|
|
3704
4192
|
ensTlds?: readonly string[] | undefined;
|
|
3705
4193
|
id: 398;
|
|
@@ -3718,8 +4206,17 @@ declare const SUPPORTED_CHAINS: ({
|
|
|
3718
4206
|
sourceId?: number | undefined | undefined;
|
|
3719
4207
|
testnet: true;
|
|
3720
4208
|
custom?: Record<string, unknown> | undefined;
|
|
4209
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
3721
4210
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
4211
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
4212
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
4213
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
4214
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
4215
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
4216
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
4217
|
+
}] | undefined;
|
|
3722
4218
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
4219
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
3723
4220
|
readonly blockchainId: "NEAR-TESTNET";
|
|
3724
4221
|
readonly blockchainVm: "NEAR";
|
|
3725
4222
|
readonly formatters?: undefined | undefined;
|
|
@@ -3934,11 +4431,12 @@ declare const SUPPORTED_CHAINS: ({
|
|
|
3934
4431
|
sourceId: 1;
|
|
3935
4432
|
testnet?: boolean | undefined | undefined;
|
|
3936
4433
|
custom?: Record<string, unknown> | undefined;
|
|
4434
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
3937
4435
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
3938
4436
|
formatters: {
|
|
3939
4437
|
readonly block: {
|
|
3940
4438
|
exclude: [] | undefined;
|
|
3941
|
-
format: (args: import("viem/chains").OpStackRpcBlock) => {
|
|
4439
|
+
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
3942
4440
|
baseFeePerGas: bigint | null;
|
|
3943
4441
|
blobGasUsed: bigint;
|
|
3944
4442
|
difficulty: bigint;
|
|
@@ -3971,7 +4469,7 @@ declare const SUPPORTED_CHAINS: ({
|
|
|
3971
4469
|
};
|
|
3972
4470
|
readonly transaction: {
|
|
3973
4471
|
exclude: [] | undefined;
|
|
3974
|
-
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
4472
|
+
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
3975
4473
|
blockHash: `0x${string}` | null;
|
|
3976
4474
|
blockNumber: bigint | null;
|
|
3977
4475
|
from: import("abitype").Address;
|
|
@@ -4140,11 +4638,12 @@ declare const SUPPORTED_CHAINS: ({
|
|
|
4140
4638
|
};
|
|
4141
4639
|
readonly transactionReceipt: {
|
|
4142
4640
|
exclude: [] | undefined;
|
|
4143
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
4641
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
4144
4642
|
blobGasPrice?: bigint | undefined;
|
|
4145
4643
|
blobGasUsed?: bigint | undefined;
|
|
4146
4644
|
blockHash: import("viem").Hash;
|
|
4147
4645
|
blockNumber: bigint;
|
|
4646
|
+
blockTimestamp?: bigint | undefined;
|
|
4148
4647
|
contractAddress: import("abitype").Address | null | undefined;
|
|
4149
4648
|
cumulativeGasUsed: bigint;
|
|
4150
4649
|
effectiveGasPrice: bigint;
|
|
@@ -4166,9 +4665,17 @@ declare const SUPPORTED_CHAINS: ({
|
|
|
4166
4665
|
type: "transactionReceipt";
|
|
4167
4666
|
};
|
|
4168
4667
|
};
|
|
4668
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
4669
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
4670
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
4671
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
4672
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
4673
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
4674
|
+
}] | undefined;
|
|
4169
4675
|
serializers: {
|
|
4170
4676
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
4171
4677
|
};
|
|
4678
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
4172
4679
|
readonly blockchainId: "OP";
|
|
4173
4680
|
readonly blockchainVm: "EVM";
|
|
4174
4681
|
} | {
|
|
@@ -4382,11 +4889,12 @@ declare const SUPPORTED_CHAINS: ({
|
|
|
4382
4889
|
sourceId: 11155111;
|
|
4383
4890
|
testnet: true;
|
|
4384
4891
|
custom?: Record<string, unknown> | undefined;
|
|
4892
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
4385
4893
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
4386
4894
|
formatters: {
|
|
4387
4895
|
readonly block: {
|
|
4388
4896
|
exclude: [] | undefined;
|
|
4389
|
-
format: (args: import("viem/chains").OpStackRpcBlock) => {
|
|
4897
|
+
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
4390
4898
|
baseFeePerGas: bigint | null;
|
|
4391
4899
|
blobGasUsed: bigint;
|
|
4392
4900
|
difficulty: bigint;
|
|
@@ -4419,7 +4927,7 @@ declare const SUPPORTED_CHAINS: ({
|
|
|
4419
4927
|
};
|
|
4420
4928
|
readonly transaction: {
|
|
4421
4929
|
exclude: [] | undefined;
|
|
4422
|
-
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
4930
|
+
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
4423
4931
|
blockHash: `0x${string}` | null;
|
|
4424
4932
|
blockNumber: bigint | null;
|
|
4425
4933
|
from: import("abitype").Address;
|
|
@@ -4588,11 +5096,12 @@ declare const SUPPORTED_CHAINS: ({
|
|
|
4588
5096
|
};
|
|
4589
5097
|
readonly transactionReceipt: {
|
|
4590
5098
|
exclude: [] | undefined;
|
|
4591
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
5099
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
4592
5100
|
blobGasPrice?: bigint | undefined;
|
|
4593
5101
|
blobGasUsed?: bigint | undefined;
|
|
4594
5102
|
blockHash: import("viem").Hash;
|
|
4595
5103
|
blockNumber: bigint;
|
|
5104
|
+
blockTimestamp?: bigint | undefined;
|
|
4596
5105
|
contractAddress: import("abitype").Address | null | undefined;
|
|
4597
5106
|
cumulativeGasUsed: bigint;
|
|
4598
5107
|
effectiveGasPrice: bigint;
|
|
@@ -4614,9 +5123,17 @@ declare const SUPPORTED_CHAINS: ({
|
|
|
4614
5123
|
type: "transactionReceipt";
|
|
4615
5124
|
};
|
|
4616
5125
|
};
|
|
5126
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
5127
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
5128
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
5129
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
5130
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
5131
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
5132
|
+
}] | undefined;
|
|
4617
5133
|
serializers: {
|
|
4618
5134
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
4619
5135
|
};
|
|
5136
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
4620
5137
|
readonly blockchainId: "OP-SEPOLIA";
|
|
4621
5138
|
readonly blockchainVm: "EVM";
|
|
4622
5139
|
} | {
|
|
@@ -4658,9 +5175,18 @@ declare const SUPPORTED_CHAINS: ({
|
|
|
4658
5175
|
sourceId?: number | undefined | undefined;
|
|
4659
5176
|
testnet?: boolean | undefined | undefined;
|
|
4660
5177
|
custom?: Record<string, unknown> | undefined;
|
|
5178
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
4661
5179
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
4662
5180
|
formatters?: undefined;
|
|
5181
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
5182
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
5183
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
5184
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
5185
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
5186
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
5187
|
+
}] | undefined;
|
|
4663
5188
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
5189
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
4664
5190
|
readonly blockchainId: "SOL";
|
|
4665
5191
|
readonly blockchainVm: "SVM";
|
|
4666
5192
|
} | {
|
|
@@ -4703,9 +5229,18 @@ declare const SUPPORTED_CHAINS: ({
|
|
|
4703
5229
|
sourceId?: number | undefined | undefined;
|
|
4704
5230
|
testnet: true;
|
|
4705
5231
|
custom?: Record<string, unknown> | undefined;
|
|
5232
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
4706
5233
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
4707
5234
|
formatters?: undefined;
|
|
5235
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
5236
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
5237
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
5238
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
5239
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
5240
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
5241
|
+
}] | undefined;
|
|
4708
5242
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
5243
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
4709
5244
|
readonly blockchainId: "SOL-DEVNET";
|
|
4710
5245
|
readonly blockchainVm: "SVM";
|
|
4711
5246
|
} | {
|
|
@@ -4716,7 +5251,7 @@ declare const SUPPORTED_CHAINS: ({
|
|
|
4716
5251
|
readonly apiUrl: "https://api.uniscan.xyz/api";
|
|
4717
5252
|
};
|
|
4718
5253
|
};
|
|
4719
|
-
blockTime:
|
|
5254
|
+
blockTime: 1000;
|
|
4720
5255
|
contracts: {
|
|
4721
5256
|
readonly USDC: {
|
|
4722
5257
|
readonly address: "0x078D782b760474a361dDA0AF3839290b0EF57AD6";
|
|
@@ -4914,11 +5449,12 @@ declare const SUPPORTED_CHAINS: ({
|
|
|
4914
5449
|
sourceId: 1;
|
|
4915
5450
|
testnet?: boolean | undefined | undefined;
|
|
4916
5451
|
custom?: Record<string, unknown> | undefined;
|
|
5452
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
4917
5453
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
4918
5454
|
formatters: {
|
|
4919
5455
|
readonly block: {
|
|
4920
5456
|
exclude: [] | undefined;
|
|
4921
|
-
format: (args: import("viem/chains").OpStackRpcBlock) => {
|
|
5457
|
+
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
4922
5458
|
baseFeePerGas: bigint | null;
|
|
4923
5459
|
blobGasUsed: bigint;
|
|
4924
5460
|
difficulty: bigint;
|
|
@@ -4951,7 +5487,7 @@ declare const SUPPORTED_CHAINS: ({
|
|
|
4951
5487
|
};
|
|
4952
5488
|
readonly transaction: {
|
|
4953
5489
|
exclude: [] | undefined;
|
|
4954
|
-
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
5490
|
+
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
4955
5491
|
blockHash: `0x${string}` | null;
|
|
4956
5492
|
blockNumber: bigint | null;
|
|
4957
5493
|
from: import("abitype").Address;
|
|
@@ -5120,11 +5656,12 @@ declare const SUPPORTED_CHAINS: ({
|
|
|
5120
5656
|
};
|
|
5121
5657
|
readonly transactionReceipt: {
|
|
5122
5658
|
exclude: [] | undefined;
|
|
5123
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
5659
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
5124
5660
|
blobGasPrice?: bigint | undefined;
|
|
5125
5661
|
blobGasUsed?: bigint | undefined;
|
|
5126
5662
|
blockHash: import("viem").Hash;
|
|
5127
5663
|
blockNumber: bigint;
|
|
5664
|
+
blockTimestamp?: bigint | undefined;
|
|
5128
5665
|
contractAddress: import("abitype").Address | null | undefined;
|
|
5129
5666
|
cumulativeGasUsed: bigint;
|
|
5130
5667
|
effectiveGasPrice: bigint;
|
|
@@ -5146,9 +5683,17 @@ declare const SUPPORTED_CHAINS: ({
|
|
|
5146
5683
|
type: "transactionReceipt";
|
|
5147
5684
|
};
|
|
5148
5685
|
};
|
|
5686
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
5687
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
5688
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
5689
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
5690
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
5691
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
5692
|
+
}] | undefined;
|
|
5149
5693
|
serializers: {
|
|
5150
5694
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
5151
5695
|
};
|
|
5696
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
5152
5697
|
readonly blockchainId: "UNI";
|
|
5153
5698
|
readonly blockchainVm: "EVM";
|
|
5154
5699
|
} | {
|
|
@@ -5159,7 +5704,7 @@ declare const SUPPORTED_CHAINS: ({
|
|
|
5159
5704
|
readonly apiUrl: "https://api-sepolia.uniscan.xyz/api";
|
|
5160
5705
|
};
|
|
5161
5706
|
};
|
|
5162
|
-
blockTime:
|
|
5707
|
+
blockTime: 1000;
|
|
5163
5708
|
contracts: {
|
|
5164
5709
|
readonly USDC: {
|
|
5165
5710
|
readonly address: "0x31d0220469e10c4E71834a79b1f276d740d3768F";
|
|
@@ -5357,11 +5902,12 @@ declare const SUPPORTED_CHAINS: ({
|
|
|
5357
5902
|
sourceId: 11155111;
|
|
5358
5903
|
testnet: true;
|
|
5359
5904
|
custom?: Record<string, unknown> | undefined;
|
|
5905
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
5360
5906
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
5361
5907
|
formatters: {
|
|
5362
5908
|
readonly block: {
|
|
5363
5909
|
exclude: [] | undefined;
|
|
5364
|
-
format: (args: import("viem/chains").OpStackRpcBlock) => {
|
|
5910
|
+
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
5365
5911
|
baseFeePerGas: bigint | null;
|
|
5366
5912
|
blobGasUsed: bigint;
|
|
5367
5913
|
difficulty: bigint;
|
|
@@ -5394,7 +5940,7 @@ declare const SUPPORTED_CHAINS: ({
|
|
|
5394
5940
|
};
|
|
5395
5941
|
readonly transaction: {
|
|
5396
5942
|
exclude: [] | undefined;
|
|
5397
|
-
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
5943
|
+
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
5398
5944
|
blockHash: `0x${string}` | null;
|
|
5399
5945
|
blockNumber: bigint | null;
|
|
5400
5946
|
from: import("abitype").Address;
|
|
@@ -5563,11 +6109,12 @@ declare const SUPPORTED_CHAINS: ({
|
|
|
5563
6109
|
};
|
|
5564
6110
|
readonly transactionReceipt: {
|
|
5565
6111
|
exclude: [] | undefined;
|
|
5566
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
6112
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
5567
6113
|
blobGasPrice?: bigint | undefined;
|
|
5568
6114
|
blobGasUsed?: bigint | undefined;
|
|
5569
6115
|
blockHash: import("viem").Hash;
|
|
5570
6116
|
blockNumber: bigint;
|
|
6117
|
+
blockTimestamp?: bigint | undefined;
|
|
5571
6118
|
contractAddress: import("abitype").Address | null | undefined;
|
|
5572
6119
|
cumulativeGasUsed: bigint;
|
|
5573
6120
|
effectiveGasPrice: bigint;
|
|
@@ -5589,9 +6136,17 @@ declare const SUPPORTED_CHAINS: ({
|
|
|
5589
6136
|
type: "transactionReceipt";
|
|
5590
6137
|
};
|
|
5591
6138
|
};
|
|
6139
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
6140
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
6141
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
6142
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
6143
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
6144
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
6145
|
+
}] | undefined;
|
|
5592
6146
|
serializers: {
|
|
5593
6147
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
5594
6148
|
};
|
|
6149
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
5595
6150
|
readonly blockchainId: "UNI-SEPOLIA";
|
|
5596
6151
|
readonly blockchainVm: "EVM";
|
|
5597
6152
|
})[];
|