@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
|
@@ -256,8 +256,17 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
256
256
|
sourceId?: number | undefined | undefined;
|
|
257
257
|
testnet?: boolean | undefined | undefined;
|
|
258
258
|
custom?: Record<string, unknown> | undefined;
|
|
259
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
259
260
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
261
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
262
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
263
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
264
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
265
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
266
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
267
|
+
}] | undefined;
|
|
260
268
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
269
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
261
270
|
readonly domainId: 3;
|
|
262
271
|
readonly blockchainId: "ARB";
|
|
263
272
|
readonly blockchainVm: "EVM";
|
|
@@ -519,8 +528,17 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
519
528
|
sourceId?: number | undefined | undefined;
|
|
520
529
|
testnet: true;
|
|
521
530
|
custom?: Record<string, unknown> | undefined;
|
|
531
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
522
532
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
533
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
534
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
535
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
536
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
537
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
538
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
539
|
+
}] | undefined;
|
|
523
540
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
541
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
524
542
|
readonly domainId: 3;
|
|
525
543
|
readonly blockchainId: "ARB-SEPOLIA";
|
|
526
544
|
readonly blockchainVm: "EVM";
|
|
@@ -1064,8 +1082,17 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
1064
1082
|
sourceId?: number | undefined | undefined;
|
|
1065
1083
|
testnet?: boolean | undefined | undefined;
|
|
1066
1084
|
custom?: Record<string, unknown> | undefined;
|
|
1085
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
1067
1086
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
1087
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
1088
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
1089
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
1090
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
1091
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
1092
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
1093
|
+
}] | undefined;
|
|
1068
1094
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
1095
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
1069
1096
|
readonly domainId: 1;
|
|
1070
1097
|
readonly blockchainId: "AVAX";
|
|
1071
1098
|
readonly blockchainVm: "EVM";
|
|
@@ -1468,8 +1495,17 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
1468
1495
|
sourceId?: number | undefined | undefined;
|
|
1469
1496
|
testnet: true;
|
|
1470
1497
|
custom?: Record<string, unknown> | undefined;
|
|
1498
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
1471
1499
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
1500
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
1501
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
1502
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
1503
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
1504
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
1505
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
1506
|
+
}] | undefined;
|
|
1472
1507
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
1508
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
1473
1509
|
readonly domainId: 1;
|
|
1474
1510
|
readonly blockchainId: "AVAX-FUJI";
|
|
1475
1511
|
readonly blockchainVm: "EVM";
|
|
@@ -1912,11 +1948,12 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
1912
1948
|
sourceId: 1;
|
|
1913
1949
|
testnet?: boolean | undefined | undefined;
|
|
1914
1950
|
custom?: Record<string, unknown> | undefined;
|
|
1951
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
1915
1952
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
1916
1953
|
formatters: {
|
|
1917
1954
|
readonly block: {
|
|
1918
1955
|
exclude: [] | undefined;
|
|
1919
|
-
format: (args: import("viem/chains").OpStackRpcBlock) => {
|
|
1956
|
+
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
1920
1957
|
baseFeePerGas: bigint | null;
|
|
1921
1958
|
blobGasUsed: bigint;
|
|
1922
1959
|
difficulty: bigint;
|
|
@@ -1949,7 +1986,7 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
1949
1986
|
};
|
|
1950
1987
|
readonly transaction: {
|
|
1951
1988
|
exclude: [] | undefined;
|
|
1952
|
-
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
1989
|
+
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
1953
1990
|
blockHash: `0x${string}` | null;
|
|
1954
1991
|
blockNumber: bigint | null;
|
|
1955
1992
|
from: import("abitype").Address;
|
|
@@ -2118,11 +2155,12 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
2118
2155
|
};
|
|
2119
2156
|
readonly transactionReceipt: {
|
|
2120
2157
|
exclude: [] | undefined;
|
|
2121
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
2158
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
2122
2159
|
blobGasPrice?: bigint | undefined;
|
|
2123
2160
|
blobGasUsed?: bigint | undefined;
|
|
2124
2161
|
blockHash: import("viem").Hash;
|
|
2125
2162
|
blockNumber: bigint;
|
|
2163
|
+
blockTimestamp?: bigint | undefined;
|
|
2126
2164
|
contractAddress: import("abitype").Address | null | undefined;
|
|
2127
2165
|
cumulativeGasUsed: bigint;
|
|
2128
2166
|
effectiveGasPrice: bigint;
|
|
@@ -2144,9 +2182,17 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
2144
2182
|
type: "transactionReceipt";
|
|
2145
2183
|
};
|
|
2146
2184
|
};
|
|
2185
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
2186
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
2187
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
2188
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
2189
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
2190
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
2191
|
+
}] | undefined;
|
|
2147
2192
|
serializers: {
|
|
2148
2193
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
2149
2194
|
};
|
|
2195
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
2150
2196
|
readonly domainId: 6;
|
|
2151
2197
|
readonly blockchainId: "BASE";
|
|
2152
2198
|
readonly blockchainVm: "EVM";
|
|
@@ -2588,11 +2634,12 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
2588
2634
|
sourceId: 11155111;
|
|
2589
2635
|
testnet: true;
|
|
2590
2636
|
custom?: Record<string, unknown> | undefined;
|
|
2637
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
2591
2638
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
2592
2639
|
formatters: {
|
|
2593
2640
|
readonly block: {
|
|
2594
2641
|
exclude: [] | undefined;
|
|
2595
|
-
format: (args: import("viem/chains").OpStackRpcBlock) => {
|
|
2642
|
+
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
2596
2643
|
baseFeePerGas: bigint | null;
|
|
2597
2644
|
blobGasUsed: bigint;
|
|
2598
2645
|
difficulty: bigint;
|
|
@@ -2625,7 +2672,7 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
2625
2672
|
};
|
|
2626
2673
|
readonly transaction: {
|
|
2627
2674
|
exclude: [] | undefined;
|
|
2628
|
-
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
2675
|
+
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
2629
2676
|
blockHash: `0x${string}` | null;
|
|
2630
2677
|
blockNumber: bigint | null;
|
|
2631
2678
|
from: import("abitype").Address;
|
|
@@ -2794,11 +2841,12 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
2794
2841
|
};
|
|
2795
2842
|
readonly transactionReceipt: {
|
|
2796
2843
|
exclude: [] | undefined;
|
|
2797
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
2844
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
2798
2845
|
blobGasPrice?: bigint | undefined;
|
|
2799
2846
|
blobGasUsed?: bigint | undefined;
|
|
2800
2847
|
blockHash: import("viem").Hash;
|
|
2801
2848
|
blockNumber: bigint;
|
|
2849
|
+
blockTimestamp?: bigint | undefined;
|
|
2802
2850
|
contractAddress: import("abitype").Address | null | undefined;
|
|
2803
2851
|
cumulativeGasUsed: bigint;
|
|
2804
2852
|
effectiveGasPrice: bigint;
|
|
@@ -2820,9 +2868,17 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
2820
2868
|
type: "transactionReceipt";
|
|
2821
2869
|
};
|
|
2822
2870
|
};
|
|
2871
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
2872
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
2873
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
2874
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
2875
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
2876
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
2877
|
+
}] | undefined;
|
|
2823
2878
|
serializers: {
|
|
2824
2879
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
2825
2880
|
};
|
|
2881
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
2826
2882
|
readonly domainId: 6;
|
|
2827
2883
|
readonly blockchainId: "BASE-SEPOLIA";
|
|
2828
2884
|
readonly blockchainVm: "EVM";
|
|
@@ -3370,8 +3426,17 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
3370
3426
|
sourceId?: number | undefined | undefined;
|
|
3371
3427
|
testnet?: boolean | undefined | undefined;
|
|
3372
3428
|
custom?: Record<string, unknown> | undefined;
|
|
3429
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
3373
3430
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
3431
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3432
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3433
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3434
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3435
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
3436
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
3437
|
+
}] | undefined;
|
|
3374
3438
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
3439
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
3375
3440
|
readonly domainId: 0;
|
|
3376
3441
|
readonly blockchainId: "ETH";
|
|
3377
3442
|
readonly blockchainVm: "EVM";
|
|
@@ -3772,14 +3837,23 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
3772
3837
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
3773
3838
|
rpcUrls: {
|
|
3774
3839
|
readonly default: {
|
|
3775
|
-
readonly http: readonly ["https://
|
|
3840
|
+
readonly http: readonly ["https://11155111.rpc.thirdweb.com"];
|
|
3776
3841
|
};
|
|
3777
3842
|
};
|
|
3778
3843
|
sourceId?: number | undefined | undefined;
|
|
3779
3844
|
testnet: true;
|
|
3780
3845
|
custom?: Record<string, unknown> | undefined;
|
|
3846
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
3781
3847
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
3848
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3849
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3850
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3851
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3852
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
3853
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
3854
|
+
}] | undefined;
|
|
3782
3855
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
3856
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
3783
3857
|
readonly domainId: 0;
|
|
3784
3858
|
readonly blockchainId: "ETH-SEPOLIA";
|
|
3785
3859
|
readonly blockchainVm: "EVM";
|
|
@@ -3789,10 +3863,10 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
3789
3863
|
readonly default: {
|
|
3790
3864
|
readonly name: "PolygonScan";
|
|
3791
3865
|
readonly url: "https://polygonscan.com";
|
|
3792
|
-
readonly apiUrl: "https://api.
|
|
3866
|
+
readonly apiUrl: "https://api.etherscan.io/v2/api";
|
|
3793
3867
|
};
|
|
3794
3868
|
};
|
|
3795
|
-
blockTime
|
|
3869
|
+
blockTime: 2000;
|
|
3796
3870
|
contracts: {
|
|
3797
3871
|
readonly TokenMessenger: {
|
|
3798
3872
|
readonly address: "0x9daF8c91AEFAE50b9c0E69629D3F6Ca40cA3B3FE";
|
|
@@ -4035,14 +4109,23 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
4035
4109
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
4036
4110
|
rpcUrls: {
|
|
4037
4111
|
readonly default: {
|
|
4038
|
-
readonly http: readonly ["https://polygon
|
|
4112
|
+
readonly http: readonly ["https://polygon.drpc.org"];
|
|
4039
4113
|
};
|
|
4040
4114
|
};
|
|
4041
4115
|
sourceId?: number | undefined | undefined;
|
|
4042
4116
|
testnet?: boolean | undefined | undefined;
|
|
4043
4117
|
custom?: Record<string, unknown> | undefined;
|
|
4118
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
4044
4119
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
4120
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
4121
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
4122
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
4123
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
4124
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
4125
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
4126
|
+
}] | undefined;
|
|
4045
4127
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
4128
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
4046
4129
|
readonly domainId: 7;
|
|
4047
4130
|
readonly blockchainId: "MATIC";
|
|
4048
4131
|
readonly blockchainVm: "EVM";
|
|
@@ -4052,7 +4135,7 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
4052
4135
|
readonly default: {
|
|
4053
4136
|
readonly name: "PolygonScan";
|
|
4054
4137
|
readonly url: "https://amoy.polygonscan.com";
|
|
4055
|
-
readonly apiUrl: "https://api
|
|
4138
|
+
readonly apiUrl: "https://api.etherscan.io/v2/api";
|
|
4056
4139
|
};
|
|
4057
4140
|
};
|
|
4058
4141
|
blockTime?: number | undefined | undefined;
|
|
@@ -4304,8 +4387,17 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
4304
4387
|
sourceId?: number | undefined | undefined;
|
|
4305
4388
|
testnet: true;
|
|
4306
4389
|
custom?: Record<string, unknown> | undefined;
|
|
4390
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
4307
4391
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
4392
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
4393
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
4394
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
4395
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
4396
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
4397
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
4398
|
+
}] | undefined;
|
|
4308
4399
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
4400
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
4309
4401
|
readonly domainId: 7;
|
|
4310
4402
|
readonly blockchainId: "MATIC-AMOY";
|
|
4311
4403
|
readonly blockchainVm: "EVM";
|
|
@@ -4605,11 +4697,12 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
4605
4697
|
sourceId: 1;
|
|
4606
4698
|
testnet?: boolean | undefined | undefined;
|
|
4607
4699
|
custom?: Record<string, unknown> | undefined;
|
|
4700
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
4608
4701
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
4609
4702
|
formatters: {
|
|
4610
4703
|
readonly block: {
|
|
4611
4704
|
exclude: [] | undefined;
|
|
4612
|
-
format: (args: import("viem/chains").OpStackRpcBlock) => {
|
|
4705
|
+
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
4613
4706
|
baseFeePerGas: bigint | null;
|
|
4614
4707
|
blobGasUsed: bigint;
|
|
4615
4708
|
difficulty: bigint;
|
|
@@ -4642,7 +4735,7 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
4642
4735
|
};
|
|
4643
4736
|
readonly transaction: {
|
|
4644
4737
|
exclude: [] | undefined;
|
|
4645
|
-
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
4738
|
+
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
4646
4739
|
blockHash: `0x${string}` | null;
|
|
4647
4740
|
blockNumber: bigint | null;
|
|
4648
4741
|
from: import("abitype").Address;
|
|
@@ -4811,11 +4904,12 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
4811
4904
|
};
|
|
4812
4905
|
readonly transactionReceipt: {
|
|
4813
4906
|
exclude: [] | undefined;
|
|
4814
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
4907
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
4815
4908
|
blobGasPrice?: bigint | undefined;
|
|
4816
4909
|
blobGasUsed?: bigint | undefined;
|
|
4817
4910
|
blockHash: import("viem").Hash;
|
|
4818
4911
|
blockNumber: bigint;
|
|
4912
|
+
blockTimestamp?: bigint | undefined;
|
|
4819
4913
|
contractAddress: import("abitype").Address | null | undefined;
|
|
4820
4914
|
cumulativeGasUsed: bigint;
|
|
4821
4915
|
effectiveGasPrice: bigint;
|
|
@@ -4837,9 +4931,17 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
4837
4931
|
type: "transactionReceipt";
|
|
4838
4932
|
};
|
|
4839
4933
|
};
|
|
4934
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
4935
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
4936
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
4937
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
4938
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
4939
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
4940
|
+
}] | undefined;
|
|
4840
4941
|
serializers: {
|
|
4841
4942
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
4842
4943
|
};
|
|
4944
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
4843
4945
|
readonly domainId: 2;
|
|
4844
4946
|
readonly blockchainId: "OP";
|
|
4845
4947
|
readonly blockchainVm: "EVM";
|
|
@@ -5138,11 +5240,12 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
5138
5240
|
sourceId: 11155111;
|
|
5139
5241
|
testnet: true;
|
|
5140
5242
|
custom?: Record<string, unknown> | undefined;
|
|
5243
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
5141
5244
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
5142
5245
|
formatters: {
|
|
5143
5246
|
readonly block: {
|
|
5144
5247
|
exclude: [] | undefined;
|
|
5145
|
-
format: (args: import("viem/chains").OpStackRpcBlock) => {
|
|
5248
|
+
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
5146
5249
|
baseFeePerGas: bigint | null;
|
|
5147
5250
|
blobGasUsed: bigint;
|
|
5148
5251
|
difficulty: bigint;
|
|
@@ -5175,7 +5278,7 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
5175
5278
|
};
|
|
5176
5279
|
readonly transaction: {
|
|
5177
5280
|
exclude: [] | undefined;
|
|
5178
|
-
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
5281
|
+
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
5179
5282
|
blockHash: `0x${string}` | null;
|
|
5180
5283
|
blockNumber: bigint | null;
|
|
5181
5284
|
from: import("abitype").Address;
|
|
@@ -5344,11 +5447,12 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
5344
5447
|
};
|
|
5345
5448
|
readonly transactionReceipt: {
|
|
5346
5449
|
exclude: [] | undefined;
|
|
5347
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
5450
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
5348
5451
|
blobGasPrice?: bigint | undefined;
|
|
5349
5452
|
blobGasUsed?: bigint | undefined;
|
|
5350
5453
|
blockHash: import("viem").Hash;
|
|
5351
5454
|
blockNumber: bigint;
|
|
5455
|
+
blockTimestamp?: bigint | undefined;
|
|
5352
5456
|
contractAddress: import("abitype").Address | null | undefined;
|
|
5353
5457
|
cumulativeGasUsed: bigint;
|
|
5354
5458
|
effectiveGasPrice: bigint;
|
|
@@ -5370,9 +5474,17 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
5370
5474
|
type: "transactionReceipt";
|
|
5371
5475
|
};
|
|
5372
5476
|
};
|
|
5477
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
5478
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
5479
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
5480
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
5481
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
5482
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
5483
|
+
}] | undefined;
|
|
5373
5484
|
serializers: {
|
|
5374
5485
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
5375
5486
|
};
|
|
5487
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
5376
5488
|
readonly domainId: 2;
|
|
5377
5489
|
readonly blockchainId: "OP-SEPOLIA";
|
|
5378
5490
|
readonly blockchainVm: "EVM";
|
|
@@ -5384,7 +5496,7 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
5384
5496
|
readonly apiUrl: "https://api.uniscan.xyz/api";
|
|
5385
5497
|
};
|
|
5386
5498
|
};
|
|
5387
|
-
blockTime:
|
|
5499
|
+
blockTime: 1000;
|
|
5388
5500
|
contracts: {
|
|
5389
5501
|
readonly TokenMessenger: {
|
|
5390
5502
|
readonly address: "0x4e744b28E787c3aD0e810eD65A24461D4ac5a762";
|
|
@@ -5666,11 +5778,12 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
5666
5778
|
sourceId: 1;
|
|
5667
5779
|
testnet?: boolean | undefined | undefined;
|
|
5668
5780
|
custom?: Record<string, unknown> | undefined;
|
|
5781
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
5669
5782
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
5670
5783
|
formatters: {
|
|
5671
5784
|
readonly block: {
|
|
5672
5785
|
exclude: [] | undefined;
|
|
5673
|
-
format: (args: import("viem/chains").OpStackRpcBlock) => {
|
|
5786
|
+
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
5674
5787
|
baseFeePerGas: bigint | null;
|
|
5675
5788
|
blobGasUsed: bigint;
|
|
5676
5789
|
difficulty: bigint;
|
|
@@ -5703,7 +5816,7 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
5703
5816
|
};
|
|
5704
5817
|
readonly transaction: {
|
|
5705
5818
|
exclude: [] | undefined;
|
|
5706
|
-
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
5819
|
+
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
5707
5820
|
blockHash: `0x${string}` | null;
|
|
5708
5821
|
blockNumber: bigint | null;
|
|
5709
5822
|
from: import("abitype").Address;
|
|
@@ -5872,11 +5985,12 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
5872
5985
|
};
|
|
5873
5986
|
readonly transactionReceipt: {
|
|
5874
5987
|
exclude: [] | undefined;
|
|
5875
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
5988
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
5876
5989
|
blobGasPrice?: bigint | undefined;
|
|
5877
5990
|
blobGasUsed?: bigint | undefined;
|
|
5878
5991
|
blockHash: import("viem").Hash;
|
|
5879
5992
|
blockNumber: bigint;
|
|
5993
|
+
blockTimestamp?: bigint | undefined;
|
|
5880
5994
|
contractAddress: import("abitype").Address | null | undefined;
|
|
5881
5995
|
cumulativeGasUsed: bigint;
|
|
5882
5996
|
effectiveGasPrice: bigint;
|
|
@@ -5898,9 +6012,17 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
5898
6012
|
type: "transactionReceipt";
|
|
5899
6013
|
};
|
|
5900
6014
|
};
|
|
6015
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
6016
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
6017
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
6018
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
6019
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
6020
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
6021
|
+
}] | undefined;
|
|
5901
6022
|
serializers: {
|
|
5902
6023
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
5903
6024
|
};
|
|
6025
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
5904
6026
|
readonly domainId: 10;
|
|
5905
6027
|
readonly blockchainId: "UNI";
|
|
5906
6028
|
readonly blockchainVm: "EVM";
|
|
@@ -5912,7 +6034,7 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
5912
6034
|
readonly apiUrl: "https://api-sepolia.uniscan.xyz/api";
|
|
5913
6035
|
};
|
|
5914
6036
|
};
|
|
5915
|
-
blockTime:
|
|
6037
|
+
blockTime: 1000;
|
|
5916
6038
|
contracts: {
|
|
5917
6039
|
readonly TokenMessenger: {
|
|
5918
6040
|
readonly address: "0x8ed94B8dAd2Dc5453862ea5e316A8e71AAed9782";
|
|
@@ -6194,11 +6316,12 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
6194
6316
|
sourceId: 11155111;
|
|
6195
6317
|
testnet: true;
|
|
6196
6318
|
custom?: Record<string, unknown> | undefined;
|
|
6319
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
6197
6320
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
6198
6321
|
formatters: {
|
|
6199
6322
|
readonly block: {
|
|
6200
6323
|
exclude: [] | undefined;
|
|
6201
|
-
format: (args: import("viem/chains").OpStackRpcBlock) => {
|
|
6324
|
+
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
6202
6325
|
baseFeePerGas: bigint | null;
|
|
6203
6326
|
blobGasUsed: bigint;
|
|
6204
6327
|
difficulty: bigint;
|
|
@@ -6231,7 +6354,7 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
6231
6354
|
};
|
|
6232
6355
|
readonly transaction: {
|
|
6233
6356
|
exclude: [] | undefined;
|
|
6234
|
-
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
6357
|
+
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
6235
6358
|
blockHash: `0x${string}` | null;
|
|
6236
6359
|
blockNumber: bigint | null;
|
|
6237
6360
|
from: import("abitype").Address;
|
|
@@ -6400,11 +6523,12 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
6400
6523
|
};
|
|
6401
6524
|
readonly transactionReceipt: {
|
|
6402
6525
|
exclude: [] | undefined;
|
|
6403
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
6526
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
6404
6527
|
blobGasPrice?: bigint | undefined;
|
|
6405
6528
|
blobGasUsed?: bigint | undefined;
|
|
6406
6529
|
blockHash: import("viem").Hash;
|
|
6407
6530
|
blockNumber: bigint;
|
|
6531
|
+
blockTimestamp?: bigint | undefined;
|
|
6408
6532
|
contractAddress: import("abitype").Address | null | undefined;
|
|
6409
6533
|
cumulativeGasUsed: bigint;
|
|
6410
6534
|
effectiveGasPrice: bigint;
|
|
@@ -6426,9 +6550,17 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
6426
6550
|
type: "transactionReceipt";
|
|
6427
6551
|
};
|
|
6428
6552
|
};
|
|
6553
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
6554
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
6555
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
6556
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
6557
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
6558
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
6559
|
+
}] | undefined;
|
|
6429
6560
|
serializers: {
|
|
6430
6561
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
6431
6562
|
};
|
|
6563
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
6432
6564
|
readonly domainId: 10;
|
|
6433
6565
|
readonly blockchainId: "UNI-SEPOLIA";
|
|
6434
6566
|
readonly blockchainVm: "EVM";
|
|
@@ -38,9 +38,18 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
38
38
|
sourceId?: number | undefined | undefined;
|
|
39
39
|
testnet?: boolean | undefined | undefined;
|
|
40
40
|
custom?: Record<string, unknown> | undefined;
|
|
41
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
41
42
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
42
43
|
formatters?: undefined;
|
|
44
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
45
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
46
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
47
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
48
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
49
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
50
|
+
}] | undefined;
|
|
43
51
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
52
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
44
53
|
readonly blockchainId: "SOL";
|
|
45
54
|
readonly blockchainVm: "SVM";
|
|
46
55
|
}, {
|
|
@@ -83,9 +92,18 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
83
92
|
sourceId?: number | undefined | undefined;
|
|
84
93
|
testnet: true;
|
|
85
94
|
custom?: Record<string, unknown> | undefined;
|
|
95
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
86
96
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
87
97
|
formatters?: undefined;
|
|
98
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
99
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
100
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
101
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
102
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
103
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
104
|
+
}] | undefined;
|
|
88
105
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
106
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
89
107
|
readonly blockchainId: "SOL-DEVNET";
|
|
90
108
|
readonly blockchainVm: "SVM";
|
|
91
109
|
}];
|
|
@@ -1388,8 +1388,17 @@ export declare const chain: {
|
|
|
1388
1388
|
sourceId?: number | undefined | undefined;
|
|
1389
1389
|
testnet?: boolean | undefined | undefined;
|
|
1390
1390
|
custom?: Record<string, unknown> | undefined;
|
|
1391
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
1391
1392
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
1393
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
1394
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
1395
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
1396
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
1397
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
1398
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
1399
|
+
}] | undefined;
|
|
1392
1400
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
1401
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
1393
1402
|
readonly blockchainId: "ARB";
|
|
1394
1403
|
readonly blockchainVm: "EVM";
|
|
1395
1404
|
readonly formatters?: undefined | undefined;
|
|
@@ -1388,8 +1388,17 @@ export declare const chain: {
|
|
|
1388
1388
|
sourceId?: number | undefined | undefined;
|
|
1389
1389
|
testnet: true;
|
|
1390
1390
|
custom?: Record<string, unknown> | undefined;
|
|
1391
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
1391
1392
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
1393
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
1394
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
1395
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
1396
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
1397
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
1398
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
1399
|
+
}] | undefined;
|
|
1392
1400
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
1401
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
1393
1402
|
readonly blockchainId: "ARB-SEPOLIA";
|
|
1394
1403
|
readonly blockchainVm: "EVM";
|
|
1395
1404
|
readonly formatters?: undefined | undefined;
|
|
@@ -1670,8 +1670,17 @@ export declare const chain: {
|
|
|
1670
1670
|
sourceId?: number | undefined | undefined;
|
|
1671
1671
|
testnet?: boolean | undefined | undefined;
|
|
1672
1672
|
custom?: Record<string, unknown> | undefined;
|
|
1673
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
1673
1674
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
1675
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
1676
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
1677
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
1678
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
1679
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
1680
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
1681
|
+
}] | undefined;
|
|
1674
1682
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
1683
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
1675
1684
|
readonly blockchainId: "AVAX";
|
|
1676
1685
|
readonly blockchainVm: "EVM";
|
|
1677
1686
|
readonly formatters?: undefined | undefined;
|