@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
|
@@ -1390,8 +1390,17 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
1390
1390
|
sourceId?: number | undefined | undefined;
|
|
1391
1391
|
testnet: true;
|
|
1392
1392
|
custom?: Record<string, unknown> | undefined;
|
|
1393
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
1393
1394
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
1395
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
1396
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
1397
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
1398
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
1399
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
1400
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
1401
|
+
}] | undefined;
|
|
1394
1402
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
1403
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
1395
1404
|
readonly blockchainId: "ARB-SEPOLIA";
|
|
1396
1405
|
readonly blockchainVm: "EVM";
|
|
1397
1406
|
readonly formatters?: undefined | undefined;
|
|
@@ -2785,8 +2794,17 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
2785
2794
|
sourceId?: number | undefined | undefined;
|
|
2786
2795
|
testnet?: boolean | undefined | undefined;
|
|
2787
2796
|
custom?: Record<string, unknown> | undefined;
|
|
2797
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
2788
2798
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
2799
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
2800
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
2801
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
2802
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
2803
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
2804
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
2805
|
+
}] | undefined;
|
|
2789
2806
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
2807
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
2790
2808
|
readonly blockchainId: "ARB";
|
|
2791
2809
|
readonly blockchainVm: "EVM";
|
|
2792
2810
|
readonly formatters?: undefined | undefined;
|
|
@@ -4462,8 +4480,17 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
4462
4480
|
sourceId?: number | undefined | undefined;
|
|
4463
4481
|
testnet?: boolean | undefined | undefined;
|
|
4464
4482
|
custom?: Record<string, unknown> | undefined;
|
|
4483
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
4465
4484
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
4485
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
4486
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
4487
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
4488
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
4489
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
4490
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
4491
|
+
}] | undefined;
|
|
4466
4492
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
4493
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
4467
4494
|
readonly blockchainId: "AVAX";
|
|
4468
4495
|
readonly blockchainVm: "EVM";
|
|
4469
4496
|
readonly formatters?: undefined | undefined;
|
|
@@ -6038,11 +6065,12 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
6038
6065
|
sourceId: 11155111;
|
|
6039
6066
|
testnet: true;
|
|
6040
6067
|
custom?: Record<string, unknown> | undefined;
|
|
6068
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
6041
6069
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
6042
6070
|
formatters: {
|
|
6043
6071
|
readonly block: {
|
|
6044
6072
|
exclude: [] | undefined;
|
|
6045
|
-
format: (args: import("viem/chains").OpStackRpcBlock) => {
|
|
6073
|
+
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
6046
6074
|
baseFeePerGas: bigint | null;
|
|
6047
6075
|
blobGasUsed: bigint;
|
|
6048
6076
|
difficulty: bigint;
|
|
@@ -6075,7 +6103,7 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
6075
6103
|
};
|
|
6076
6104
|
readonly transaction: {
|
|
6077
6105
|
exclude: [] | undefined;
|
|
6078
|
-
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
6106
|
+
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
6079
6107
|
blockHash: `0x${string}` | null;
|
|
6080
6108
|
blockNumber: bigint | null;
|
|
6081
6109
|
from: import("abitype").Address;
|
|
@@ -6244,11 +6272,12 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
6244
6272
|
};
|
|
6245
6273
|
readonly transactionReceipt: {
|
|
6246
6274
|
exclude: [] | undefined;
|
|
6247
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
6275
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
6248
6276
|
blobGasPrice?: bigint | undefined;
|
|
6249
6277
|
blobGasUsed?: bigint | undefined;
|
|
6250
6278
|
blockHash: import("viem").Hash;
|
|
6251
6279
|
blockNumber: bigint;
|
|
6280
|
+
blockTimestamp?: bigint | undefined;
|
|
6252
6281
|
contractAddress: import("abitype").Address | null | undefined;
|
|
6253
6282
|
cumulativeGasUsed: bigint;
|
|
6254
6283
|
effectiveGasPrice: bigint;
|
|
@@ -6270,9 +6299,17 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
6270
6299
|
type: "transactionReceipt";
|
|
6271
6300
|
};
|
|
6272
6301
|
};
|
|
6302
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
6303
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
6304
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
6305
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
6306
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
6307
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
6308
|
+
}] | undefined;
|
|
6273
6309
|
serializers: {
|
|
6274
6310
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
6275
6311
|
};
|
|
6312
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
6276
6313
|
readonly blockchainId: "BASE-SEPOLIA";
|
|
6277
6314
|
readonly blockchainVm: "EVM";
|
|
6278
6315
|
readonly network: "base-sepolia";
|
|
@@ -7847,11 +7884,12 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
7847
7884
|
sourceId: 1;
|
|
7848
7885
|
testnet?: boolean | undefined | undefined;
|
|
7849
7886
|
custom?: Record<string, unknown> | undefined;
|
|
7887
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
7850
7888
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
7851
7889
|
formatters: {
|
|
7852
7890
|
readonly block: {
|
|
7853
7891
|
exclude: [] | undefined;
|
|
7854
|
-
format: (args: import("viem/chains").OpStackRpcBlock) => {
|
|
7892
|
+
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
7855
7893
|
baseFeePerGas: bigint | null;
|
|
7856
7894
|
blobGasUsed: bigint;
|
|
7857
7895
|
difficulty: bigint;
|
|
@@ -7884,7 +7922,7 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
7884
7922
|
};
|
|
7885
7923
|
readonly transaction: {
|
|
7886
7924
|
exclude: [] | undefined;
|
|
7887
|
-
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
7925
|
+
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
7888
7926
|
blockHash: `0x${string}` | null;
|
|
7889
7927
|
blockNumber: bigint | null;
|
|
7890
7928
|
from: import("abitype").Address;
|
|
@@ -8053,11 +8091,12 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
8053
8091
|
};
|
|
8054
8092
|
readonly transactionReceipt: {
|
|
8055
8093
|
exclude: [] | undefined;
|
|
8056
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
8094
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
8057
8095
|
blobGasPrice?: bigint | undefined;
|
|
8058
8096
|
blobGasUsed?: bigint | undefined;
|
|
8059
8097
|
blockHash: import("viem").Hash;
|
|
8060
8098
|
blockNumber: bigint;
|
|
8099
|
+
blockTimestamp?: bigint | undefined;
|
|
8061
8100
|
contractAddress: import("abitype").Address | null | undefined;
|
|
8062
8101
|
cumulativeGasUsed: bigint;
|
|
8063
8102
|
effectiveGasPrice: bigint;
|
|
@@ -8079,9 +8118,17 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
8079
8118
|
type: "transactionReceipt";
|
|
8080
8119
|
};
|
|
8081
8120
|
};
|
|
8121
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
8122
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
8123
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
8124
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
8125
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
8126
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
8127
|
+
}] | undefined;
|
|
8082
8128
|
serializers: {
|
|
8083
8129
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
8084
8130
|
};
|
|
8131
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
8085
8132
|
readonly blockchainId: "BASE";
|
|
8086
8133
|
readonly blockchainVm: "EVM";
|
|
8087
8134
|
}, {
|
|
@@ -9613,14 +9660,23 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
9613
9660
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
9614
9661
|
rpcUrls: {
|
|
9615
9662
|
readonly default: {
|
|
9616
|
-
readonly http: readonly ["https://
|
|
9663
|
+
readonly http: readonly ["https://11155111.rpc.thirdweb.com"];
|
|
9617
9664
|
};
|
|
9618
9665
|
};
|
|
9619
9666
|
sourceId?: number | undefined | undefined;
|
|
9620
9667
|
testnet: true;
|
|
9621
9668
|
custom?: Record<string, unknown> | undefined;
|
|
9669
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
9622
9670
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
9671
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
9672
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
9673
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
9674
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
9675
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
9676
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
9677
|
+
}] | undefined;
|
|
9623
9678
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
9679
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
9624
9680
|
readonly blockchainId: "ETH-SEPOLIA";
|
|
9625
9681
|
readonly blockchainVm: "EVM";
|
|
9626
9682
|
readonly formatters?: undefined | undefined;
|
|
@@ -11300,8 +11356,17 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
11300
11356
|
sourceId?: number | undefined | undefined;
|
|
11301
11357
|
testnet?: boolean | undefined | undefined;
|
|
11302
11358
|
custom?: Record<string, unknown> | undefined;
|
|
11359
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
11303
11360
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
11361
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
11362
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
11363
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
11364
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
11365
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
11366
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
11367
|
+
}] | undefined;
|
|
11304
11368
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
11369
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
11305
11370
|
readonly blockchainId: "ETH";
|
|
11306
11371
|
readonly blockchainVm: "EVM";
|
|
11307
11372
|
readonly formatters?: undefined | undefined;
|
|
@@ -12733,11 +12798,12 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
12733
12798
|
sourceId: 11155111;
|
|
12734
12799
|
testnet: true;
|
|
12735
12800
|
custom?: Record<string, unknown> | undefined;
|
|
12801
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
12736
12802
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
12737
12803
|
formatters: {
|
|
12738
12804
|
readonly block: {
|
|
12739
12805
|
exclude: [] | undefined;
|
|
12740
|
-
format: (args: import("viem/chains").OpStackRpcBlock) => {
|
|
12806
|
+
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
12741
12807
|
baseFeePerGas: bigint | null;
|
|
12742
12808
|
blobGasUsed: bigint;
|
|
12743
12809
|
difficulty: bigint;
|
|
@@ -12770,7 +12836,7 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
12770
12836
|
};
|
|
12771
12837
|
readonly transaction: {
|
|
12772
12838
|
exclude: [] | undefined;
|
|
12773
|
-
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
12839
|
+
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
12774
12840
|
blockHash: `0x${string}` | null;
|
|
12775
12841
|
blockNumber: bigint | null;
|
|
12776
12842
|
from: import("abitype").Address;
|
|
@@ -12939,11 +13005,12 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
12939
13005
|
};
|
|
12940
13006
|
readonly transactionReceipt: {
|
|
12941
13007
|
exclude: [] | undefined;
|
|
12942
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
13008
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
12943
13009
|
blobGasPrice?: bigint | undefined;
|
|
12944
13010
|
blobGasUsed?: bigint | undefined;
|
|
12945
13011
|
blockHash: import("viem").Hash;
|
|
12946
13012
|
blockNumber: bigint;
|
|
13013
|
+
blockTimestamp?: bigint | undefined;
|
|
12947
13014
|
contractAddress: import("abitype").Address | null | undefined;
|
|
12948
13015
|
cumulativeGasUsed: bigint;
|
|
12949
13016
|
effectiveGasPrice: bigint;
|
|
@@ -12965,9 +13032,17 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
12965
13032
|
type: "transactionReceipt";
|
|
12966
13033
|
};
|
|
12967
13034
|
};
|
|
13035
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
13036
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
13037
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
13038
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
13039
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
13040
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
13041
|
+
}] | undefined;
|
|
12968
13042
|
serializers: {
|
|
12969
13043
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
12970
13044
|
};
|
|
13045
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
12971
13046
|
readonly blockchainId: "OP-SEPOLIA";
|
|
12972
13047
|
readonly blockchainVm: "EVM";
|
|
12973
13048
|
}, {
|
|
@@ -14398,11 +14473,12 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
14398
14473
|
sourceId: 1;
|
|
14399
14474
|
testnet?: boolean | undefined | undefined;
|
|
14400
14475
|
custom?: Record<string, unknown> | undefined;
|
|
14476
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
14401
14477
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
14402
14478
|
formatters: {
|
|
14403
14479
|
readonly block: {
|
|
14404
14480
|
exclude: [] | undefined;
|
|
14405
|
-
format: (args: import("viem/chains").OpStackRpcBlock) => {
|
|
14481
|
+
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
14406
14482
|
baseFeePerGas: bigint | null;
|
|
14407
14483
|
blobGasUsed: bigint;
|
|
14408
14484
|
difficulty: bigint;
|
|
@@ -14435,7 +14511,7 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
14435
14511
|
};
|
|
14436
14512
|
readonly transaction: {
|
|
14437
14513
|
exclude: [] | undefined;
|
|
14438
|
-
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
14514
|
+
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
14439
14515
|
blockHash: `0x${string}` | null;
|
|
14440
14516
|
blockNumber: bigint | null;
|
|
14441
14517
|
from: import("abitype").Address;
|
|
@@ -14604,11 +14680,12 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
14604
14680
|
};
|
|
14605
14681
|
readonly transactionReceipt: {
|
|
14606
14682
|
exclude: [] | undefined;
|
|
14607
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
14683
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
14608
14684
|
blobGasPrice?: bigint | undefined;
|
|
14609
14685
|
blobGasUsed?: bigint | undefined;
|
|
14610
14686
|
blockHash: import("viem").Hash;
|
|
14611
14687
|
blockNumber: bigint;
|
|
14688
|
+
blockTimestamp?: bigint | undefined;
|
|
14612
14689
|
contractAddress: import("abitype").Address | null | undefined;
|
|
14613
14690
|
cumulativeGasUsed: bigint;
|
|
14614
14691
|
effectiveGasPrice: bigint;
|
|
@@ -14630,9 +14707,17 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
14630
14707
|
type: "transactionReceipt";
|
|
14631
14708
|
};
|
|
14632
14709
|
};
|
|
14710
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
14711
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
14712
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
14713
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
14714
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
14715
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
14716
|
+
}] | undefined;
|
|
14633
14717
|
serializers: {
|
|
14634
14718
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
14635
14719
|
};
|
|
14720
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
14636
14721
|
readonly blockchainId: "OP";
|
|
14637
14722
|
readonly blockchainVm: "EVM";
|
|
14638
14723
|
}, {
|
|
@@ -14640,10 +14725,10 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
14640
14725
|
readonly default: {
|
|
14641
14726
|
readonly name: "PolygonScan";
|
|
14642
14727
|
readonly url: "https://polygonscan.com";
|
|
14643
|
-
readonly apiUrl: "https://api.
|
|
14728
|
+
readonly apiUrl: "https://api.etherscan.io/v2/api";
|
|
14644
14729
|
};
|
|
14645
14730
|
};
|
|
14646
|
-
blockTime
|
|
14731
|
+
blockTime: 2000;
|
|
14647
14732
|
contracts: {
|
|
14648
14733
|
readonly UniswapV3Factory: {
|
|
14649
14734
|
readonly address: "0x1F98431c8aD98523631AE4a59f267346ea31F984";
|
|
@@ -16019,14 +16104,23 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
16019
16104
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
16020
16105
|
rpcUrls: {
|
|
16021
16106
|
readonly default: {
|
|
16022
|
-
readonly http: readonly ["https://polygon
|
|
16107
|
+
readonly http: readonly ["https://polygon.drpc.org"];
|
|
16023
16108
|
};
|
|
16024
16109
|
};
|
|
16025
16110
|
sourceId?: number | undefined | undefined;
|
|
16026
16111
|
testnet?: boolean | undefined | undefined;
|
|
16027
16112
|
custom?: Record<string, unknown> | undefined;
|
|
16113
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
16028
16114
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
16115
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
16116
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
16117
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
16118
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
16119
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
16120
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
16121
|
+
}] | undefined;
|
|
16029
16122
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
|
|
16123
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
16030
16124
|
readonly blockchainId: "MATIC";
|
|
16031
16125
|
readonly blockchainVm: "EVM";
|
|
16032
16126
|
readonly formatters?: undefined | undefined;
|
|
@@ -16038,7 +16132,7 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
16038
16132
|
readonly apiUrl: "https://api-sepolia.uniscan.xyz/api";
|
|
16039
16133
|
};
|
|
16040
16134
|
};
|
|
16041
|
-
blockTime:
|
|
16135
|
+
blockTime: 1000;
|
|
16042
16136
|
contracts: {
|
|
16043
16137
|
readonly UniswapV3Factory: {
|
|
16044
16138
|
readonly address: "0x1F98431c8aD98523631AE4a59f267346ea31F984";
|
|
@@ -17453,11 +17547,12 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
17453
17547
|
sourceId: 11155111;
|
|
17454
17548
|
testnet: true;
|
|
17455
17549
|
custom?: Record<string, unknown> | undefined;
|
|
17550
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
17456
17551
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
17457
17552
|
formatters: {
|
|
17458
17553
|
readonly block: {
|
|
17459
17554
|
exclude: [] | undefined;
|
|
17460
|
-
format: (args: import("viem/chains").OpStackRpcBlock) => {
|
|
17555
|
+
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
17461
17556
|
baseFeePerGas: bigint | null;
|
|
17462
17557
|
blobGasUsed: bigint;
|
|
17463
17558
|
difficulty: bigint;
|
|
@@ -17490,7 +17585,7 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
17490
17585
|
};
|
|
17491
17586
|
readonly transaction: {
|
|
17492
17587
|
exclude: [] | undefined;
|
|
17493
|
-
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
17588
|
+
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
17494
17589
|
blockHash: `0x${string}` | null;
|
|
17495
17590
|
blockNumber: bigint | null;
|
|
17496
17591
|
from: import("abitype").Address;
|
|
@@ -17659,11 +17754,12 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
17659
17754
|
};
|
|
17660
17755
|
readonly transactionReceipt: {
|
|
17661
17756
|
exclude: [] | undefined;
|
|
17662
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
17757
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
17663
17758
|
blobGasPrice?: bigint | undefined;
|
|
17664
17759
|
blobGasUsed?: bigint | undefined;
|
|
17665
17760
|
blockHash: import("viem").Hash;
|
|
17666
17761
|
blockNumber: bigint;
|
|
17762
|
+
blockTimestamp?: bigint | undefined;
|
|
17667
17763
|
contractAddress: import("abitype").Address | null | undefined;
|
|
17668
17764
|
cumulativeGasUsed: bigint;
|
|
17669
17765
|
effectiveGasPrice: bigint;
|
|
@@ -17685,9 +17781,17 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
17685
17781
|
type: "transactionReceipt";
|
|
17686
17782
|
};
|
|
17687
17783
|
};
|
|
17784
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
17785
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
17786
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
17787
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
17788
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
17789
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
17790
|
+
}] | undefined;
|
|
17688
17791
|
serializers: {
|
|
17689
17792
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
17690
17793
|
};
|
|
17794
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
17691
17795
|
readonly blockchainId: "UNI-SEPOLIA";
|
|
17692
17796
|
readonly blockchainVm: "EVM";
|
|
17693
17797
|
}, {
|
|
@@ -17698,7 +17802,7 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
17698
17802
|
readonly apiUrl: "https://api.uniscan.xyz/api";
|
|
17699
17803
|
};
|
|
17700
17804
|
};
|
|
17701
|
-
blockTime:
|
|
17805
|
+
blockTime: 1000;
|
|
17702
17806
|
contracts: {
|
|
17703
17807
|
readonly UniswapV3Factory: {
|
|
17704
17808
|
readonly address: "0x1f98400000000000000000000000000000000003";
|
|
@@ -19113,11 +19217,12 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
19113
19217
|
sourceId: 1;
|
|
19114
19218
|
testnet?: boolean | undefined | undefined;
|
|
19115
19219
|
custom?: Record<string, unknown> | undefined;
|
|
19220
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
19116
19221
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
19117
19222
|
formatters: {
|
|
19118
19223
|
readonly block: {
|
|
19119
19224
|
exclude: [] | undefined;
|
|
19120
|
-
format: (args: import("viem/chains").OpStackRpcBlock) => {
|
|
19225
|
+
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
19121
19226
|
baseFeePerGas: bigint | null;
|
|
19122
19227
|
blobGasUsed: bigint;
|
|
19123
19228
|
difficulty: bigint;
|
|
@@ -19150,7 +19255,7 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
19150
19255
|
};
|
|
19151
19256
|
readonly transaction: {
|
|
19152
19257
|
exclude: [] | undefined;
|
|
19153
|
-
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
19258
|
+
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
19154
19259
|
blockHash: `0x${string}` | null;
|
|
19155
19260
|
blockNumber: bigint | null;
|
|
19156
19261
|
from: import("abitype").Address;
|
|
@@ -19319,11 +19424,12 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
19319
19424
|
};
|
|
19320
19425
|
readonly transactionReceipt: {
|
|
19321
19426
|
exclude: [] | undefined;
|
|
19322
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
19427
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
19323
19428
|
blobGasPrice?: bigint | undefined;
|
|
19324
19429
|
blobGasUsed?: bigint | undefined;
|
|
19325
19430
|
blockHash: import("viem").Hash;
|
|
19326
19431
|
blockNumber: bigint;
|
|
19432
|
+
blockTimestamp?: bigint | undefined;
|
|
19327
19433
|
contractAddress: import("abitype").Address | null | undefined;
|
|
19328
19434
|
cumulativeGasUsed: bigint;
|
|
19329
19435
|
effectiveGasPrice: bigint;
|
|
@@ -19345,9 +19451,17 @@ export declare const SUPPORTED_CHAINS: readonly [{
|
|
|
19345
19451
|
type: "transactionReceipt";
|
|
19346
19452
|
};
|
|
19347
19453
|
};
|
|
19454
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
19455
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
19456
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
19457
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
19458
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
19459
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
19460
|
+
}] | undefined;
|
|
19348
19461
|
serializers: {
|
|
19349
19462
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
19350
19463
|
};
|
|
19464
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
19351
19465
|
readonly blockchainId: "UNI";
|
|
19352
19466
|
readonly blockchainVm: "EVM";
|
|
19353
19467
|
}];
|
|
@@ -8,6 +8,7 @@ export declare function getClient(client: Client & {
|
|
|
8
8
|
cacheTime: number;
|
|
9
9
|
ccipRead?: import("viem").ClientConfig["ccipRead"] | undefined;
|
|
10
10
|
chain: Chain | undefined;
|
|
11
|
+
dataSuffix?: import("viem").DataSuffix | undefined;
|
|
11
12
|
experimental_blockTag?: import("viem").BlockTag | undefined;
|
|
12
13
|
key: string;
|
|
13
14
|
name: string;
|
|
@@ -63,6 +64,13 @@ export declare function getClient(client: Client & {
|
|
|
63
64
|
Method: "eth_estimateGas";
|
|
64
65
|
Parameters: [transaction: import("viem").RpcTransactionRequest] | [transaction: import("viem").RpcTransactionRequest, block: import("viem").RpcBlockNumber | import("viem").BlockTag] | [transaction: import("viem").RpcTransactionRequest, block: import("viem").RpcBlockNumber | import("viem").BlockTag, stateOverride: import("viem").RpcStateOverride];
|
|
65
66
|
ReturnType: import("viem").Quantity;
|
|
67
|
+
}, {
|
|
68
|
+
Method: "eth_fillTransaction";
|
|
69
|
+
Parameters: [transaction: import("viem").RpcTransactionRequest];
|
|
70
|
+
ReturnType: {
|
|
71
|
+
raw: import("viem").Hex;
|
|
72
|
+
tx: import("viem").RpcTransaction;
|
|
73
|
+
};
|
|
66
74
|
}, {
|
|
67
75
|
Method: "eth_feeHistory";
|
|
68
76
|
Parameters: [blockCount: import("viem").Quantity, newestBlock: import("viem").RpcBlockNumber | import("viem").BlockTag, rewardPercentiles: number[] | undefined];
|
|
@@ -138,6 +146,10 @@ export declare function getClient(client: Client & {
|
|
|
138
146
|
Method: "eth_getTransactionByHash";
|
|
139
147
|
Parameters: [hash: import("viem").Hash];
|
|
140
148
|
ReturnType: import("viem").RpcTransaction | null;
|
|
149
|
+
}, {
|
|
150
|
+
Method: "eth_getTransactionBySenderAndNonce";
|
|
151
|
+
Parameters: [sender: import("viem").Address, nonce: import("viem").Quantity];
|
|
152
|
+
ReturnType: import("viem").RpcTransaction | null;
|
|
141
153
|
}, {
|
|
142
154
|
Method: "eth_getTransactionCount";
|
|
143
155
|
Parameters: [address: import("viem").Address, block: import("viem").RpcBlockNumber | import("viem").BlockTag | import("viem").RpcBlockIdentifier];
|
|
@@ -191,6 +203,10 @@ export declare function getClient(client: Client & {
|
|
|
191
203
|
Method: "eth_sendRawTransaction";
|
|
192
204
|
Parameters: [signedTransaction: import("viem").Hex];
|
|
193
205
|
ReturnType: import("viem").Hash;
|
|
206
|
+
}, {
|
|
207
|
+
Method: "eth_sendRawTransactionSync";
|
|
208
|
+
Parameters: [signedTransaction: import("viem").Hex] | [signedTransaction: import("viem").Hex, timeout: number];
|
|
209
|
+
ReturnType: import("viem").RpcTransactionReceipt;
|
|
194
210
|
}, {
|
|
195
211
|
Method: "eth_simulateV1";
|
|
196
212
|
Parameters: [{
|
|
@@ -232,6 +248,13 @@ export declare function getClient(client: Client & {
|
|
|
232
248
|
Method: "eth_estimateGas";
|
|
233
249
|
Parameters: [transaction: import("viem").RpcTransactionRequest] | [transaction: import("viem").RpcTransactionRequest, block: import("viem").RpcBlockNumber | import("viem").BlockTag] | [transaction: import("viem").RpcTransactionRequest, block: import("viem").RpcBlockNumber | import("viem").BlockTag, stateOverride: import("viem").RpcStateOverride];
|
|
234
250
|
ReturnType: import("viem").Quantity;
|
|
251
|
+
}, {
|
|
252
|
+
Method: "eth_fillTransaction";
|
|
253
|
+
Parameters: [transaction: import("viem").RpcTransactionRequest];
|
|
254
|
+
ReturnType: {
|
|
255
|
+
raw: import("viem").Hex;
|
|
256
|
+
tx: import("viem").RpcTransaction;
|
|
257
|
+
};
|
|
235
258
|
}, {
|
|
236
259
|
Method: "eth_requestAccounts";
|
|
237
260
|
Parameters?: undefined;
|
|
@@ -244,6 +267,10 @@ export declare function getClient(client: Client & {
|
|
|
244
267
|
Method: "eth_sendRawTransaction";
|
|
245
268
|
Parameters: [signedTransaction: import("viem").Hex];
|
|
246
269
|
ReturnType: import("viem").Hash;
|
|
270
|
+
}, {
|
|
271
|
+
Method: "eth_sendRawTransactionSync";
|
|
272
|
+
Parameters: [signedTransaction: import("viem").Hex] | [signedTransaction: import("viem").Hex, timeout: number];
|
|
273
|
+
ReturnType: import("viem").RpcTransactionReceipt;
|
|
247
274
|
}, {
|
|
248
275
|
Method: "eth_sign";
|
|
249
276
|
Parameters: [address: import("viem").Address, data: import("viem").Hex];
|
|
@@ -429,6 +456,7 @@ export declare function getClient(client: Client & {
|
|
|
429
456
|
cacheTime?: undefined;
|
|
430
457
|
ccipRead?: undefined;
|
|
431
458
|
chain?: undefined;
|
|
459
|
+
dataSuffix?: undefined;
|
|
432
460
|
experimental_blockTag?: undefined;
|
|
433
461
|
key?: undefined;
|
|
434
462
|
name?: undefined;
|
|
@@ -437,13 +465,14 @@ export declare function getClient(client: Client & {
|
|
|
437
465
|
transport?: undefined;
|
|
438
466
|
type?: undefined;
|
|
439
467
|
uid?: undefined;
|
|
440
|
-
} & import("viem").ExactPartial<Pick<import("viem").PublicActions<import("viem").Transport, Chain | undefined, import("viem").Account | undefined>, "call" | "createContractEventFilter" | "createEventFilter" | "estimateContractGas" | "estimateGas" | "getBlock" | "getBlockNumber" | "getChainId" | "getContractEvents" | "getEnsText" | "getFilterChanges" | "getGasPrice" | "getLogs" | "getTransaction" | "getTransactionCount" | "getTransactionReceipt" | "
|
|
468
|
+
} & import("viem").ExactPartial<Pick<import("viem").PublicActions<import("viem").Transport, Chain | undefined, import("viem").Account | undefined>, "prepareTransactionRequest" | "call" | "createContractEventFilter" | "createEventFilter" | "estimateContractGas" | "estimateGas" | "getBlock" | "getBlockNumber" | "getChainId" | "getContractEvents" | "getEnsText" | "getFilterChanges" | "getGasPrice" | "getLogs" | "getTransaction" | "getTransactionCount" | "getTransactionReceipt" | "readContract" | "sendRawTransaction" | "simulateContract" | "uninstallFilter" | "watchBlockNumber" | "watchContractEvent"> & Pick<import("viem").WalletActions<Chain | undefined, import("viem").Account | undefined>, "sendTransaction" | "writeContract">>>(fn: (client: Client<import("viem").Transport, Chain | undefined, import("viem").Account | undefined, undefined, {
|
|
441
469
|
[x: string]: unknown;
|
|
442
470
|
account?: undefined;
|
|
443
471
|
batch?: undefined;
|
|
444
472
|
cacheTime?: undefined;
|
|
445
473
|
ccipRead?: undefined;
|
|
446
474
|
chain?: undefined;
|
|
475
|
+
dataSuffix?: undefined;
|
|
447
476
|
experimental_blockTag?: undefined;
|
|
448
477
|
key?: undefined;
|
|
449
478
|
name?: undefined;
|