@circle-fin/usdckit 0.24.1 → 0.25.1

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.
Files changed (120) hide show
  1. package/dist/cjs/chains/ARB.d.ts +9 -0
  2. package/dist/cjs/chains/ARB_SEPOLIA.d.ts +9 -0
  3. package/dist/cjs/chains/ARC_TESTNET.d.ts +9 -0
  4. package/dist/cjs/chains/AVAX.d.ts +9 -0
  5. package/dist/cjs/chains/AVAX_FUJI.d.ts +9 -0
  6. package/dist/cjs/chains/BASE.d.ts +13 -3
  7. package/dist/cjs/chains/BASE_SEPOLIA.d.ts +13 -3
  8. package/dist/cjs/chains/ETH.d.ts +9 -0
  9. package/dist/cjs/chains/ETH_SEPOLIA.d.ts +9 -0
  10. package/dist/cjs/chains/MATIC.d.ts +11 -2
  11. package/dist/cjs/chains/MATIC_AMOY.d.ts +10 -1
  12. package/dist/cjs/chains/MONAD.d.ts +9 -0
  13. package/dist/cjs/chains/MONAD_TESTNET.d.ts +9 -0
  14. package/dist/cjs/chains/NEAR.d.ts +9 -0
  15. package/dist/cjs/chains/NEAR_TESTNET.d.ts +9 -0
  16. package/dist/cjs/chains/OP.d.ts +13 -3
  17. package/dist/cjs/chains/OP_SEPOLIA.d.ts +13 -3
  18. package/dist/cjs/chains/SOL.d.ts +9 -0
  19. package/dist/cjs/chains/SOL_DEVNET.d.ts +9 -0
  20. package/dist/cjs/chains/UNI.d.ts +13 -3
  21. package/dist/cjs/chains/UNI_SEPOLIA.d.ts +13 -3
  22. package/dist/cjs/extractChain.d.ts +216 -21
  23. package/dist/cjs/metadata.js +1 -1
  24. package/dist/cjs/providers/circle-wallets/actions/createAccount.d.ts +180 -21
  25. package/dist/cjs/providers/circle-wallets/actions/getAccounts.d.ts +180 -21
  26. package/dist/cjs/providers/circle-wallets/index.d.ts +597 -52
  27. package/dist/cjs/providers/circle-wallets/index.js +1 -0
  28. package/dist/cjs/providers/circle-wallets/transports/index.js +39 -9
  29. package/dist/cjs/providers/circle-wallets/transports/index.test.js +117 -67
  30. package/dist/cjs/providers/cross-chain-transfer-protocol/chains/ARB.d.ts +9 -0
  31. package/dist/cjs/providers/cross-chain-transfer-protocol/chains/ARB_SEPOLIA.d.ts +9 -0
  32. package/dist/cjs/providers/cross-chain-transfer-protocol/chains/AVAX.d.ts +9 -0
  33. package/dist/cjs/providers/cross-chain-transfer-protocol/chains/AVAX_FUJI.d.ts +9 -0
  34. package/dist/cjs/providers/cross-chain-transfer-protocol/chains/BASE.d.ts +13 -3
  35. package/dist/cjs/providers/cross-chain-transfer-protocol/chains/BASE_SEPOLIA.d.ts +13 -3
  36. package/dist/cjs/providers/cross-chain-transfer-protocol/chains/ETH.d.ts +9 -0
  37. package/dist/cjs/providers/cross-chain-transfer-protocol/chains/ETH_SEPOLIA.d.ts +9 -0
  38. package/dist/cjs/providers/cross-chain-transfer-protocol/chains/MATIC.d.ts +11 -2
  39. package/dist/cjs/providers/cross-chain-transfer-protocol/chains/MATIC_AMOY.d.ts +10 -1
  40. package/dist/cjs/providers/cross-chain-transfer-protocol/chains/OP.d.ts +13 -3
  41. package/dist/cjs/providers/cross-chain-transfer-protocol/chains/OP_SEPOLIA.d.ts +13 -3
  42. package/dist/cjs/providers/cross-chain-transfer-protocol/chains/UNI.d.ts +13 -3
  43. package/dist/cjs/providers/cross-chain-transfer-protocol/chains/UNI_SEPOLIA.d.ts +13 -3
  44. package/dist/cjs/providers/cross-chain-transfer-protocol/index.d.ts +153 -21
  45. package/dist/cjs/providers/solana/index.d.ts +18 -0
  46. package/dist/cjs/providers/uniswap/chains/ARB.d.ts +9 -0
  47. package/dist/cjs/providers/uniswap/chains/ARB_SEPOLIA.d.ts +9 -0
  48. package/dist/cjs/providers/uniswap/chains/AVAX.d.ts +9 -0
  49. package/dist/cjs/providers/uniswap/chains/BASE.d.ts +13 -3
  50. package/dist/cjs/providers/uniswap/chains/BASE_SEPOLIA.d.ts +13 -3
  51. package/dist/cjs/providers/uniswap/chains/ETH.d.ts +9 -0
  52. package/dist/cjs/providers/uniswap/chains/ETH_SEPOLIA.d.ts +9 -0
  53. package/dist/cjs/providers/uniswap/chains/MATIC.d.ts +11 -2
  54. package/dist/cjs/providers/uniswap/chains/OP.d.ts +13 -3
  55. package/dist/cjs/providers/uniswap/chains/OP_SEPOLIA.d.ts +13 -3
  56. package/dist/cjs/providers/uniswap/chains/UNI.d.ts +13 -3
  57. package/dist/cjs/providers/uniswap/chains/UNI_SEPOLIA.d.ts +13 -3
  58. package/dist/cjs/providers/uniswap/index.d.ts +134 -20
  59. package/dist/cjs/utils/getClient.d.ts +6 -3
  60. package/dist/cjs/utils/getContract.d.ts +16 -16
  61. package/dist/esm/chains/ARB.d.ts +9 -0
  62. package/dist/esm/chains/ARB_SEPOLIA.d.ts +9 -0
  63. package/dist/esm/chains/ARC_TESTNET.d.ts +9 -0
  64. package/dist/esm/chains/AVAX.d.ts +9 -0
  65. package/dist/esm/chains/AVAX_FUJI.d.ts +9 -0
  66. package/dist/esm/chains/BASE.d.ts +13 -3
  67. package/dist/esm/chains/BASE_SEPOLIA.d.ts +13 -3
  68. package/dist/esm/chains/ETH.d.ts +9 -0
  69. package/dist/esm/chains/ETH_SEPOLIA.d.ts +9 -0
  70. package/dist/esm/chains/MATIC.d.ts +11 -2
  71. package/dist/esm/chains/MATIC_AMOY.d.ts +10 -1
  72. package/dist/esm/chains/MONAD.d.ts +9 -0
  73. package/dist/esm/chains/MONAD_TESTNET.d.ts +9 -0
  74. package/dist/esm/chains/NEAR.d.ts +9 -0
  75. package/dist/esm/chains/NEAR_TESTNET.d.ts +9 -0
  76. package/dist/esm/chains/OP.d.ts +13 -3
  77. package/dist/esm/chains/OP_SEPOLIA.d.ts +13 -3
  78. package/dist/esm/chains/SOL.d.ts +9 -0
  79. package/dist/esm/chains/SOL_DEVNET.d.ts +9 -0
  80. package/dist/esm/chains/UNI.d.ts +13 -3
  81. package/dist/esm/chains/UNI_SEPOLIA.d.ts +13 -3
  82. package/dist/esm/extractChain.d.ts +216 -21
  83. package/dist/esm/metadata.js +1 -1
  84. package/dist/esm/providers/circle-wallets/actions/createAccount.d.ts +180 -21
  85. package/dist/esm/providers/circle-wallets/actions/getAccounts.d.ts +180 -21
  86. package/dist/esm/providers/circle-wallets/index.d.ts +597 -52
  87. package/dist/esm/providers/circle-wallets/index.js +1 -0
  88. package/dist/esm/providers/circle-wallets/transports/index.js +39 -9
  89. package/dist/esm/providers/circle-wallets/transports/index.test.js +117 -67
  90. package/dist/esm/providers/cross-chain-transfer-protocol/chains/ARB.d.ts +9 -0
  91. package/dist/esm/providers/cross-chain-transfer-protocol/chains/ARB_SEPOLIA.d.ts +9 -0
  92. package/dist/esm/providers/cross-chain-transfer-protocol/chains/AVAX.d.ts +9 -0
  93. package/dist/esm/providers/cross-chain-transfer-protocol/chains/AVAX_FUJI.d.ts +9 -0
  94. package/dist/esm/providers/cross-chain-transfer-protocol/chains/BASE.d.ts +13 -3
  95. package/dist/esm/providers/cross-chain-transfer-protocol/chains/BASE_SEPOLIA.d.ts +13 -3
  96. package/dist/esm/providers/cross-chain-transfer-protocol/chains/ETH.d.ts +9 -0
  97. package/dist/esm/providers/cross-chain-transfer-protocol/chains/ETH_SEPOLIA.d.ts +9 -0
  98. package/dist/esm/providers/cross-chain-transfer-protocol/chains/MATIC.d.ts +11 -2
  99. package/dist/esm/providers/cross-chain-transfer-protocol/chains/MATIC_AMOY.d.ts +10 -1
  100. package/dist/esm/providers/cross-chain-transfer-protocol/chains/OP.d.ts +13 -3
  101. package/dist/esm/providers/cross-chain-transfer-protocol/chains/OP_SEPOLIA.d.ts +13 -3
  102. package/dist/esm/providers/cross-chain-transfer-protocol/chains/UNI.d.ts +13 -3
  103. package/dist/esm/providers/cross-chain-transfer-protocol/chains/UNI_SEPOLIA.d.ts +13 -3
  104. package/dist/esm/providers/cross-chain-transfer-protocol/index.d.ts +153 -21
  105. package/dist/esm/providers/solana/index.d.ts +18 -0
  106. package/dist/esm/providers/uniswap/chains/ARB.d.ts +9 -0
  107. package/dist/esm/providers/uniswap/chains/ARB_SEPOLIA.d.ts +9 -0
  108. package/dist/esm/providers/uniswap/chains/AVAX.d.ts +9 -0
  109. package/dist/esm/providers/uniswap/chains/BASE.d.ts +13 -3
  110. package/dist/esm/providers/uniswap/chains/BASE_SEPOLIA.d.ts +13 -3
  111. package/dist/esm/providers/uniswap/chains/ETH.d.ts +9 -0
  112. package/dist/esm/providers/uniswap/chains/ETH_SEPOLIA.d.ts +9 -0
  113. package/dist/esm/providers/uniswap/chains/MATIC.d.ts +11 -2
  114. package/dist/esm/providers/uniswap/chains/OP.d.ts +13 -3
  115. package/dist/esm/providers/uniswap/chains/OP_SEPOLIA.d.ts +13 -3
  116. package/dist/esm/providers/uniswap/chains/UNI.d.ts +13 -3
  117. package/dist/esm/providers/uniswap/chains/UNI_SEPOLIA.d.ts +13 -3
  118. package/dist/esm/providers/uniswap/index.d.ts +134 -20
  119. package/dist/esm/utils/getClient.d.ts +6 -3
  120. package/package.json +3 -3
@@ -174,8 +174,17 @@ export declare const SUPPORTED_CHAINS: readonly [{
174
174
  sourceId?: number | undefined | undefined;
175
175
  testnet?: boolean | undefined | undefined;
176
176
  custom?: Record<string, unknown> | undefined;
177
+ extendSchema?: Record<string, unknown> | undefined;
177
178
  fees?: import("viem").ChainFees<undefined> | undefined;
179
+ prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
180
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
181
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
182
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
183
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
184
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
185
+ }] | undefined;
178
186
  serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
187
+ verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
179
188
  readonly blockchainId: "ARB";
180
189
  readonly blockchainVm: "EVM";
181
190
  readonly formatters?: undefined | undefined;
@@ -352,8 +361,17 @@ export declare const SUPPORTED_CHAINS: readonly [{
352
361
  sourceId?: number | undefined | undefined;
353
362
  testnet: true;
354
363
  custom?: Record<string, unknown> | undefined;
364
+ extendSchema?: Record<string, unknown> | undefined;
355
365
  fees?: import("viem").ChainFees<undefined> | undefined;
366
+ prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
367
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
368
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
369
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
370
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
371
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
372
+ }] | undefined;
356
373
  serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
374
+ verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
357
375
  readonly blockchainId: "ARB-SEPOLIA";
358
376
  readonly blockchainVm: "EVM";
359
377
  readonly formatters?: undefined | undefined;
@@ -531,8 +549,17 @@ export declare const SUPPORTED_CHAINS: readonly [{
531
549
  sourceId?: number | undefined | undefined;
532
550
  testnet: true;
533
551
  custom?: Record<string, unknown> | undefined;
552
+ extendSchema?: Record<string, unknown> | undefined;
534
553
  fees?: import("viem").ChainFees<undefined> | undefined;
554
+ prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
555
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
556
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
557
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
558
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
559
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
560
+ }] | undefined;
535
561
  serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
562
+ verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
536
563
  readonly blockchainId: "ARC-TESTNET";
537
564
  readonly blockchainVm: "EVM";
538
565
  readonly formatters?: undefined | undefined;
@@ -991,8 +1018,17 @@ export declare const SUPPORTED_CHAINS: readonly [{
991
1018
  sourceId?: number | undefined | undefined;
992
1019
  testnet?: boolean | undefined | undefined;
993
1020
  custom?: Record<string, unknown> | undefined;
1021
+ extendSchema?: Record<string, unknown> | undefined;
994
1022
  fees?: import("viem").ChainFees<undefined> | undefined;
1023
+ prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
1024
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
1025
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
1026
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
1027
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
1028
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
1029
+ }] | undefined;
995
1030
  serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
1031
+ verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
996
1032
  readonly blockchainId: "AVAX";
997
1033
  readonly blockchainVm: "EVM";
998
1034
  readonly formatters?: undefined | undefined;
@@ -1310,8 +1346,17 @@ export declare const SUPPORTED_CHAINS: readonly [{
1310
1346
  sourceId?: number | undefined | undefined;
1311
1347
  testnet: true;
1312
1348
  custom?: Record<string, unknown> | undefined;
1349
+ extendSchema?: Record<string, unknown> | undefined;
1313
1350
  fees?: import("viem").ChainFees<undefined> | undefined;
1351
+ prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
1352
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
1353
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
1354
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
1355
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
1356
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
1357
+ }] | undefined;
1314
1358
  serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
1359
+ verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
1315
1360
  readonly blockchainId: "AVAX-FUJI";
1316
1361
  readonly blockchainVm: "EVM";
1317
1362
  readonly formatters?: undefined | undefined;
@@ -1669,6 +1714,7 @@ export declare const SUPPORTED_CHAINS: readonly [{
1669
1714
  sourceId: 1;
1670
1715
  testnet?: boolean | undefined | undefined;
1671
1716
  custom?: Record<string, unknown> | undefined;
1717
+ extendSchema?: Record<string, unknown> | undefined;
1672
1718
  fees?: import("viem").ChainFees<undefined> | undefined;
1673
1719
  formatters: {
1674
1720
  readonly block: {
@@ -1734,16 +1780,16 @@ export declare const SUPPORTED_CHAINS: readonly [{
1734
1780
  r: import("viem").Hex;
1735
1781
  s: import("viem").Hex;
1736
1782
  v: bigint;
1737
- value: bigint;
1738
- gas: bigint;
1739
1783
  to: import("abitype").Address | null;
1740
1784
  from: import("abitype").Address;
1785
+ gas: bigint;
1741
1786
  nonce: number;
1787
+ value: bigint;
1742
1788
  blockHash: `0x${string}` | null;
1743
1789
  blockNumber: bigint | null;
1744
- transactionIndex: number | null;
1745
1790
  hash: import("viem").Hash;
1746
1791
  input: import("viem").Hex;
1792
+ transactionIndex: number | null;
1747
1793
  typeHex: import("viem").Hex | null;
1748
1794
  accessList?: undefined | undefined;
1749
1795
  authorizationList?: undefined | undefined;
@@ -1880,6 +1926,7 @@ export declare const SUPPORTED_CHAINS: readonly [{
1880
1926
  blobGasUsed?: bigint | undefined;
1881
1927
  blockHash: import("viem").Hash;
1882
1928
  blockNumber: bigint;
1929
+ blockTimestamp?: bigint | undefined;
1883
1930
  contractAddress: import("abitype").Address | null | undefined;
1884
1931
  cumulativeGasUsed: bigint;
1885
1932
  effectiveGasPrice: bigint;
@@ -1901,9 +1948,17 @@ export declare const SUPPORTED_CHAINS: readonly [{
1901
1948
  type: "transactionReceipt";
1902
1949
  };
1903
1950
  };
1951
+ prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
1952
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
1953
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
1954
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
1955
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
1956
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
1957
+ }] | undefined;
1904
1958
  serializers: {
1905
1959
  readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
1906
1960
  };
1961
+ verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
1907
1962
  readonly blockchainId: "BASE";
1908
1963
  readonly blockchainVm: "EVM";
1909
1964
  }, {
@@ -2260,6 +2315,7 @@ export declare const SUPPORTED_CHAINS: readonly [{
2260
2315
  sourceId: 11155111;
2261
2316
  testnet: true;
2262
2317
  custom?: Record<string, unknown> | undefined;
2318
+ extendSchema?: Record<string, unknown> | undefined;
2263
2319
  fees?: import("viem").ChainFees<undefined> | undefined;
2264
2320
  formatters: {
2265
2321
  readonly block: {
@@ -2325,16 +2381,16 @@ export declare const SUPPORTED_CHAINS: readonly [{
2325
2381
  r: import("viem").Hex;
2326
2382
  s: import("viem").Hex;
2327
2383
  v: bigint;
2328
- value: bigint;
2329
- gas: bigint;
2330
2384
  to: import("abitype").Address | null;
2331
2385
  from: import("abitype").Address;
2386
+ gas: bigint;
2332
2387
  nonce: number;
2388
+ value: bigint;
2333
2389
  blockHash: `0x${string}` | null;
2334
2390
  blockNumber: bigint | null;
2335
- transactionIndex: number | null;
2336
2391
  hash: import("viem").Hash;
2337
2392
  input: import("viem").Hex;
2393
+ transactionIndex: number | null;
2338
2394
  typeHex: import("viem").Hex | null;
2339
2395
  accessList?: undefined | undefined;
2340
2396
  authorizationList?: undefined | undefined;
@@ -2471,6 +2527,7 @@ export declare const SUPPORTED_CHAINS: readonly [{
2471
2527
  blobGasUsed?: bigint | undefined;
2472
2528
  blockHash: import("viem").Hash;
2473
2529
  blockNumber: bigint;
2530
+ blockTimestamp?: bigint | undefined;
2474
2531
  contractAddress: import("abitype").Address | null | undefined;
2475
2532
  cumulativeGasUsed: bigint;
2476
2533
  effectiveGasPrice: bigint;
@@ -2492,9 +2549,17 @@ export declare const SUPPORTED_CHAINS: readonly [{
2492
2549
  type: "transactionReceipt";
2493
2550
  };
2494
2551
  };
2552
+ prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
2553
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
2554
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
2555
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
2556
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
2557
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
2558
+ }] | undefined;
2495
2559
  serializers: {
2496
2560
  readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
2497
2561
  };
2562
+ verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
2498
2563
  readonly blockchainId: "BASE-SEPOLIA";
2499
2564
  readonly blockchainVm: "EVM";
2500
2565
  readonly network: "base-sepolia";
@@ -2957,8 +3022,17 @@ export declare const SUPPORTED_CHAINS: readonly [{
2957
3022
  sourceId?: number | undefined | undefined;
2958
3023
  testnet?: boolean | undefined | undefined;
2959
3024
  custom?: Record<string, unknown> | undefined;
3025
+ extendSchema?: Record<string, unknown> | undefined;
2960
3026
  fees?: import("viem").ChainFees<undefined> | undefined;
3027
+ prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
3028
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
3029
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
3030
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
3031
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
3032
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
3033
+ }] | undefined;
2961
3034
  serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
3035
+ verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
2962
3036
  readonly blockchainId: "ETH";
2963
3037
  readonly blockchainVm: "EVM";
2964
3038
  readonly formatters?: undefined | undefined;
@@ -3280,8 +3354,17 @@ export declare const SUPPORTED_CHAINS: readonly [{
3280
3354
  sourceId?: number | undefined | undefined;
3281
3355
  testnet: true;
3282
3356
  custom?: Record<string, unknown> | undefined;
3357
+ extendSchema?: Record<string, unknown> | undefined;
3283
3358
  fees?: import("viem").ChainFees<undefined> | undefined;
3359
+ prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
3360
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
3361
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
3362
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
3363
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
3364
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
3365
+ }] | undefined;
3284
3366
  serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
3367
+ verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
3285
3368
  readonly blockchainId: "ETH-SEPOLIA";
3286
3369
  readonly blockchainVm: "EVM";
3287
3370
  readonly formatters?: undefined | undefined;
@@ -3290,7 +3373,7 @@ export declare const SUPPORTED_CHAINS: readonly [{
3290
3373
  readonly default: {
3291
3374
  readonly name: "PolygonScan";
3292
3375
  readonly url: "https://polygonscan.com";
3293
- readonly apiUrl: "https://api.polygonscan.com/api";
3376
+ readonly apiUrl: "https://api.etherscan.io/v2/api";
3294
3377
  };
3295
3378
  };
3296
3379
  blockTime: 2000;
@@ -3452,14 +3535,23 @@ export declare const SUPPORTED_CHAINS: readonly [{
3452
3535
  experimental_preconfirmationTime?: number | undefined | undefined;
3453
3536
  rpcUrls: {
3454
3537
  readonly default: {
3455
- readonly http: readonly ["https://polygon-rpc.com"];
3538
+ readonly http: readonly ["https://polygon.drpc.org"];
3456
3539
  };
3457
3540
  };
3458
3541
  sourceId?: number | undefined | undefined;
3459
3542
  testnet?: boolean | undefined | undefined;
3460
3543
  custom?: Record<string, unknown> | undefined;
3544
+ extendSchema?: Record<string, unknown> | undefined;
3461
3545
  fees?: import("viem").ChainFees<undefined> | undefined;
3546
+ prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
3547
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
3548
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
3549
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
3550
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
3551
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
3552
+ }] | undefined;
3462
3553
  serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
3554
+ verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
3463
3555
  readonly blockchainId: "MATIC";
3464
3556
  readonly blockchainVm: "EVM";
3465
3557
  readonly formatters?: undefined | undefined;
@@ -3468,7 +3560,7 @@ export declare const SUPPORTED_CHAINS: readonly [{
3468
3560
  readonly default: {
3469
3561
  readonly name: "PolygonScan";
3470
3562
  readonly url: "https://amoy.polygonscan.com";
3471
- readonly apiUrl: "https://api-amoy.polygonscan.com/api";
3563
+ readonly apiUrl: "https://api.etherscan.io/v2/api";
3472
3564
  };
3473
3565
  };
3474
3566
  blockTime?: number | undefined | undefined;
@@ -3636,8 +3728,17 @@ export declare const SUPPORTED_CHAINS: readonly [{
3636
3728
  sourceId?: number | undefined | undefined;
3637
3729
  testnet: true;
3638
3730
  custom?: Record<string, unknown> | undefined;
3731
+ extendSchema?: Record<string, unknown> | undefined;
3639
3732
  fees?: import("viem").ChainFees<undefined> | undefined;
3733
+ prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
3734
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
3735
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
3736
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
3737
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
3738
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
3739
+ }] | undefined;
3640
3740
  serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
3741
+ verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
3641
3742
  readonly blockchainId: "MATIC-AMOY";
3642
3743
  readonly blockchainVm: "EVM";
3643
3744
  readonly formatters?: undefined | undefined;
@@ -3819,8 +3920,17 @@ export declare const SUPPORTED_CHAINS: readonly [{
3819
3920
  sourceId?: number | undefined | undefined;
3820
3921
  testnet: false;
3821
3922
  custom?: Record<string, unknown> | undefined;
3923
+ extendSchema?: Record<string, unknown> | undefined;
3822
3924
  fees?: import("viem").ChainFees<undefined> | undefined;
3925
+ prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
3926
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
3927
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
3928
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
3929
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
3930
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
3931
+ }] | undefined;
3823
3932
  serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
3933
+ verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
3824
3934
  readonly blockchainId: "MONAD";
3825
3935
  readonly blockchainVm: "EVM";
3826
3936
  readonly formatters?: undefined | undefined;
@@ -3996,8 +4106,17 @@ export declare const SUPPORTED_CHAINS: readonly [{
3996
4106
  sourceId?: number | undefined | undefined;
3997
4107
  testnet: true;
3998
4108
  custom?: Record<string, unknown> | undefined;
4109
+ extendSchema?: Record<string, unknown> | undefined;
3999
4110
  fees?: import("viem").ChainFees<undefined> | undefined;
4111
+ prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
4112
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
4113
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
4114
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
4115
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
4116
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
4117
+ }] | undefined;
4000
4118
  serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
4119
+ verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
4001
4120
  readonly blockchainId: "MONAD-TESTNET";
4002
4121
  readonly blockchainVm: "EVM";
4003
4122
  readonly formatters?: undefined | undefined;
@@ -4212,6 +4331,7 @@ export declare const SUPPORTED_CHAINS: readonly [{
4212
4331
  sourceId: 1;
4213
4332
  testnet?: boolean | undefined | undefined;
4214
4333
  custom?: Record<string, unknown> | undefined;
4334
+ extendSchema?: Record<string, unknown> | undefined;
4215
4335
  fees?: import("viem").ChainFees<undefined> | undefined;
4216
4336
  formatters: {
4217
4337
  readonly block: {
@@ -4277,16 +4397,16 @@ export declare const SUPPORTED_CHAINS: readonly [{
4277
4397
  r: import("viem").Hex;
4278
4398
  s: import("viem").Hex;
4279
4399
  v: bigint;
4280
- value: bigint;
4281
- gas: bigint;
4282
4400
  to: import("abitype").Address | null;
4283
4401
  from: import("abitype").Address;
4402
+ gas: bigint;
4284
4403
  nonce: number;
4404
+ value: bigint;
4285
4405
  blockHash: `0x${string}` | null;
4286
4406
  blockNumber: bigint | null;
4287
- transactionIndex: number | null;
4288
4407
  hash: import("viem").Hash;
4289
4408
  input: import("viem").Hex;
4409
+ transactionIndex: number | null;
4290
4410
  typeHex: import("viem").Hex | null;
4291
4411
  accessList?: undefined | undefined;
4292
4412
  authorizationList?: undefined | undefined;
@@ -4423,6 +4543,7 @@ export declare const SUPPORTED_CHAINS: readonly [{
4423
4543
  blobGasUsed?: bigint | undefined;
4424
4544
  blockHash: import("viem").Hash;
4425
4545
  blockNumber: bigint;
4546
+ blockTimestamp?: bigint | undefined;
4426
4547
  contractAddress: import("abitype").Address | null | undefined;
4427
4548
  cumulativeGasUsed: bigint;
4428
4549
  effectiveGasPrice: bigint;
@@ -4444,9 +4565,17 @@ export declare const SUPPORTED_CHAINS: readonly [{
4444
4565
  type: "transactionReceipt";
4445
4566
  };
4446
4567
  };
4568
+ prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
4569
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
4570
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
4571
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
4572
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
4573
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
4574
+ }] | undefined;
4447
4575
  serializers: {
4448
4576
  readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
4449
4577
  };
4578
+ verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
4450
4579
  readonly blockchainId: "OP";
4451
4580
  readonly blockchainVm: "EVM";
4452
4581
  }, {
@@ -4660,6 +4789,7 @@ export declare const SUPPORTED_CHAINS: readonly [{
4660
4789
  sourceId: 11155111;
4661
4790
  testnet: true;
4662
4791
  custom?: Record<string, unknown> | undefined;
4792
+ extendSchema?: Record<string, unknown> | undefined;
4663
4793
  fees?: import("viem").ChainFees<undefined> | undefined;
4664
4794
  formatters: {
4665
4795
  readonly block: {
@@ -4725,16 +4855,16 @@ export declare const SUPPORTED_CHAINS: readonly [{
4725
4855
  r: import("viem").Hex;
4726
4856
  s: import("viem").Hex;
4727
4857
  v: bigint;
4728
- value: bigint;
4729
- gas: bigint;
4730
4858
  to: import("abitype").Address | null;
4731
4859
  from: import("abitype").Address;
4860
+ gas: bigint;
4732
4861
  nonce: number;
4862
+ value: bigint;
4733
4863
  blockHash: `0x${string}` | null;
4734
4864
  blockNumber: bigint | null;
4735
- transactionIndex: number | null;
4736
4865
  hash: import("viem").Hash;
4737
4866
  input: import("viem").Hex;
4867
+ transactionIndex: number | null;
4738
4868
  typeHex: import("viem").Hex | null;
4739
4869
  accessList?: undefined | undefined;
4740
4870
  authorizationList?: undefined | undefined;
@@ -4871,6 +5001,7 @@ export declare const SUPPORTED_CHAINS: readonly [{
4871
5001
  blobGasUsed?: bigint | undefined;
4872
5002
  blockHash: import("viem").Hash;
4873
5003
  blockNumber: bigint;
5004
+ blockTimestamp?: bigint | undefined;
4874
5005
  contractAddress: import("abitype").Address | null | undefined;
4875
5006
  cumulativeGasUsed: bigint;
4876
5007
  effectiveGasPrice: bigint;
@@ -4892,9 +5023,17 @@ export declare const SUPPORTED_CHAINS: readonly [{
4892
5023
  type: "transactionReceipt";
4893
5024
  };
4894
5025
  };
5026
+ prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
5027
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
5028
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
5029
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
5030
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
5031
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
5032
+ }] | undefined;
4895
5033
  serializers: {
4896
5034
  readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
4897
5035
  };
5036
+ verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
4898
5037
  readonly blockchainId: "OP-SEPOLIA";
4899
5038
  readonly blockchainVm: "EVM";
4900
5039
  }, {
@@ -5103,6 +5242,7 @@ export declare const SUPPORTED_CHAINS: readonly [{
5103
5242
  sourceId: 1;
5104
5243
  testnet?: boolean | undefined | undefined;
5105
5244
  custom?: Record<string, unknown> | undefined;
5245
+ extendSchema?: Record<string, unknown> | undefined;
5106
5246
  fees?: import("viem").ChainFees<undefined> | undefined;
5107
5247
  formatters: {
5108
5248
  readonly block: {
@@ -5168,16 +5308,16 @@ export declare const SUPPORTED_CHAINS: readonly [{
5168
5308
  r: import("viem").Hex;
5169
5309
  s: import("viem").Hex;
5170
5310
  v: bigint;
5171
- value: bigint;
5172
- gas: bigint;
5173
5311
  to: import("abitype").Address | null;
5174
5312
  from: import("abitype").Address;
5313
+ gas: bigint;
5175
5314
  nonce: number;
5315
+ value: bigint;
5176
5316
  blockHash: `0x${string}` | null;
5177
5317
  blockNumber: bigint | null;
5178
- transactionIndex: number | null;
5179
5318
  hash: import("viem").Hash;
5180
5319
  input: import("viem").Hex;
5320
+ transactionIndex: number | null;
5181
5321
  typeHex: import("viem").Hex | null;
5182
5322
  accessList?: undefined | undefined;
5183
5323
  authorizationList?: undefined | undefined;
@@ -5314,6 +5454,7 @@ export declare const SUPPORTED_CHAINS: readonly [{
5314
5454
  blobGasUsed?: bigint | undefined;
5315
5455
  blockHash: import("viem").Hash;
5316
5456
  blockNumber: bigint;
5457
+ blockTimestamp?: bigint | undefined;
5317
5458
  contractAddress: import("abitype").Address | null | undefined;
5318
5459
  cumulativeGasUsed: bigint;
5319
5460
  effectiveGasPrice: bigint;
@@ -5335,9 +5476,17 @@ export declare const SUPPORTED_CHAINS: readonly [{
5335
5476
  type: "transactionReceipt";
5336
5477
  };
5337
5478
  };
5479
+ prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
5480
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
5481
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
5482
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
5483
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
5484
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
5485
+ }] | undefined;
5338
5486
  serializers: {
5339
5487
  readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
5340
5488
  };
5489
+ verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
5341
5490
  readonly blockchainId: "UNI";
5342
5491
  readonly blockchainVm: "EVM";
5343
5492
  }, {
@@ -5546,6 +5695,7 @@ export declare const SUPPORTED_CHAINS: readonly [{
5546
5695
  sourceId: 11155111;
5547
5696
  testnet: true;
5548
5697
  custom?: Record<string, unknown> | undefined;
5698
+ extendSchema?: Record<string, unknown> | undefined;
5549
5699
  fees?: import("viem").ChainFees<undefined> | undefined;
5550
5700
  formatters: {
5551
5701
  readonly block: {
@@ -5611,16 +5761,16 @@ export declare const SUPPORTED_CHAINS: readonly [{
5611
5761
  r: import("viem").Hex;
5612
5762
  s: import("viem").Hex;
5613
5763
  v: bigint;
5614
- value: bigint;
5615
- gas: bigint;
5616
5764
  to: import("abitype").Address | null;
5617
5765
  from: import("abitype").Address;
5766
+ gas: bigint;
5618
5767
  nonce: number;
5768
+ value: bigint;
5619
5769
  blockHash: `0x${string}` | null;
5620
5770
  blockNumber: bigint | null;
5621
- transactionIndex: number | null;
5622
5771
  hash: import("viem").Hash;
5623
5772
  input: import("viem").Hex;
5773
+ transactionIndex: number | null;
5624
5774
  typeHex: import("viem").Hex | null;
5625
5775
  accessList?: undefined | undefined;
5626
5776
  authorizationList?: undefined | undefined;
@@ -5757,6 +5907,7 @@ export declare const SUPPORTED_CHAINS: readonly [{
5757
5907
  blobGasUsed?: bigint | undefined;
5758
5908
  blockHash: import("viem").Hash;
5759
5909
  blockNumber: bigint;
5910
+ blockTimestamp?: bigint | undefined;
5760
5911
  contractAddress: import("abitype").Address | null | undefined;
5761
5912
  cumulativeGasUsed: bigint;
5762
5913
  effectiveGasPrice: bigint;
@@ -5778,9 +5929,17 @@ export declare const SUPPORTED_CHAINS: readonly [{
5778
5929
  type: "transactionReceipt";
5779
5930
  };
5780
5931
  };
5932
+ prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
5933
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
5934
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
5935
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
5936
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
5937
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
5938
+ }] | undefined;
5781
5939
  serializers: {
5782
5940
  readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
5783
5941
  };
5942
+ verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
5784
5943
  readonly blockchainId: "UNI-SEPOLIA";
5785
5944
  readonly blockchainVm: "EVM";
5786
5945
  }];
@@ -5957,8 +6116,17 @@ export declare const SUPPORTED_CHAINS_FAUCET: readonly [{
5957
6116
  sourceId?: number | undefined | undefined;
5958
6117
  testnet: true;
5959
6118
  custom?: Record<string, unknown> | undefined;
6119
+ extendSchema?: Record<string, unknown> | undefined;
5960
6120
  fees?: import("viem").ChainFees<undefined> | undefined;
6121
+ prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
6122
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
6123
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
6124
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
6125
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
6126
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
6127
+ }] | undefined;
5961
6128
  serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
6129
+ verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
5962
6130
  readonly blockchainId: "ARB-SEPOLIA";
5963
6131
  readonly blockchainVm: "EVM";
5964
6132
  readonly formatters?: undefined | undefined;
@@ -6136,8 +6304,17 @@ export declare const SUPPORTED_CHAINS_FAUCET: readonly [{
6136
6304
  sourceId?: number | undefined | undefined;
6137
6305
  testnet: true;
6138
6306
  custom?: Record<string, unknown> | undefined;
6307
+ extendSchema?: Record<string, unknown> | undefined;
6139
6308
  fees?: import("viem").ChainFees<undefined> | undefined;
6309
+ prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
6310
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
6311
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
6312
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
6313
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
6314
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
6315
+ }] | undefined;
6140
6316
  serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
6317
+ verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
6141
6318
  readonly blockchainId: "ARC-TESTNET";
6142
6319
  readonly blockchainVm: "EVM";
6143
6320
  readonly formatters?: undefined | undefined;
@@ -6455,8 +6632,17 @@ export declare const SUPPORTED_CHAINS_FAUCET: readonly [{
6455
6632
  sourceId?: number | undefined | undefined;
6456
6633
  testnet: true;
6457
6634
  custom?: Record<string, unknown> | undefined;
6635
+ extendSchema?: Record<string, unknown> | undefined;
6458
6636
  fees?: import("viem").ChainFees<undefined> | undefined;
6637
+ prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
6638
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
6639
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
6640
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
6641
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
6642
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
6643
+ }] | undefined;
6459
6644
  serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
6645
+ verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
6460
6646
  readonly blockchainId: "AVAX-FUJI";
6461
6647
  readonly blockchainVm: "EVM";
6462
6648
  readonly formatters?: undefined | undefined;
@@ -6814,6 +7000,7 @@ export declare const SUPPORTED_CHAINS_FAUCET: readonly [{
6814
7000
  sourceId: 11155111;
6815
7001
  testnet: true;
6816
7002
  custom?: Record<string, unknown> | undefined;
7003
+ extendSchema?: Record<string, unknown> | undefined;
6817
7004
  fees?: import("viem").ChainFees<undefined> | undefined;
6818
7005
  formatters: {
6819
7006
  readonly block: {
@@ -6879,16 +7066,16 @@ export declare const SUPPORTED_CHAINS_FAUCET: readonly [{
6879
7066
  r: import("viem").Hex;
6880
7067
  s: import("viem").Hex;
6881
7068
  v: bigint;
6882
- value: bigint;
6883
- gas: bigint;
6884
7069
  to: import("abitype").Address | null;
6885
7070
  from: import("abitype").Address;
7071
+ gas: bigint;
6886
7072
  nonce: number;
7073
+ value: bigint;
6887
7074
  blockHash: `0x${string}` | null;
6888
7075
  blockNumber: bigint | null;
6889
- transactionIndex: number | null;
6890
7076
  hash: import("viem").Hash;
6891
7077
  input: import("viem").Hex;
7078
+ transactionIndex: number | null;
6892
7079
  typeHex: import("viem").Hex | null;
6893
7080
  accessList?: undefined | undefined;
6894
7081
  authorizationList?: undefined | undefined;
@@ -7025,6 +7212,7 @@ export declare const SUPPORTED_CHAINS_FAUCET: readonly [{
7025
7212
  blobGasUsed?: bigint | undefined;
7026
7213
  blockHash: import("viem").Hash;
7027
7214
  blockNumber: bigint;
7215
+ blockTimestamp?: bigint | undefined;
7028
7216
  contractAddress: import("abitype").Address | null | undefined;
7029
7217
  cumulativeGasUsed: bigint;
7030
7218
  effectiveGasPrice: bigint;
@@ -7046,9 +7234,17 @@ export declare const SUPPORTED_CHAINS_FAUCET: readonly [{
7046
7234
  type: "transactionReceipt";
7047
7235
  };
7048
7236
  };
7237
+ prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
7238
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
7239
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
7240
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
7241
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
7242
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
7243
+ }] | undefined;
7049
7244
  serializers: {
7050
7245
  readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
7051
7246
  };
7247
+ verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
7052
7248
  readonly blockchainId: "BASE-SEPOLIA";
7053
7249
  readonly blockchainVm: "EVM";
7054
7250
  readonly network: "base-sepolia";
@@ -7370,8 +7566,17 @@ export declare const SUPPORTED_CHAINS_FAUCET: readonly [{
7370
7566
  sourceId?: number | undefined | undefined;
7371
7567
  testnet: true;
7372
7568
  custom?: Record<string, unknown> | undefined;
7569
+ extendSchema?: Record<string, unknown> | undefined;
7373
7570
  fees?: import("viem").ChainFees<undefined> | undefined;
7571
+ prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
7572
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
7573
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
7574
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
7575
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
7576
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
7577
+ }] | undefined;
7374
7578
  serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
7579
+ verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
7375
7580
  readonly blockchainId: "ETH-SEPOLIA";
7376
7581
  readonly blockchainVm: "EVM";
7377
7582
  readonly formatters?: undefined | undefined;
@@ -7380,7 +7585,7 @@ export declare const SUPPORTED_CHAINS_FAUCET: readonly [{
7380
7585
  readonly default: {
7381
7586
  readonly name: "PolygonScan";
7382
7587
  readonly url: "https://amoy.polygonscan.com";
7383
- readonly apiUrl: "https://api-amoy.polygonscan.com/api";
7588
+ readonly apiUrl: "https://api.etherscan.io/v2/api";
7384
7589
  };
7385
7590
  };
7386
7591
  blockTime?: number | undefined | undefined;
@@ -7548,8 +7753,17 @@ export declare const SUPPORTED_CHAINS_FAUCET: readonly [{
7548
7753
  sourceId?: number | undefined | undefined;
7549
7754
  testnet: true;
7550
7755
  custom?: Record<string, unknown> | undefined;
7756
+ extendSchema?: Record<string, unknown> | undefined;
7551
7757
  fees?: import("viem").ChainFees<undefined> | undefined;
7758
+ prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
7759
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
7760
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
7761
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
7762
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
7763
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
7764
+ }] | undefined;
7552
7765
  serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
7766
+ verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
7553
7767
  readonly blockchainId: "MATIC-AMOY";
7554
7768
  readonly blockchainVm: "EVM";
7555
7769
  readonly formatters?: undefined | undefined;
@@ -7725,8 +7939,17 @@ export declare const SUPPORTED_CHAINS_FAUCET: readonly [{
7725
7939
  sourceId?: number | undefined | undefined;
7726
7940
  testnet: true;
7727
7941
  custom?: Record<string, unknown> | undefined;
7942
+ extendSchema?: Record<string, unknown> | undefined;
7728
7943
  fees?: import("viem").ChainFees<undefined> | undefined;
7944
+ prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
7945
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
7946
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
7947
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
7948
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
7949
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
7950
+ }] | undefined;
7729
7951
  serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
7952
+ verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
7730
7953
  readonly blockchainId: "MONAD-TESTNET";
7731
7954
  readonly blockchainVm: "EVM";
7732
7955
  readonly formatters?: undefined | undefined;
@@ -7941,6 +8164,7 @@ export declare const SUPPORTED_CHAINS_FAUCET: readonly [{
7941
8164
  sourceId: 11155111;
7942
8165
  testnet: true;
7943
8166
  custom?: Record<string, unknown> | undefined;
8167
+ extendSchema?: Record<string, unknown> | undefined;
7944
8168
  fees?: import("viem").ChainFees<undefined> | undefined;
7945
8169
  formatters: {
7946
8170
  readonly block: {
@@ -8006,16 +8230,16 @@ export declare const SUPPORTED_CHAINS_FAUCET: readonly [{
8006
8230
  r: import("viem").Hex;
8007
8231
  s: import("viem").Hex;
8008
8232
  v: bigint;
8009
- value: bigint;
8010
- gas: bigint;
8011
8233
  to: import("abitype").Address | null;
8012
8234
  from: import("abitype").Address;
8235
+ gas: bigint;
8013
8236
  nonce: number;
8237
+ value: bigint;
8014
8238
  blockHash: `0x${string}` | null;
8015
8239
  blockNumber: bigint | null;
8016
- transactionIndex: number | null;
8017
8240
  hash: import("viem").Hash;
8018
8241
  input: import("viem").Hex;
8242
+ transactionIndex: number | null;
8019
8243
  typeHex: import("viem").Hex | null;
8020
8244
  accessList?: undefined | undefined;
8021
8245
  authorizationList?: undefined | undefined;
@@ -8152,6 +8376,7 @@ export declare const SUPPORTED_CHAINS_FAUCET: readonly [{
8152
8376
  blobGasUsed?: bigint | undefined;
8153
8377
  blockHash: import("viem").Hash;
8154
8378
  blockNumber: bigint;
8379
+ blockTimestamp?: bigint | undefined;
8155
8380
  contractAddress: import("abitype").Address | null | undefined;
8156
8381
  cumulativeGasUsed: bigint;
8157
8382
  effectiveGasPrice: bigint;
@@ -8173,9 +8398,17 @@ export declare const SUPPORTED_CHAINS_FAUCET: readonly [{
8173
8398
  type: "transactionReceipt";
8174
8399
  };
8175
8400
  };
8401
+ prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
8402
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
8403
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
8404
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
8405
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
8406
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
8407
+ }] | undefined;
8176
8408
  serializers: {
8177
8409
  readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
8178
8410
  };
8411
+ verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
8179
8412
  readonly blockchainId: "OP-SEPOLIA";
8180
8413
  readonly blockchainVm: "EVM";
8181
8414
  }, {
@@ -8384,6 +8617,7 @@ export declare const SUPPORTED_CHAINS_FAUCET: readonly [{
8384
8617
  sourceId: 11155111;
8385
8618
  testnet: true;
8386
8619
  custom?: Record<string, unknown> | undefined;
8620
+ extendSchema?: Record<string, unknown> | undefined;
8387
8621
  fees?: import("viem").ChainFees<undefined> | undefined;
8388
8622
  formatters: {
8389
8623
  readonly block: {
@@ -8449,16 +8683,16 @@ export declare const SUPPORTED_CHAINS_FAUCET: readonly [{
8449
8683
  r: import("viem").Hex;
8450
8684
  s: import("viem").Hex;
8451
8685
  v: bigint;
8452
- value: bigint;
8453
- gas: bigint;
8454
8686
  to: import("abitype").Address | null;
8455
8687
  from: import("abitype").Address;
8688
+ gas: bigint;
8456
8689
  nonce: number;
8690
+ value: bigint;
8457
8691
  blockHash: `0x${string}` | null;
8458
8692
  blockNumber: bigint | null;
8459
- transactionIndex: number | null;
8460
8693
  hash: import("viem").Hash;
8461
8694
  input: import("viem").Hex;
8695
+ transactionIndex: number | null;
8462
8696
  typeHex: import("viem").Hex | null;
8463
8697
  accessList?: undefined | undefined;
8464
8698
  authorizationList?: undefined | undefined;
@@ -8595,6 +8829,7 @@ export declare const SUPPORTED_CHAINS_FAUCET: readonly [{
8595
8829
  blobGasUsed?: bigint | undefined;
8596
8830
  blockHash: import("viem").Hash;
8597
8831
  blockNumber: bigint;
8832
+ blockTimestamp?: bigint | undefined;
8598
8833
  contractAddress: import("abitype").Address | null | undefined;
8599
8834
  cumulativeGasUsed: bigint;
8600
8835
  effectiveGasPrice: bigint;
@@ -8616,9 +8851,17 @@ export declare const SUPPORTED_CHAINS_FAUCET: readonly [{
8616
8851
  type: "transactionReceipt";
8617
8852
  };
8618
8853
  };
8854
+ prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
8855
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
8856
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
8857
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
8858
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
8859
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
8860
+ }] | undefined;
8619
8861
  serializers: {
8620
8862
  readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
8621
8863
  };
8864
+ verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
8622
8865
  readonly blockchainId: "UNI-SEPOLIA";
8623
8866
  readonly blockchainVm: "EVM";
8624
8867
  }];
@@ -9081,8 +9324,17 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
9081
9324
  sourceId?: number | undefined | undefined;
9082
9325
  testnet?: boolean | undefined | undefined;
9083
9326
  custom?: Record<string, unknown> | undefined;
9327
+ extendSchema?: Record<string, unknown> | undefined;
9084
9328
  fees?: import("viem").ChainFees<undefined> | undefined;
9329
+ prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
9330
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
9331
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
9332
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
9333
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
9334
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
9335
+ }] | undefined;
9085
9336
  serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
9337
+ verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
9086
9338
  readonly blockchainId: "ETH";
9087
9339
  readonly blockchainVm: "EVM";
9088
9340
  readonly formatters?: undefined | undefined;
@@ -9404,8 +9656,17 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
9404
9656
  sourceId?: number | undefined | undefined;
9405
9657
  testnet: true;
9406
9658
  custom?: Record<string, unknown> | undefined;
9659
+ extendSchema?: Record<string, unknown> | undefined;
9407
9660
  fees?: import("viem").ChainFees<undefined> | undefined;
9661
+ prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
9662
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
9663
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
9664
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
9665
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
9666
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
9667
+ }] | undefined;
9408
9668
  serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
9669
+ verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
9409
9670
  readonly blockchainId: "ETH-SEPOLIA";
9410
9671
  readonly blockchainVm: "EVM";
9411
9672
  readonly formatters?: undefined | undefined;
@@ -9414,7 +9675,7 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
9414
9675
  readonly default: {
9415
9676
  readonly name: "PolygonScan";
9416
9677
  readonly url: "https://polygonscan.com";
9417
- readonly apiUrl: "https://api.polygonscan.com/api";
9678
+ readonly apiUrl: "https://api.etherscan.io/v2/api";
9418
9679
  };
9419
9680
  };
9420
9681
  blockTime: 2000;
@@ -9576,14 +9837,23 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
9576
9837
  experimental_preconfirmationTime?: number | undefined | undefined;
9577
9838
  rpcUrls: {
9578
9839
  readonly default: {
9579
- readonly http: readonly ["https://polygon-rpc.com"];
9840
+ readonly http: readonly ["https://polygon.drpc.org"];
9580
9841
  };
9581
9842
  };
9582
9843
  sourceId?: number | undefined | undefined;
9583
9844
  testnet?: boolean | undefined | undefined;
9584
9845
  custom?: Record<string, unknown> | undefined;
9846
+ extendSchema?: Record<string, unknown> | undefined;
9585
9847
  fees?: import("viem").ChainFees<undefined> | undefined;
9848
+ prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
9849
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
9850
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
9851
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
9852
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
9853
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
9854
+ }] | undefined;
9586
9855
  serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
9856
+ verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
9587
9857
  readonly blockchainId: "MATIC";
9588
9858
  readonly blockchainVm: "EVM";
9589
9859
  readonly formatters?: undefined | undefined;
@@ -9592,7 +9862,7 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
9592
9862
  readonly default: {
9593
9863
  readonly name: "PolygonScan";
9594
9864
  readonly url: "https://amoy.polygonscan.com";
9595
- readonly apiUrl: "https://api-amoy.polygonscan.com/api";
9865
+ readonly apiUrl: "https://api.etherscan.io/v2/api";
9596
9866
  };
9597
9867
  };
9598
9868
  blockTime?: number | undefined | undefined;
@@ -9760,8 +10030,17 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
9760
10030
  sourceId?: number | undefined | undefined;
9761
10031
  testnet: true;
9762
10032
  custom?: Record<string, unknown> | undefined;
10033
+ extendSchema?: Record<string, unknown> | undefined;
9763
10034
  fees?: import("viem").ChainFees<undefined> | undefined;
10035
+ prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
10036
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
10037
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
10038
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
10039
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
10040
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
10041
+ }] | undefined;
9764
10042
  serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
10043
+ verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
9765
10044
  readonly blockchainId: "MATIC-AMOY";
9766
10045
  readonly blockchainVm: "EVM";
9767
10046
  readonly formatters?: undefined | undefined;
@@ -9938,8 +10217,17 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
9938
10217
  sourceId?: number | undefined | undefined;
9939
10218
  testnet?: boolean | undefined | undefined;
9940
10219
  custom?: Record<string, unknown> | undefined;
10220
+ extendSchema?: Record<string, unknown> | undefined;
9941
10221
  fees?: import("viem").ChainFees<undefined> | undefined;
10222
+ prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
10223
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
10224
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
10225
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
10226
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
10227
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
10228
+ }] | undefined;
9942
10229
  serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
10230
+ verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
9943
10231
  readonly blockchainId: "ARB";
9944
10232
  readonly blockchainVm: "EVM";
9945
10233
  readonly formatters?: undefined | undefined;
@@ -10116,11 +10404,208 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
10116
10404
  sourceId?: number | undefined | undefined;
10117
10405
  testnet: true;
10118
10406
  custom?: Record<string, unknown> | undefined;
10407
+ extendSchema?: Record<string, unknown> | undefined;
10119
10408
  fees?: import("viem").ChainFees<undefined> | undefined;
10409
+ prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
10410
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
10411
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
10412
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
10413
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
10414
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
10415
+ }] | undefined;
10120
10416
  serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
10417
+ verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
10121
10418
  readonly blockchainId: "ARB-SEPOLIA";
10122
10419
  readonly blockchainVm: "EVM";
10123
10420
  readonly formatters?: undefined | undefined;
10421
+ }, {
10422
+ blockExplorers: {
10423
+ readonly default: {
10424
+ readonly name: "ArcScan";
10425
+ readonly url: "https://testnet.arcscan.app";
10426
+ readonly apiUrl: "https://testnet.arcscan.app/api";
10427
+ };
10428
+ };
10429
+ blockTime?: number | undefined | undefined;
10430
+ contracts: {
10431
+ readonly USDC: {
10432
+ readonly address: "0x3600000000000000000000000000000000000000";
10433
+ readonly abi: readonly [{
10434
+ readonly type: "event";
10435
+ readonly name: "Approval";
10436
+ readonly inputs: readonly [{
10437
+ readonly indexed: true;
10438
+ readonly name: "owner";
10439
+ readonly type: "address";
10440
+ }, {
10441
+ readonly indexed: true;
10442
+ readonly name: "spender";
10443
+ readonly type: "address";
10444
+ }, {
10445
+ readonly indexed: false;
10446
+ readonly name: "value";
10447
+ readonly type: "uint256";
10448
+ }];
10449
+ }, {
10450
+ readonly type: "event";
10451
+ readonly name: "Transfer";
10452
+ readonly inputs: readonly [{
10453
+ readonly indexed: true;
10454
+ readonly name: "from";
10455
+ readonly type: "address";
10456
+ }, {
10457
+ readonly indexed: true;
10458
+ readonly name: "to";
10459
+ readonly type: "address";
10460
+ }, {
10461
+ readonly indexed: false;
10462
+ readonly name: "value";
10463
+ readonly type: "uint256";
10464
+ }];
10465
+ }, {
10466
+ readonly type: "function";
10467
+ readonly name: "allowance";
10468
+ readonly stateMutability: "view";
10469
+ readonly inputs: readonly [{
10470
+ readonly name: "owner";
10471
+ readonly type: "address";
10472
+ }, {
10473
+ readonly name: "spender";
10474
+ readonly type: "address";
10475
+ }];
10476
+ readonly outputs: readonly [{
10477
+ readonly type: "uint256";
10478
+ }];
10479
+ }, {
10480
+ readonly type: "function";
10481
+ readonly name: "approve";
10482
+ readonly stateMutability: "nonpayable";
10483
+ readonly inputs: readonly [{
10484
+ readonly name: "spender";
10485
+ readonly type: "address";
10486
+ }, {
10487
+ readonly name: "amount";
10488
+ readonly type: "uint256";
10489
+ }];
10490
+ readonly outputs: readonly [{
10491
+ readonly type: "bool";
10492
+ }];
10493
+ }, {
10494
+ readonly type: "function";
10495
+ readonly name: "balanceOf";
10496
+ readonly stateMutability: "view";
10497
+ readonly inputs: readonly [{
10498
+ readonly name: "account";
10499
+ readonly type: "address";
10500
+ }];
10501
+ readonly outputs: readonly [{
10502
+ readonly type: "uint256";
10503
+ }];
10504
+ }, {
10505
+ readonly type: "function";
10506
+ readonly name: "decimals";
10507
+ readonly stateMutability: "view";
10508
+ readonly inputs: readonly [];
10509
+ readonly outputs: readonly [{
10510
+ readonly type: "uint8";
10511
+ }];
10512
+ }, {
10513
+ readonly type: "function";
10514
+ readonly name: "name";
10515
+ readonly stateMutability: "view";
10516
+ readonly inputs: readonly [];
10517
+ readonly outputs: readonly [{
10518
+ readonly type: "string";
10519
+ }];
10520
+ }, {
10521
+ readonly type: "function";
10522
+ readonly name: "symbol";
10523
+ readonly stateMutability: "view";
10524
+ readonly inputs: readonly [];
10525
+ readonly outputs: readonly [{
10526
+ readonly type: "string";
10527
+ }];
10528
+ }, {
10529
+ readonly type: "function";
10530
+ readonly name: "totalSupply";
10531
+ readonly stateMutability: "view";
10532
+ readonly inputs: readonly [];
10533
+ readonly outputs: readonly [{
10534
+ readonly type: "uint256";
10535
+ }];
10536
+ }, {
10537
+ readonly type: "function";
10538
+ readonly name: "transfer";
10539
+ readonly stateMutability: "nonpayable";
10540
+ readonly inputs: readonly [{
10541
+ readonly name: "recipient";
10542
+ readonly type: "address";
10543
+ }, {
10544
+ readonly name: "amount";
10545
+ readonly type: "uint256";
10546
+ }];
10547
+ readonly outputs: readonly [{
10548
+ readonly type: "bool";
10549
+ }];
10550
+ }, {
10551
+ readonly type: "function";
10552
+ readonly name: "transferFrom";
10553
+ readonly stateMutability: "nonpayable";
10554
+ readonly inputs: readonly [{
10555
+ readonly name: "sender";
10556
+ readonly type: "address";
10557
+ }, {
10558
+ readonly name: "recipient";
10559
+ readonly type: "address";
10560
+ }, {
10561
+ readonly name: "amount";
10562
+ readonly type: "uint256";
10563
+ }];
10564
+ readonly outputs: readonly [{
10565
+ readonly type: "bool";
10566
+ }];
10567
+ }];
10568
+ readonly read: {
10569
+ readonly decimals: () => 6;
10570
+ };
10571
+ };
10572
+ readonly multicall3: {
10573
+ readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
10574
+ readonly blockCreated: 0;
10575
+ };
10576
+ };
10577
+ ensTlds?: readonly string[] | undefined;
10578
+ id: 5042002;
10579
+ name: "Arc Testnet";
10580
+ nativeCurrency: {
10581
+ readonly name: "USDC";
10582
+ readonly symbol: "USDC";
10583
+ readonly decimals: 18;
10584
+ };
10585
+ experimental_preconfirmationTime?: number | undefined | undefined;
10586
+ rpcUrls: {
10587
+ readonly default: {
10588
+ readonly http: readonly ["https://rpc.testnet.arc.network", "https://rpc.quicknode.testnet.arc.network", "https://rpc.blockdaemon.testnet.arc.network"];
10589
+ readonly webSocket: readonly ["wss://rpc.testnet.arc.network", "wss://rpc.quicknode.testnet.arc.network"];
10590
+ };
10591
+ };
10592
+ sourceId?: number | undefined | undefined;
10593
+ testnet: true;
10594
+ custom?: Record<string, unknown> | undefined;
10595
+ extendSchema?: Record<string, unknown> | undefined;
10596
+ fees?: import("viem").ChainFees<undefined> | undefined;
10597
+ prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
10598
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
10599
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
10600
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
10601
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
10602
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
10603
+ }] | undefined;
10604
+ serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
10605
+ verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
10606
+ readonly blockchainId: "ARC-TESTNET";
10607
+ readonly blockchainVm: "EVM";
10608
+ readonly formatters?: undefined | undefined;
10124
10609
  }, {
10125
10610
  blockExplorers: {
10126
10611
  readonly default: {
@@ -10327,6 +10812,7 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
10327
10812
  sourceId: 1;
10328
10813
  testnet?: boolean | undefined | undefined;
10329
10814
  custom?: Record<string, unknown> | undefined;
10815
+ extendSchema?: Record<string, unknown> | undefined;
10330
10816
  fees?: import("viem").ChainFees<undefined> | undefined;
10331
10817
  formatters: {
10332
10818
  readonly block: {
@@ -10392,16 +10878,16 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
10392
10878
  r: import("viem").Hex;
10393
10879
  s: import("viem").Hex;
10394
10880
  v: bigint;
10395
- value: bigint;
10396
- gas: bigint;
10397
10881
  to: import("abitype").Address | null;
10398
10882
  from: import("abitype").Address;
10883
+ gas: bigint;
10399
10884
  nonce: number;
10885
+ value: bigint;
10400
10886
  blockHash: `0x${string}` | null;
10401
10887
  blockNumber: bigint | null;
10402
- transactionIndex: number | null;
10403
10888
  hash: import("viem").Hash;
10404
10889
  input: import("viem").Hex;
10890
+ transactionIndex: number | null;
10405
10891
  typeHex: import("viem").Hex | null;
10406
10892
  accessList?: undefined | undefined;
10407
10893
  authorizationList?: undefined | undefined;
@@ -10538,6 +11024,7 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
10538
11024
  blobGasUsed?: bigint | undefined;
10539
11025
  blockHash: import("viem").Hash;
10540
11026
  blockNumber: bigint;
11027
+ blockTimestamp?: bigint | undefined;
10541
11028
  contractAddress: import("abitype").Address | null | undefined;
10542
11029
  cumulativeGasUsed: bigint;
10543
11030
  effectiveGasPrice: bigint;
@@ -10559,9 +11046,17 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
10559
11046
  type: "transactionReceipt";
10560
11047
  };
10561
11048
  };
11049
+ prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
11050
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
11051
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
11052
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
11053
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
11054
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
11055
+ }] | undefined;
10562
11056
  serializers: {
10563
11057
  readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
10564
11058
  };
11059
+ verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
10565
11060
  readonly blockchainId: "UNI";
10566
11061
  readonly blockchainVm: "EVM";
10567
11062
  }, {
@@ -10770,6 +11265,7 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
10770
11265
  sourceId: 11155111;
10771
11266
  testnet: true;
10772
11267
  custom?: Record<string, unknown> | undefined;
11268
+ extendSchema?: Record<string, unknown> | undefined;
10773
11269
  fees?: import("viem").ChainFees<undefined> | undefined;
10774
11270
  formatters: {
10775
11271
  readonly block: {
@@ -10835,16 +11331,16 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
10835
11331
  r: import("viem").Hex;
10836
11332
  s: import("viem").Hex;
10837
11333
  v: bigint;
10838
- value: bigint;
10839
- gas: bigint;
10840
11334
  to: import("abitype").Address | null;
10841
11335
  from: import("abitype").Address;
11336
+ gas: bigint;
10842
11337
  nonce: number;
11338
+ value: bigint;
10843
11339
  blockHash: `0x${string}` | null;
10844
11340
  blockNumber: bigint | null;
10845
- transactionIndex: number | null;
10846
11341
  hash: import("viem").Hash;
10847
11342
  input: import("viem").Hex;
11343
+ transactionIndex: number | null;
10848
11344
  typeHex: import("viem").Hex | null;
10849
11345
  accessList?: undefined | undefined;
10850
11346
  authorizationList?: undefined | undefined;
@@ -10981,6 +11477,7 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
10981
11477
  blobGasUsed?: bigint | undefined;
10982
11478
  blockHash: import("viem").Hash;
10983
11479
  blockNumber: bigint;
11480
+ blockTimestamp?: bigint | undefined;
10984
11481
  contractAddress: import("abitype").Address | null | undefined;
10985
11482
  cumulativeGasUsed: bigint;
10986
11483
  effectiveGasPrice: bigint;
@@ -11002,9 +11499,17 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
11002
11499
  type: "transactionReceipt";
11003
11500
  };
11004
11501
  };
11502
+ prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
11503
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
11504
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
11505
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
11506
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
11507
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
11508
+ }] | undefined;
11005
11509
  serializers: {
11006
11510
  readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
11007
11511
  };
11512
+ verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
11008
11513
  readonly blockchainId: "UNI-SEPOLIA";
11009
11514
  readonly blockchainVm: "EVM";
11010
11515
  }, {
@@ -11361,6 +11866,7 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
11361
11866
  sourceId: 1;
11362
11867
  testnet?: boolean | undefined | undefined;
11363
11868
  custom?: Record<string, unknown> | undefined;
11869
+ extendSchema?: Record<string, unknown> | undefined;
11364
11870
  fees?: import("viem").ChainFees<undefined> | undefined;
11365
11871
  formatters: {
11366
11872
  readonly block: {
@@ -11426,16 +11932,16 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
11426
11932
  r: import("viem").Hex;
11427
11933
  s: import("viem").Hex;
11428
11934
  v: bigint;
11429
- value: bigint;
11430
- gas: bigint;
11431
11935
  to: import("abitype").Address | null;
11432
11936
  from: import("abitype").Address;
11937
+ gas: bigint;
11433
11938
  nonce: number;
11939
+ value: bigint;
11434
11940
  blockHash: `0x${string}` | null;
11435
11941
  blockNumber: bigint | null;
11436
- transactionIndex: number | null;
11437
11942
  hash: import("viem").Hash;
11438
11943
  input: import("viem").Hex;
11944
+ transactionIndex: number | null;
11439
11945
  typeHex: import("viem").Hex | null;
11440
11946
  accessList?: undefined | undefined;
11441
11947
  authorizationList?: undefined | undefined;
@@ -11572,6 +12078,7 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
11572
12078
  blobGasUsed?: bigint | undefined;
11573
12079
  blockHash: import("viem").Hash;
11574
12080
  blockNumber: bigint;
12081
+ blockTimestamp?: bigint | undefined;
11575
12082
  contractAddress: import("abitype").Address | null | undefined;
11576
12083
  cumulativeGasUsed: bigint;
11577
12084
  effectiveGasPrice: bigint;
@@ -11593,9 +12100,17 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
11593
12100
  type: "transactionReceipt";
11594
12101
  };
11595
12102
  };
12103
+ prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
12104
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
12105
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
12106
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
12107
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
12108
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
12109
+ }] | undefined;
11596
12110
  serializers: {
11597
12111
  readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
11598
12112
  };
12113
+ verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
11599
12114
  readonly blockchainId: "BASE";
11600
12115
  readonly blockchainVm: "EVM";
11601
12116
  }, {
@@ -11952,6 +12467,7 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
11952
12467
  sourceId: 11155111;
11953
12468
  testnet: true;
11954
12469
  custom?: Record<string, unknown> | undefined;
12470
+ extendSchema?: Record<string, unknown> | undefined;
11955
12471
  fees?: import("viem").ChainFees<undefined> | undefined;
11956
12472
  formatters: {
11957
12473
  readonly block: {
@@ -12017,16 +12533,16 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
12017
12533
  r: import("viem").Hex;
12018
12534
  s: import("viem").Hex;
12019
12535
  v: bigint;
12020
- value: bigint;
12021
- gas: bigint;
12022
12536
  to: import("abitype").Address | null;
12023
12537
  from: import("abitype").Address;
12538
+ gas: bigint;
12024
12539
  nonce: number;
12540
+ value: bigint;
12025
12541
  blockHash: `0x${string}` | null;
12026
12542
  blockNumber: bigint | null;
12027
- transactionIndex: number | null;
12028
12543
  hash: import("viem").Hash;
12029
12544
  input: import("viem").Hex;
12545
+ transactionIndex: number | null;
12030
12546
  typeHex: import("viem").Hex | null;
12031
12547
  accessList?: undefined | undefined;
12032
12548
  authorizationList?: undefined | undefined;
@@ -12163,6 +12679,7 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
12163
12679
  blobGasUsed?: bigint | undefined;
12164
12680
  blockHash: import("viem").Hash;
12165
12681
  blockNumber: bigint;
12682
+ blockTimestamp?: bigint | undefined;
12166
12683
  contractAddress: import("abitype").Address | null | undefined;
12167
12684
  cumulativeGasUsed: bigint;
12168
12685
  effectiveGasPrice: bigint;
@@ -12184,9 +12701,17 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
12184
12701
  type: "transactionReceipt";
12185
12702
  };
12186
12703
  };
12704
+ prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
12705
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
12706
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
12707
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
12708
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
12709
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
12710
+ }] | undefined;
12187
12711
  serializers: {
12188
12712
  readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
12189
12713
  };
12714
+ verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
12190
12715
  readonly blockchainId: "BASE-SEPOLIA";
12191
12716
  readonly blockchainVm: "EVM";
12192
12717
  readonly network: "base-sepolia";
@@ -12401,6 +12926,7 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
12401
12926
  sourceId: 1;
12402
12927
  testnet?: boolean | undefined | undefined;
12403
12928
  custom?: Record<string, unknown> | undefined;
12929
+ extendSchema?: Record<string, unknown> | undefined;
12404
12930
  fees?: import("viem").ChainFees<undefined> | undefined;
12405
12931
  formatters: {
12406
12932
  readonly block: {
@@ -12466,16 +12992,16 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
12466
12992
  r: import("viem").Hex;
12467
12993
  s: import("viem").Hex;
12468
12994
  v: bigint;
12469
- value: bigint;
12470
- gas: bigint;
12471
12995
  to: import("abitype").Address | null;
12472
12996
  from: import("abitype").Address;
12997
+ gas: bigint;
12473
12998
  nonce: number;
12999
+ value: bigint;
12474
13000
  blockHash: `0x${string}` | null;
12475
13001
  blockNumber: bigint | null;
12476
- transactionIndex: number | null;
12477
13002
  hash: import("viem").Hash;
12478
13003
  input: import("viem").Hex;
13004
+ transactionIndex: number | null;
12479
13005
  typeHex: import("viem").Hex | null;
12480
13006
  accessList?: undefined | undefined;
12481
13007
  authorizationList?: undefined | undefined;
@@ -12612,6 +13138,7 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
12612
13138
  blobGasUsed?: bigint | undefined;
12613
13139
  blockHash: import("viem").Hash;
12614
13140
  blockNumber: bigint;
13141
+ blockTimestamp?: bigint | undefined;
12615
13142
  contractAddress: import("abitype").Address | null | undefined;
12616
13143
  cumulativeGasUsed: bigint;
12617
13144
  effectiveGasPrice: bigint;
@@ -12633,9 +13160,17 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
12633
13160
  type: "transactionReceipt";
12634
13161
  };
12635
13162
  };
13163
+ prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
13164
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
13165
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
13166
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
13167
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
13168
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
13169
+ }] | undefined;
12636
13170
  serializers: {
12637
13171
  readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
12638
13172
  };
13173
+ verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
12639
13174
  readonly blockchainId: "OP";
12640
13175
  readonly blockchainVm: "EVM";
12641
13176
  }, {
@@ -12849,6 +13384,7 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
12849
13384
  sourceId: 11155111;
12850
13385
  testnet: true;
12851
13386
  custom?: Record<string, unknown> | undefined;
13387
+ extendSchema?: Record<string, unknown> | undefined;
12852
13388
  fees?: import("viem").ChainFees<undefined> | undefined;
12853
13389
  formatters: {
12854
13390
  readonly block: {
@@ -12914,16 +13450,16 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
12914
13450
  r: import("viem").Hex;
12915
13451
  s: import("viem").Hex;
12916
13452
  v: bigint;
12917
- value: bigint;
12918
- gas: bigint;
12919
13453
  to: import("abitype").Address | null;
12920
13454
  from: import("abitype").Address;
13455
+ gas: bigint;
12921
13456
  nonce: number;
13457
+ value: bigint;
12922
13458
  blockHash: `0x${string}` | null;
12923
13459
  blockNumber: bigint | null;
12924
- transactionIndex: number | null;
12925
13460
  hash: import("viem").Hash;
12926
13461
  input: import("viem").Hex;
13462
+ transactionIndex: number | null;
12927
13463
  typeHex: import("viem").Hex | null;
12928
13464
  accessList?: undefined | undefined;
12929
13465
  authorizationList?: undefined | undefined;
@@ -13060,6 +13596,7 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
13060
13596
  blobGasUsed?: bigint | undefined;
13061
13597
  blockHash: import("viem").Hash;
13062
13598
  blockNumber: bigint;
13599
+ blockTimestamp?: bigint | undefined;
13063
13600
  contractAddress: import("abitype").Address | null | undefined;
13064
13601
  cumulativeGasUsed: bigint;
13065
13602
  effectiveGasPrice: bigint;
@@ -13081,9 +13618,17 @@ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
13081
13618
  type: "transactionReceipt";
13082
13619
  };
13083
13620
  };
13621
+ prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
13622
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
13623
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
13624
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
13625
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
13626
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
13627
+ }] | undefined;
13084
13628
  serializers: {
13085
13629
  readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
13086
13630
  };
13631
+ verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
13087
13632
  readonly blockchainId: "OP-SEPOLIA";
13088
13633
  readonly blockchainVm: "EVM";
13089
13634
  }];