0xtrails 0.14.0 → 0.15.0

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 (160) hide show
  1. package/dist/abis/requireUtils.d.ts +134 -0
  2. package/dist/abis/requireUtils.d.ts.map +1 -0
  3. package/dist/abis/trailsHydrate.d.ts +1 -0
  4. package/dist/abis/trailsHydrate.d.ts.map +1 -1
  5. package/dist/abis/trailsRouter.d.ts.map +1 -1
  6. package/dist/actions/actionBuilder.d.ts +414 -0
  7. package/dist/actions/actionBuilder.d.ts.map +1 -0
  8. package/dist/actions/constants.d.ts +1853 -0
  9. package/dist/actions/constants.d.ts.map +1 -0
  10. package/dist/actions/custom-integrations/sushiswapV3/addresses.d.ts +4 -0
  11. package/dist/actions/custom-integrations/sushiswapV3/addresses.d.ts.map +1 -0
  12. package/dist/actions/custom-integrations/sushiswapV3/calldata.d.ts +4 -0
  13. package/dist/actions/custom-integrations/sushiswapV3/calldata.d.ts.map +1 -0
  14. package/dist/actions/custom-integrations/sushiswapV3/calls.d.ts +28 -0
  15. package/dist/actions/custom-integrations/sushiswapV3/calls.d.ts.map +1 -0
  16. package/dist/actions/custom-integrations/sushiswapV3/helpers.d.ts +15 -0
  17. package/dist/actions/custom-integrations/sushiswapV3/helpers.d.ts.map +1 -0
  18. package/dist/actions/custom-integrations/sushiswapV3/sushiswapV3.d.ts +9 -0
  19. package/dist/actions/custom-integrations/sushiswapV3/sushiswapV3.d.ts.map +1 -0
  20. package/dist/actions/custom-integrations/sushiswapV3/types.d.ts +95 -0
  21. package/dist/actions/custom-integrations/sushiswapV3/types.d.ts.map +1 -0
  22. package/dist/actions/custom-integrations/uniswapV3/addresses.d.ts +4 -0
  23. package/dist/actions/custom-integrations/uniswapV3/addresses.d.ts.map +1 -0
  24. package/dist/actions/custom-integrations/uniswapV3/calldata.d.ts +4 -0
  25. package/dist/actions/custom-integrations/uniswapV3/calldata.d.ts.map +1 -0
  26. package/dist/actions/custom-integrations/uniswapV3/calls.d.ts +50 -0
  27. package/dist/actions/custom-integrations/uniswapV3/calls.d.ts.map +1 -0
  28. package/dist/actions/custom-integrations/uniswapV3/helpers.d.ts +23 -0
  29. package/dist/actions/custom-integrations/uniswapV3/helpers.d.ts.map +1 -0
  30. package/dist/actions/custom-integrations/uniswapV3/types.d.ts +90 -0
  31. package/dist/actions/custom-integrations/uniswapV3/types.d.ts.map +1 -0
  32. package/dist/actions/custom-integrations/uniswapV3/uniswapV3.d.ts +9 -0
  33. package/dist/actions/custom-integrations/uniswapV3/uniswapV3.d.ts.map +1 -0
  34. package/dist/actions/destinationCalls.d.ts +17 -0
  35. package/dist/actions/destinationCalls.d.ts.map +1 -0
  36. package/dist/actions/dynamic.d.ts +97 -0
  37. package/dist/actions/dynamic.d.ts.map +1 -0
  38. package/dist/actions/hooks/useEarnBalances.d.ts +53 -0
  39. package/dist/actions/hooks/useEarnBalances.d.ts.map +1 -0
  40. package/dist/actions/hooks/useEarnMarkets.d.ts +29 -0
  41. package/dist/actions/hooks/useEarnMarkets.d.ts.map +1 -0
  42. package/dist/actions/hooks/useEarnProviders.d.ts +18 -0
  43. package/dist/actions/hooks/useEarnProviders.d.ts.map +1 -0
  44. package/dist/actions/hooks/useResolveActions.d.ts +28 -0
  45. package/dist/actions/hooks/useResolveActions.d.ts.map +1 -0
  46. package/dist/actions/index.d.ts +8 -0
  47. package/dist/actions/index.d.ts.map +1 -0
  48. package/dist/actions/index.js +13 -0
  49. package/dist/actions/resolvers.d.ts +30 -0
  50. package/dist/actions/resolvers.d.ts.map +1 -0
  51. package/dist/actions/types/earn.d.ts +51 -0
  52. package/dist/actions/types/earn.d.ts.map +1 -0
  53. package/dist/actions/types.d.ts +303 -0
  54. package/dist/actions/types.d.ts.map +1 -0
  55. package/dist/actions/utils.d.ts +181 -0
  56. package/dist/actions/utils.d.ts.map +1 -0
  57. package/dist/chainSwitch.d.ts.map +1 -1
  58. package/dist/chains-DttlfV-6.js +4 -0
  59. package/dist/chains-ccVR_-73.js +655 -0
  60. package/dist/chains.d.ts.map +1 -1
  61. package/dist/hooks/persistedToken.d.ts +22 -0
  62. package/dist/hooks/persistedToken.d.ts.map +1 -0
  63. package/dist/hooks/prepareTrailsSendTransactionDestination.d.ts +26 -0
  64. package/dist/hooks/prepareTrailsSendTransactionDestination.d.ts.map +1 -0
  65. package/dist/hooks/useCustomTokenSearch.d.ts +2 -1
  66. package/dist/hooks/useCustomTokenSearch.d.ts.map +1 -1
  67. package/dist/hooks/useDestinationSelectedToken.d.ts +8 -0
  68. package/dist/hooks/useDestinationSelectedToken.d.ts.map +1 -1
  69. package/dist/hooks/useOriginSelectedToken.d.ts.map +1 -1
  70. package/dist/hooks/useQuote.d.ts +201 -21
  71. package/dist/hooks/useQuote.d.ts.map +1 -1
  72. package/dist/hooks/useSendForm.d.ts +5 -2
  73. package/dist/hooks/useSendForm.d.ts.map +1 -1
  74. package/dist/hooks/useTokenList.d.ts +2 -1
  75. package/dist/hooks/useTokenList.d.ts.map +1 -1
  76. package/dist/hooks/useTrailsSendTransaction.d.ts +93 -5
  77. package/dist/hooks/useTrailsSendTransaction.d.ts.map +1 -1
  78. package/dist/hydrate/index.d.ts +3 -1
  79. package/dist/hydrate/index.d.ts.map +1 -1
  80. package/dist/hydrate/index.js +10 -7
  81. package/dist/hydrate/multicall.d.ts +69 -0
  82. package/dist/hydrate/multicall.d.ts.map +1 -0
  83. package/dist/hydrate/source.d.ts +11 -0
  84. package/dist/hydrate/source.d.ts.map +1 -0
  85. package/dist/hydrate/types.d.ts +3 -1
  86. package/dist/hydrate/types.d.ts.map +1 -1
  87. package/dist/{hydrate-Cr9eaeDK.js → hydrate-BsQ8nPlI.js} +367 -139
  88. package/dist/index.d.ts +29 -2
  89. package/dist/index.d.ts.map +1 -1
  90. package/dist/index.js +189 -157
  91. package/dist/intentProtocolEncoding.d.ts +5 -0
  92. package/dist/intentProtocolEncoding.d.ts.map +1 -1
  93. package/dist/intentProtocolResolver.d.ts.map +1 -1
  94. package/dist/placeholder.d.ts +129 -5
  95. package/dist/placeholder.d.ts.map +1 -1
  96. package/dist/poolUtils.d.ts +0 -14
  97. package/dist/poolUtils.d.ts.map +1 -1
  98. package/dist/prepareSend.d.ts.map +1 -1
  99. package/dist/query/balance.fetchers.d.ts +7 -1
  100. package/dist/query/balance.fetchers.d.ts.map +1 -1
  101. package/dist/{src-4HYDQv2T.js → src-CQhZqidH.js} +34729 -31934
  102. package/dist/tokens.d.ts.map +1 -1
  103. package/dist/transactionIntent/handlers/intentHandler.d.ts +1 -0
  104. package/dist/transactionIntent/handlers/intentHandler.d.ts.map +1 -1
  105. package/dist/transactionIntent/types.d.ts +1 -0
  106. package/dist/transactionIntent/types.d.ts.map +1 -1
  107. package/dist/umd/trails.min.js +254 -252
  108. package/dist/utils/validation.d.ts +14 -0
  109. package/dist/utils/validation.d.ts.map +1 -1
  110. package/dist/widget/components/ChainList.d.ts +2 -0
  111. package/dist/widget/components/ChainList.d.ts.map +1 -1
  112. package/dist/widget/components/ClassicSwap.d.ts.map +1 -1
  113. package/dist/widget/components/EarnMarkets.d.ts +9 -0
  114. package/dist/widget/components/EarnMarkets.d.ts.map +1 -0
  115. package/dist/widget/components/EarnPoolsFilters.d.ts +7 -1
  116. package/dist/widget/components/EarnPoolsFilters.d.ts.map +1 -1
  117. package/dist/widget/components/{PoolWithdraw.d.ts → EarnWithdraw.d.ts} +5 -5
  118. package/dist/widget/components/{PoolWithdraw.d.ts.map → EarnWithdraw.d.ts.map} +1 -1
  119. package/dist/widget/components/Fund.d.ts.map +1 -1
  120. package/dist/widget/components/HookModalContent.d.ts.map +1 -1
  121. package/dist/widget/components/Pay.d.ts.map +1 -1
  122. package/dist/widget/components/PoolDeposit.d.ts.map +1 -1
  123. package/dist/widget/components/TokenSelector.d.ts +1 -0
  124. package/dist/widget/components/TokenSelector.d.ts.map +1 -1
  125. package/dist/widget/components/Withdraw.d.ts.map +1 -1
  126. package/dist/widget/components/earnMarketUtils.d.ts +11 -0
  127. package/dist/widget/components/earnMarketUtils.d.ts.map +1 -0
  128. package/dist/widget/components/earnNetworks.d.ts +6 -0
  129. package/dist/widget/components/earnNetworks.d.ts.map +1 -0
  130. package/dist/widget/index.js +14 -14
  131. package/dist/widget/modes/EarnWidget.d.ts +19 -12
  132. package/dist/widget/modes/EarnWidget.d.ts.map +1 -1
  133. package/dist/widget/modes/FundWidget.d.ts +5 -11
  134. package/dist/widget/modes/FundWidget.d.ts.map +1 -1
  135. package/dist/widget/modes/PayWidget.d.ts +6 -12
  136. package/dist/widget/modes/PayWidget.d.ts.map +1 -1
  137. package/dist/widget/modes/SwapWidget.d.ts +5 -11
  138. package/dist/widget/modes/SwapWidget.d.ts.map +1 -1
  139. package/dist/widget/modes/WithdrawWidget.d.ts +27 -11
  140. package/dist/widget/modes/WithdrawWidget.d.ts.map +1 -1
  141. package/dist/widget/providers/WidgetProviderTree.d.ts.map +1 -1
  142. package/dist/widget/shared/destinationDefaultToken.d.ts +15 -0
  143. package/dist/widget/shared/destinationDefaultToken.d.ts.map +1 -0
  144. package/dist/widget/shared/resolution.d.ts +2 -1
  145. package/dist/widget/shared/resolution.d.ts.map +1 -1
  146. package/dist/widget/shared/resolvePaymentSource.d.ts +2 -0
  147. package/dist/widget/shared/resolvePaymentSource.d.ts.map +1 -1
  148. package/dist/widget/shared/tokenAllowlist.d.ts +36 -0
  149. package/dist/widget/shared/tokenAllowlist.d.ts.map +1 -0
  150. package/dist/widget/shared/types.d.ts +70 -14
  151. package/dist/widget/shared/types.d.ts.map +1 -1
  152. package/dist/widget/styles.gen.d.ts +2 -0
  153. package/dist/widget/styles.gen.d.ts.map +1 -0
  154. package/dist/widget/widget.d.ts +2 -0
  155. package/dist/widget/widget.d.ts.map +1 -1
  156. package/package.json +8 -3
  157. package/dist/chains-C1NhDLF_.js +0 -4
  158. package/dist/chains-CcoarGia.js +0 -658
  159. package/dist/widget/styles.d.ts +0 -2
  160. package/dist/widget/styles.d.ts.map +0 -1
@@ -0,0 +1,1853 @@
1
+ import { FeePercent } from './types.js';
2
+ /** Chain name → Chain, for .onChain("polygon") / .onChain("base") etc.
3
+ * Keys are compatible with the Trails API network identifiers. */
4
+ export declare const supportedChainsByName: {
5
+ readonly apechain: {
6
+ blockExplorers: {
7
+ readonly default: {
8
+ readonly name: "Apescan";
9
+ readonly url: "https://apescan.io";
10
+ readonly apiUrl: "https://api.apescan.io/api";
11
+ };
12
+ };
13
+ blockTime?: number | undefined | undefined;
14
+ contracts: {
15
+ readonly multicall3: {
16
+ readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
17
+ readonly blockCreated: 20889;
18
+ };
19
+ };
20
+ ensTlds?: readonly string[] | undefined;
21
+ id: 33139;
22
+ name: "ApeChain";
23
+ nativeCurrency: {
24
+ readonly name: "ApeCoin";
25
+ readonly symbol: "APE";
26
+ readonly decimals: 18;
27
+ };
28
+ experimental_preconfirmationTime?: number | undefined | undefined;
29
+ rpcUrls: {
30
+ readonly default: {
31
+ readonly http: readonly ["https://rpc.apechain.com/http"];
32
+ readonly webSocket: readonly ["wss://rpc.apechain.com/ws"];
33
+ };
34
+ };
35
+ sourceId: 42161;
36
+ testnet?: boolean | undefined | undefined;
37
+ custom?: Record<string, unknown> | undefined;
38
+ extendSchema?: Record<string, unknown> | undefined;
39
+ fees?: import('viem').ChainFees<undefined> | undefined;
40
+ formatters?: undefined;
41
+ prepareTransactionRequest?: ((args: import('viem').PrepareTransactionRequestParameters, options: {
42
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
43
+ }) => Promise<import('viem').PrepareTransactionRequestParameters>) | [fn: ((args: import('viem').PrepareTransactionRequestParameters, options: {
44
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
45
+ }) => Promise<import('viem').PrepareTransactionRequestParameters>) | undefined, options: {
46
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
47
+ }] | undefined;
48
+ serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
49
+ verifyHash?: ((client: import('viem').Client, parameters: import('viem').VerifyHashActionParameters) => Promise<import('viem').VerifyHashActionReturnType>) | undefined;
50
+ };
51
+ readonly arbitrum: {
52
+ blockExplorers: {
53
+ readonly default: {
54
+ readonly name: "Arbiscan";
55
+ readonly url: "https://arbiscan.io";
56
+ readonly apiUrl: "https://api.arbiscan.io/api";
57
+ };
58
+ };
59
+ blockTime: 250;
60
+ contracts: {
61
+ readonly multicall3: {
62
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
63
+ readonly blockCreated: 7654707;
64
+ };
65
+ };
66
+ ensTlds?: readonly string[] | undefined;
67
+ id: 42161;
68
+ name: "Arbitrum One";
69
+ nativeCurrency: {
70
+ readonly name: "Ether";
71
+ readonly symbol: "ETH";
72
+ readonly decimals: 18;
73
+ };
74
+ experimental_preconfirmationTime?: number | undefined | undefined;
75
+ rpcUrls: {
76
+ readonly default: {
77
+ readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
78
+ };
79
+ };
80
+ sourceId?: number | undefined | undefined;
81
+ testnet?: boolean | undefined | undefined;
82
+ custom?: Record<string, unknown> | undefined;
83
+ extendSchema?: Record<string, unknown> | undefined;
84
+ fees?: import('viem').ChainFees<undefined> | undefined;
85
+ formatters?: undefined;
86
+ prepareTransactionRequest?: ((args: import('viem').PrepareTransactionRequestParameters, options: {
87
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
88
+ }) => Promise<import('viem').PrepareTransactionRequestParameters>) | [fn: ((args: import('viem').PrepareTransactionRequestParameters, options: {
89
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
90
+ }) => Promise<import('viem').PrepareTransactionRequestParameters>) | undefined, options: {
91
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
92
+ }] | undefined;
93
+ serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
94
+ verifyHash?: ((client: import('viem').Client, parameters: import('viem').VerifyHashActionParameters) => Promise<import('viem').VerifyHashActionReturnType>) | undefined;
95
+ };
96
+ readonly "arbitrum-nova": {
97
+ blockExplorers: {
98
+ readonly default: {
99
+ readonly name: "Arbiscan";
100
+ readonly url: "https://nova.arbiscan.io";
101
+ readonly apiUrl: "https://api-nova.arbiscan.io/api";
102
+ };
103
+ };
104
+ blockTime?: number | undefined | undefined;
105
+ contracts: {
106
+ readonly multicall3: {
107
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
108
+ readonly blockCreated: 1746963;
109
+ };
110
+ };
111
+ ensTlds?: readonly string[] | undefined;
112
+ id: 42170;
113
+ name: "Arbitrum Nova";
114
+ nativeCurrency: {
115
+ readonly name: "Ether";
116
+ readonly symbol: "ETH";
117
+ readonly decimals: 18;
118
+ };
119
+ experimental_preconfirmationTime?: number | undefined | undefined;
120
+ rpcUrls: {
121
+ readonly default: {
122
+ readonly http: readonly ["https://nova.arbitrum.io/rpc"];
123
+ };
124
+ };
125
+ sourceId?: number | undefined | undefined;
126
+ testnet?: boolean | undefined | undefined;
127
+ custom?: Record<string, unknown> | undefined;
128
+ extendSchema?: Record<string, unknown> | undefined;
129
+ fees?: import('viem').ChainFees<undefined> | undefined;
130
+ formatters?: undefined;
131
+ prepareTransactionRequest?: ((args: import('viem').PrepareTransactionRequestParameters, options: {
132
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
133
+ }) => Promise<import('viem').PrepareTransactionRequestParameters>) | [fn: ((args: import('viem').PrepareTransactionRequestParameters, options: {
134
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
135
+ }) => Promise<import('viem').PrepareTransactionRequestParameters>) | undefined, options: {
136
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
137
+ }] | undefined;
138
+ serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
139
+ verifyHash?: ((client: import('viem').Client, parameters: import('viem').VerifyHashActionParameters) => Promise<import('viem').VerifyHashActionReturnType>) | undefined;
140
+ };
141
+ readonly avalanche: {
142
+ blockExplorers: {
143
+ readonly default: {
144
+ readonly name: "SnowTrace";
145
+ readonly url: "https://snowtrace.io";
146
+ readonly apiUrl: "https://api.snowtrace.io";
147
+ };
148
+ };
149
+ blockTime: 1700;
150
+ contracts: {
151
+ readonly multicall3: {
152
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
153
+ readonly blockCreated: 11907934;
154
+ };
155
+ };
156
+ ensTlds?: readonly string[] | undefined;
157
+ id: 43114;
158
+ name: "Avalanche";
159
+ nativeCurrency: {
160
+ readonly decimals: 18;
161
+ readonly name: "Avalanche";
162
+ readonly symbol: "AVAX";
163
+ };
164
+ experimental_preconfirmationTime?: number | undefined | undefined;
165
+ rpcUrls: {
166
+ readonly default: {
167
+ readonly http: readonly ["https://api.avax.network/ext/bc/C/rpc"];
168
+ };
169
+ };
170
+ sourceId?: number | undefined | undefined;
171
+ testnet?: boolean | undefined | undefined;
172
+ custom?: Record<string, unknown> | undefined;
173
+ extendSchema?: Record<string, unknown> | undefined;
174
+ fees?: import('viem').ChainFees<undefined> | undefined;
175
+ formatters?: undefined;
176
+ prepareTransactionRequest?: ((args: import('viem').PrepareTransactionRequestParameters, options: {
177
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
178
+ }) => Promise<import('viem').PrepareTransactionRequestParameters>) | [fn: ((args: import('viem').PrepareTransactionRequestParameters, options: {
179
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
180
+ }) => Promise<import('viem').PrepareTransactionRequestParameters>) | undefined, options: {
181
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
182
+ }] | undefined;
183
+ serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
184
+ verifyHash?: ((client: import('viem').Client, parameters: import('viem').VerifyHashActionParameters) => Promise<import('viem').VerifyHashActionReturnType>) | undefined;
185
+ };
186
+ readonly "avalanche-c": {
187
+ blockExplorers: {
188
+ readonly default: {
189
+ readonly name: "SnowTrace";
190
+ readonly url: "https://snowtrace.io";
191
+ readonly apiUrl: "https://api.snowtrace.io";
192
+ };
193
+ };
194
+ blockTime: 1700;
195
+ contracts: {
196
+ readonly multicall3: {
197
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
198
+ readonly blockCreated: 11907934;
199
+ };
200
+ };
201
+ ensTlds?: readonly string[] | undefined;
202
+ id: 43114;
203
+ name: "Avalanche";
204
+ nativeCurrency: {
205
+ readonly decimals: 18;
206
+ readonly name: "Avalanche";
207
+ readonly symbol: "AVAX";
208
+ };
209
+ experimental_preconfirmationTime?: number | undefined | undefined;
210
+ rpcUrls: {
211
+ readonly default: {
212
+ readonly http: readonly ["https://api.avax.network/ext/bc/C/rpc"];
213
+ };
214
+ };
215
+ sourceId?: number | undefined | undefined;
216
+ testnet?: boolean | undefined | undefined;
217
+ custom?: Record<string, unknown> | undefined;
218
+ extendSchema?: Record<string, unknown> | undefined;
219
+ fees?: import('viem').ChainFees<undefined> | undefined;
220
+ formatters?: undefined;
221
+ prepareTransactionRequest?: ((args: import('viem').PrepareTransactionRequestParameters, options: {
222
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
223
+ }) => Promise<import('viem').PrepareTransactionRequestParameters>) | [fn: ((args: import('viem').PrepareTransactionRequestParameters, options: {
224
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
225
+ }) => Promise<import('viem').PrepareTransactionRequestParameters>) | undefined, options: {
226
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
227
+ }] | undefined;
228
+ serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
229
+ verifyHash?: ((client: import('viem').Client, parameters: import('viem').VerifyHashActionParameters) => Promise<import('viem').VerifyHashActionReturnType>) | undefined;
230
+ };
231
+ readonly b3: {
232
+ blockExplorers: {
233
+ readonly default: {
234
+ readonly name: "Blockscout";
235
+ readonly url: "https://explorer.b3.fun";
236
+ };
237
+ };
238
+ blockTime?: number | undefined | undefined;
239
+ contracts: {
240
+ readonly multicall3: {
241
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
242
+ readonly blockCreated: 0;
243
+ };
244
+ };
245
+ ensTlds?: readonly string[] | undefined;
246
+ id: 8333;
247
+ name: "B3";
248
+ nativeCurrency: {
249
+ readonly name: "Ether";
250
+ readonly symbol: "ETH";
251
+ readonly decimals: 18;
252
+ };
253
+ experimental_preconfirmationTime?: number | undefined | undefined;
254
+ rpcUrls: {
255
+ readonly default: {
256
+ readonly http: readonly ["https://mainnet-rpc.b3.fun/http"];
257
+ };
258
+ };
259
+ sourceId: 8453;
260
+ testnet?: boolean | undefined | undefined;
261
+ custom?: Record<string, unknown> | undefined;
262
+ extendSchema?: Record<string, unknown> | undefined;
263
+ fees?: import('viem').ChainFees<undefined> | undefined;
264
+ formatters?: undefined;
265
+ prepareTransactionRequest?: ((args: import('viem').PrepareTransactionRequestParameters, options: {
266
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
267
+ }) => Promise<import('viem').PrepareTransactionRequestParameters>) | [fn: ((args: import('viem').PrepareTransactionRequestParameters, options: {
268
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
269
+ }) => Promise<import('viem').PrepareTransactionRequestParameters>) | undefined, options: {
270
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
271
+ }] | undefined;
272
+ serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
273
+ verifyHash?: ((client: import('viem').Client, parameters: import('viem').VerifyHashActionParameters) => Promise<import('viem').VerifyHashActionReturnType>) | undefined;
274
+ };
275
+ readonly base: {
276
+ blockExplorers: {
277
+ readonly default: {
278
+ readonly name: "Basescan";
279
+ readonly url: "https://basescan.org";
280
+ readonly apiUrl: "https://api.basescan.org/api";
281
+ };
282
+ };
283
+ blockTime: 2000;
284
+ contracts: {
285
+ readonly disputeGameFactory: {
286
+ readonly 1: {
287
+ readonly address: "0x43edB88C4B80fDD2AdFF2412A7BebF9dF42cB40e";
288
+ };
289
+ };
290
+ readonly l2OutputOracle: {
291
+ readonly 1: {
292
+ readonly address: "0x56315b90c40730925ec5485cf004d835058518A0";
293
+ };
294
+ };
295
+ readonly multicall3: {
296
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
297
+ readonly blockCreated: 5022;
298
+ };
299
+ readonly portal: {
300
+ readonly 1: {
301
+ readonly address: "0x49048044D57e1C92A77f79988d21Fa8fAF74E97e";
302
+ readonly blockCreated: 17482143;
303
+ };
304
+ };
305
+ readonly l1StandardBridge: {
306
+ readonly 1: {
307
+ readonly address: "0x3154Cf16ccdb4C6d922629664174b904d80F2C35";
308
+ readonly blockCreated: 17482143;
309
+ };
310
+ };
311
+ readonly gasPriceOracle: {
312
+ readonly address: "0x420000000000000000000000000000000000000F";
313
+ };
314
+ readonly l1Block: {
315
+ readonly address: "0x4200000000000000000000000000000000000015";
316
+ };
317
+ readonly l2CrossDomainMessenger: {
318
+ readonly address: "0x4200000000000000000000000000000000000007";
319
+ };
320
+ readonly l2Erc721Bridge: {
321
+ readonly address: "0x4200000000000000000000000000000000000014";
322
+ };
323
+ readonly l2StandardBridge: {
324
+ readonly address: "0x4200000000000000000000000000000000000010";
325
+ };
326
+ readonly l2ToL1MessagePasser: {
327
+ readonly address: "0x4200000000000000000000000000000000000016";
328
+ };
329
+ };
330
+ ensTlds?: readonly string[] | undefined;
331
+ id: 8453;
332
+ name: "Base";
333
+ nativeCurrency: {
334
+ readonly name: "Ether";
335
+ readonly symbol: "ETH";
336
+ readonly decimals: 18;
337
+ };
338
+ experimental_preconfirmationTime?: number | undefined | undefined;
339
+ rpcUrls: {
340
+ readonly default: {
341
+ readonly http: readonly ["https://mainnet.base.org"];
342
+ };
343
+ };
344
+ sourceId: 1;
345
+ testnet?: boolean | undefined | undefined;
346
+ custom?: Record<string, unknown> | undefined;
347
+ extendSchema?: Record<string, unknown> | undefined;
348
+ fees?: import('viem').ChainFees<undefined> | undefined;
349
+ formatters: {
350
+ readonly block: {
351
+ exclude: [] | undefined;
352
+ format: (args: import('viem/chains').OpStackRpcBlock, action?: string | undefined) => {
353
+ baseFeePerGas: bigint | null;
354
+ blobGasUsed: bigint;
355
+ difficulty: bigint;
356
+ excessBlobGas: bigint;
357
+ extraData: import('viem').Hex;
358
+ gasLimit: bigint;
359
+ gasUsed: bigint;
360
+ hash: `0x${string}` | null;
361
+ logsBloom: `0x${string}` | null;
362
+ miner: import('viem').Address;
363
+ mixHash: import('viem').Hash;
364
+ nonce: `0x${string}` | null;
365
+ number: bigint | null;
366
+ parentBeaconBlockRoot?: `0x${string}` | undefined;
367
+ parentHash: import('viem').Hash;
368
+ receiptsRoot: import('viem').Hex;
369
+ sealFields: import('viem').Hex[];
370
+ sha3Uncles: import('viem').Hash;
371
+ size: bigint;
372
+ stateRoot: import('viem').Hash;
373
+ timestamp: bigint;
374
+ totalDifficulty: bigint | null;
375
+ transactions: `0x${string}`[] | import('viem/chains').OpStackTransaction<boolean>[];
376
+ transactionsRoot: import('viem').Hash;
377
+ uncles: import('viem').Hash[];
378
+ withdrawals?: import('viem').Withdrawal[] | undefined | undefined;
379
+ withdrawalsRoot?: `0x${string}` | undefined;
380
+ } & {};
381
+ type: "block";
382
+ };
383
+ readonly transaction: {
384
+ exclude: [] | undefined;
385
+ format: (args: import('viem/chains').OpStackRpcTransaction, action?: string | undefined) => ({
386
+ blockHash: `0x${string}` | null;
387
+ blockNumber: bigint | null;
388
+ from: import('viem').Address;
389
+ gas: bigint;
390
+ hash: import('viem').Hash;
391
+ input: import('viem').Hex;
392
+ nonce: number;
393
+ r: import('viem').Hex;
394
+ s: import('viem').Hex;
395
+ to: import('viem').Address | null;
396
+ transactionIndex: number | null;
397
+ typeHex: import('viem').Hex | null;
398
+ v: bigint;
399
+ value: bigint;
400
+ yParity: number;
401
+ gasPrice?: undefined | undefined;
402
+ maxFeePerBlobGas?: undefined | undefined;
403
+ maxFeePerGas: bigint;
404
+ maxPriorityFeePerGas: bigint;
405
+ isSystemTx?: boolean;
406
+ mint?: bigint | undefined | undefined;
407
+ sourceHash: import('viem').Hex;
408
+ type: "deposit";
409
+ } | {
410
+ r: import('viem').Hex;
411
+ s: import('viem').Hex;
412
+ v: bigint;
413
+ to: import('viem').Address | null;
414
+ from: import('viem').Address;
415
+ gas: bigint;
416
+ nonce: number;
417
+ value: bigint;
418
+ blockHash: `0x${string}` | null;
419
+ blockNumber: bigint | null;
420
+ hash: import('viem').Hash;
421
+ input: import('viem').Hex;
422
+ transactionIndex: number | null;
423
+ typeHex: import('viem').Hex | null;
424
+ accessList?: undefined | undefined;
425
+ authorizationList?: undefined | undefined;
426
+ blobVersionedHashes?: undefined | undefined;
427
+ chainId?: number | undefined;
428
+ yParity?: undefined | undefined;
429
+ type: "legacy";
430
+ gasPrice: bigint;
431
+ maxFeePerBlobGas?: undefined | undefined;
432
+ maxFeePerGas?: undefined | undefined;
433
+ maxPriorityFeePerGas?: undefined | undefined;
434
+ isSystemTx?: undefined | undefined;
435
+ mint?: undefined | undefined;
436
+ sourceHash?: undefined | undefined;
437
+ } | {
438
+ blockHash: `0x${string}` | null;
439
+ blockNumber: bigint | null;
440
+ from: import('viem').Address;
441
+ gas: bigint;
442
+ hash: import('viem').Hash;
443
+ input: import('viem').Hex;
444
+ nonce: number;
445
+ r: import('viem').Hex;
446
+ s: import('viem').Hex;
447
+ to: import('viem').Address | null;
448
+ transactionIndex: number | null;
449
+ typeHex: import('viem').Hex | null;
450
+ v: bigint;
451
+ value: bigint;
452
+ yParity: number;
453
+ accessList: import('viem').AccessList;
454
+ authorizationList?: undefined | undefined;
455
+ blobVersionedHashes?: undefined | undefined;
456
+ chainId: number;
457
+ type: "eip2930";
458
+ gasPrice: bigint;
459
+ maxFeePerBlobGas?: undefined | undefined;
460
+ maxFeePerGas?: undefined | undefined;
461
+ maxPriorityFeePerGas?: undefined | undefined;
462
+ isSystemTx?: undefined | undefined;
463
+ mint?: undefined | undefined;
464
+ sourceHash?: undefined | undefined;
465
+ } | {
466
+ blockHash: `0x${string}` | null;
467
+ blockNumber: bigint | null;
468
+ from: import('viem').Address;
469
+ gas: bigint;
470
+ hash: import('viem').Hash;
471
+ input: import('viem').Hex;
472
+ nonce: number;
473
+ r: import('viem').Hex;
474
+ s: import('viem').Hex;
475
+ to: import('viem').Address | null;
476
+ transactionIndex: number | null;
477
+ typeHex: import('viem').Hex | null;
478
+ v: bigint;
479
+ value: bigint;
480
+ yParity: number;
481
+ accessList: import('viem').AccessList;
482
+ authorizationList?: undefined | undefined;
483
+ blobVersionedHashes?: undefined | undefined;
484
+ chainId: number;
485
+ type: "eip1559";
486
+ gasPrice?: undefined | undefined;
487
+ maxFeePerBlobGas?: undefined | undefined;
488
+ maxFeePerGas: bigint;
489
+ maxPriorityFeePerGas: bigint;
490
+ isSystemTx?: undefined | undefined;
491
+ mint?: undefined | undefined;
492
+ sourceHash?: undefined | undefined;
493
+ } | {
494
+ blockHash: `0x${string}` | null;
495
+ blockNumber: bigint | null;
496
+ from: import('viem').Address;
497
+ gas: bigint;
498
+ hash: import('viem').Hash;
499
+ input: import('viem').Hex;
500
+ nonce: number;
501
+ r: import('viem').Hex;
502
+ s: import('viem').Hex;
503
+ to: import('viem').Address | null;
504
+ transactionIndex: number | null;
505
+ typeHex: import('viem').Hex | null;
506
+ v: bigint;
507
+ value: bigint;
508
+ yParity: number;
509
+ accessList: import('viem').AccessList;
510
+ authorizationList?: undefined | undefined;
511
+ blobVersionedHashes: readonly import('viem').Hex[];
512
+ chainId: number;
513
+ type: "eip4844";
514
+ gasPrice?: undefined | undefined;
515
+ maxFeePerBlobGas: bigint;
516
+ maxFeePerGas: bigint;
517
+ maxPriorityFeePerGas: bigint;
518
+ isSystemTx?: undefined | undefined;
519
+ mint?: undefined | undefined;
520
+ sourceHash?: undefined | undefined;
521
+ } | {
522
+ blockHash: `0x${string}` | null;
523
+ blockNumber: bigint | null;
524
+ from: import('viem').Address;
525
+ gas: bigint;
526
+ hash: import('viem').Hash;
527
+ input: import('viem').Hex;
528
+ nonce: number;
529
+ r: import('viem').Hex;
530
+ s: import('viem').Hex;
531
+ to: import('viem').Address | null;
532
+ transactionIndex: number | null;
533
+ typeHex: import('viem').Hex | null;
534
+ v: bigint;
535
+ value: bigint;
536
+ yParity: number;
537
+ accessList: import('viem').AccessList;
538
+ authorizationList: import('viem').SignedAuthorizationList;
539
+ blobVersionedHashes?: undefined | undefined;
540
+ chainId: number;
541
+ type: "eip7702";
542
+ gasPrice?: undefined | undefined;
543
+ maxFeePerBlobGas?: undefined | undefined;
544
+ maxFeePerGas: bigint;
545
+ maxPriorityFeePerGas: bigint;
546
+ isSystemTx?: undefined | undefined;
547
+ mint?: undefined | undefined;
548
+ sourceHash?: undefined | undefined;
549
+ }) & {};
550
+ type: "transaction";
551
+ };
552
+ readonly transactionReceipt: {
553
+ exclude: [] | undefined;
554
+ format: (args: import('viem/chains').OpStackRpcTransactionReceipt, action?: string | undefined) => {
555
+ blobGasPrice?: bigint | undefined;
556
+ blobGasUsed?: bigint | undefined;
557
+ blockHash: import('viem').Hash;
558
+ blockNumber: bigint;
559
+ contractAddress: import('viem').Address | null | undefined;
560
+ cumulativeGasUsed: bigint;
561
+ effectiveGasPrice: bigint;
562
+ from: import('viem').Address;
563
+ gasUsed: bigint;
564
+ logs: import('viem').Log<bigint, number, false>[];
565
+ logsBloom: import('viem').Hex;
566
+ root?: `0x${string}` | undefined;
567
+ status: "success" | "reverted";
568
+ to: import('viem').Address | null;
569
+ transactionHash: import('viem').Hash;
570
+ transactionIndex: number;
571
+ type: import('viem').TransactionType;
572
+ l1GasPrice: bigint | null;
573
+ l1GasUsed: bigint | null;
574
+ l1Fee: bigint | null;
575
+ l1FeeScalar: number | null;
576
+ } & {};
577
+ type: "transactionReceipt";
578
+ };
579
+ };
580
+ prepareTransactionRequest?: ((args: import('viem').PrepareTransactionRequestParameters, options: {
581
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
582
+ }) => Promise<import('viem').PrepareTransactionRequestParameters>) | [fn: ((args: import('viem').PrepareTransactionRequestParameters, options: {
583
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
584
+ }) => Promise<import('viem').PrepareTransactionRequestParameters>) | undefined, options: {
585
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
586
+ }] | undefined;
587
+ serializers: {
588
+ readonly transaction: typeof import('viem/chains').serializeTransactionOpStack;
589
+ };
590
+ verifyHash?: ((client: import('viem').Client, parameters: import('viem').VerifyHashActionParameters) => Promise<import('viem').VerifyHashActionReturnType>) | undefined;
591
+ };
592
+ readonly binance: {
593
+ blockExplorers: {
594
+ readonly default: {
595
+ readonly name: "BscScan";
596
+ readonly url: "https://bscscan.com";
597
+ readonly apiUrl: "https://api.bscscan.com/api";
598
+ };
599
+ };
600
+ blockTime: 750;
601
+ contracts: {
602
+ readonly multicall3: {
603
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
604
+ readonly blockCreated: 15921452;
605
+ };
606
+ };
607
+ ensTlds?: readonly string[] | undefined;
608
+ id: 56;
609
+ name: "BNB Smart Chain";
610
+ nativeCurrency: {
611
+ readonly decimals: 18;
612
+ readonly name: "BNB";
613
+ readonly symbol: "BNB";
614
+ };
615
+ experimental_preconfirmationTime?: number | undefined | undefined;
616
+ rpcUrls: {
617
+ readonly default: {
618
+ readonly http: readonly ["https://56.rpc.thirdweb.com"];
619
+ };
620
+ };
621
+ sourceId?: number | undefined | undefined;
622
+ testnet?: boolean | undefined | undefined;
623
+ custom?: Record<string, unknown> | undefined;
624
+ extendSchema?: Record<string, unknown> | undefined;
625
+ fees?: import('viem').ChainFees<undefined> | undefined;
626
+ formatters?: undefined;
627
+ prepareTransactionRequest?: ((args: import('viem').PrepareTransactionRequestParameters, options: {
628
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
629
+ }) => Promise<import('viem').PrepareTransactionRequestParameters>) | [fn: ((args: import('viem').PrepareTransactionRequestParameters, options: {
630
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
631
+ }) => Promise<import('viem').PrepareTransactionRequestParameters>) | undefined, options: {
632
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
633
+ }] | undefined;
634
+ serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
635
+ verifyHash?: ((client: import('viem').Client, parameters: import('viem').VerifyHashActionParameters) => Promise<import('viem').VerifyHashActionReturnType>) | undefined;
636
+ };
637
+ readonly bsc: {
638
+ blockExplorers: {
639
+ readonly default: {
640
+ readonly name: "BscScan";
641
+ readonly url: "https://bscscan.com";
642
+ readonly apiUrl: "https://api.bscscan.com/api";
643
+ };
644
+ };
645
+ blockTime: 750;
646
+ contracts: {
647
+ readonly multicall3: {
648
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
649
+ readonly blockCreated: 15921452;
650
+ };
651
+ };
652
+ ensTlds?: readonly string[] | undefined;
653
+ id: 56;
654
+ name: "BNB Smart Chain";
655
+ nativeCurrency: {
656
+ readonly decimals: 18;
657
+ readonly name: "BNB";
658
+ readonly symbol: "BNB";
659
+ };
660
+ experimental_preconfirmationTime?: number | undefined | undefined;
661
+ rpcUrls: {
662
+ readonly default: {
663
+ readonly http: readonly ["https://56.rpc.thirdweb.com"];
664
+ };
665
+ };
666
+ sourceId?: number | undefined | undefined;
667
+ testnet?: boolean | undefined | undefined;
668
+ custom?: Record<string, unknown> | undefined;
669
+ extendSchema?: Record<string, unknown> | undefined;
670
+ fees?: import('viem').ChainFees<undefined> | undefined;
671
+ formatters?: undefined;
672
+ prepareTransactionRequest?: ((args: import('viem').PrepareTransactionRequestParameters, options: {
673
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
674
+ }) => Promise<import('viem').PrepareTransactionRequestParameters>) | [fn: ((args: import('viem').PrepareTransactionRequestParameters, options: {
675
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
676
+ }) => Promise<import('viem').PrepareTransactionRequestParameters>) | undefined, options: {
677
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
678
+ }] | undefined;
679
+ serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
680
+ verifyHash?: ((client: import('viem').Client, parameters: import('viem').VerifyHashActionParameters) => Promise<import('viem').VerifyHashActionReturnType>) | undefined;
681
+ };
682
+ readonly bnb: {
683
+ blockExplorers: {
684
+ readonly default: {
685
+ readonly name: "BscScan";
686
+ readonly url: "https://bscscan.com";
687
+ readonly apiUrl: "https://api.bscscan.com/api";
688
+ };
689
+ };
690
+ blockTime: 750;
691
+ contracts: {
692
+ readonly multicall3: {
693
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
694
+ readonly blockCreated: 15921452;
695
+ };
696
+ };
697
+ ensTlds?: readonly string[] | undefined;
698
+ id: 56;
699
+ name: "BNB Smart Chain";
700
+ nativeCurrency: {
701
+ readonly decimals: 18;
702
+ readonly name: "BNB";
703
+ readonly symbol: "BNB";
704
+ };
705
+ experimental_preconfirmationTime?: number | undefined | undefined;
706
+ rpcUrls: {
707
+ readonly default: {
708
+ readonly http: readonly ["https://56.rpc.thirdweb.com"];
709
+ };
710
+ };
711
+ sourceId?: number | undefined | undefined;
712
+ testnet?: boolean | undefined | undefined;
713
+ custom?: Record<string, unknown> | undefined;
714
+ extendSchema?: Record<string, unknown> | undefined;
715
+ fees?: import('viem').ChainFees<undefined> | undefined;
716
+ formatters?: undefined;
717
+ prepareTransactionRequest?: ((args: import('viem').PrepareTransactionRequestParameters, options: {
718
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
719
+ }) => Promise<import('viem').PrepareTransactionRequestParameters>) | [fn: ((args: import('viem').PrepareTransactionRequestParameters, options: {
720
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
721
+ }) => Promise<import('viem').PrepareTransactionRequestParameters>) | undefined, options: {
722
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
723
+ }] | undefined;
724
+ serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
725
+ verifyHash?: ((client: import('viem').Client, parameters: import('viem').VerifyHashActionParameters) => Promise<import('viem').VerifyHashActionReturnType>) | undefined;
726
+ };
727
+ readonly etherlink: {
728
+ blockExplorers: {
729
+ readonly default: {
730
+ readonly name: "Etherlink";
731
+ readonly url: "https://explorer.etherlink.com";
732
+ };
733
+ };
734
+ blockTime: 4830;
735
+ contracts: {
736
+ readonly multicall3: {
737
+ readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
738
+ readonly blockCreated: 33899;
739
+ };
740
+ };
741
+ ensTlds?: readonly string[] | undefined;
742
+ id: 42793;
743
+ name: "Etherlink";
744
+ nativeCurrency: {
745
+ readonly decimals: 18;
746
+ readonly name: "Tez";
747
+ readonly symbol: "XTZ";
748
+ };
749
+ experimental_preconfirmationTime?: number | undefined | undefined;
750
+ rpcUrls: {
751
+ readonly default: {
752
+ readonly http: readonly ["https://node.mainnet.etherlink.com"];
753
+ };
754
+ };
755
+ sourceId?: number | undefined | undefined;
756
+ testnet?: boolean | undefined | undefined;
757
+ custom?: Record<string, unknown> | undefined;
758
+ extendSchema?: Record<string, unknown> | undefined;
759
+ fees?: import('viem').ChainFees<undefined> | undefined;
760
+ formatters?: undefined;
761
+ prepareTransactionRequest?: ((args: import('viem').PrepareTransactionRequestParameters, options: {
762
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
763
+ }) => Promise<import('viem').PrepareTransactionRequestParameters>) | [fn: ((args: import('viem').PrepareTransactionRequestParameters, options: {
764
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
765
+ }) => Promise<import('viem').PrepareTransactionRequestParameters>) | undefined, options: {
766
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
767
+ }] | undefined;
768
+ serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
769
+ verifyHash?: ((client: import('viem').Client, parameters: import('viem').VerifyHashActionParameters) => Promise<import('viem').VerifyHashActionReturnType>) | undefined;
770
+ };
771
+ readonly gnosis: {
772
+ blockExplorers: {
773
+ readonly default: {
774
+ readonly name: "Gnosisscan";
775
+ readonly url: "https://gnosisscan.io";
776
+ readonly apiUrl: "https://api.gnosisscan.io/api";
777
+ };
778
+ };
779
+ blockTime: 5000;
780
+ contracts: {
781
+ readonly multicall3: {
782
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
783
+ readonly blockCreated: 21022491;
784
+ };
785
+ };
786
+ ensTlds?: readonly string[] | undefined;
787
+ id: 100;
788
+ name: "Gnosis";
789
+ nativeCurrency: {
790
+ readonly decimals: 18;
791
+ readonly name: "xDAI";
792
+ readonly symbol: "XDAI";
793
+ };
794
+ experimental_preconfirmationTime?: number | undefined | undefined;
795
+ rpcUrls: {
796
+ readonly default: {
797
+ readonly http: readonly ["https://rpc.gnosischain.com"];
798
+ readonly webSocket: readonly ["wss://rpc.gnosischain.com/wss"];
799
+ };
800
+ };
801
+ sourceId?: number | undefined | undefined;
802
+ testnet?: boolean | undefined | undefined;
803
+ custom?: Record<string, unknown> | undefined;
804
+ extendSchema?: Record<string, unknown> | undefined;
805
+ fees?: import('viem').ChainFees<undefined> | undefined;
806
+ formatters?: undefined;
807
+ prepareTransactionRequest?: ((args: import('viem').PrepareTransactionRequestParameters, options: {
808
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
809
+ }) => Promise<import('viem').PrepareTransactionRequestParameters>) | [fn: ((args: import('viem').PrepareTransactionRequestParameters, options: {
810
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
811
+ }) => Promise<import('viem').PrepareTransactionRequestParameters>) | undefined, options: {
812
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
813
+ }] | undefined;
814
+ serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
815
+ verifyHash?: ((client: import('viem').Client, parameters: import('viem').VerifyHashActionParameters) => Promise<import('viem').VerifyHashActionReturnType>) | undefined;
816
+ };
817
+ readonly hyperevm: {
818
+ blockExplorers: {
819
+ readonly default: {
820
+ readonly name: "HyperEVMScan";
821
+ readonly url: "https://hyperevmscan.io";
822
+ };
823
+ };
824
+ blockTime?: number | undefined | undefined;
825
+ contracts?: {
826
+ [x: string]: import('viem').ChainContract | {
827
+ [sourceId: number]: import('viem').ChainContract | undefined;
828
+ } | undefined;
829
+ ensRegistry?: import('viem').ChainContract | undefined;
830
+ ensUniversalResolver?: import('viem').ChainContract | undefined;
831
+ multicall3?: import('viem').ChainContract | undefined;
832
+ erc6492Verifier?: import('viem').ChainContract | undefined;
833
+ } | undefined;
834
+ ensTlds?: readonly string[] | undefined;
835
+ id: 999;
836
+ name: "HyperEVM";
837
+ nativeCurrency: {
838
+ readonly name: "HYPE";
839
+ readonly symbol: "HYPE";
840
+ readonly decimals: 18;
841
+ };
842
+ experimental_preconfirmationTime?: number | undefined | undefined;
843
+ rpcUrls: {
844
+ readonly default: {
845
+ readonly http: readonly ["https://rpc.hyperliquid.xyz/evm"];
846
+ };
847
+ };
848
+ sourceId?: number | undefined | undefined;
849
+ testnet: false;
850
+ custom?: Record<string, unknown> | undefined;
851
+ extendSchema?: Record<string, unknown> | undefined;
852
+ fees?: import('viem').ChainFees<undefined> | undefined;
853
+ formatters?: undefined;
854
+ prepareTransactionRequest?: ((args: import('viem').PrepareTransactionRequestParameters, options: {
855
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
856
+ }) => Promise<import('viem').PrepareTransactionRequestParameters>) | [fn: ((args: import('viem').PrepareTransactionRequestParameters, options: {
857
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
858
+ }) => Promise<import('viem').PrepareTransactionRequestParameters>) | undefined, options: {
859
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
860
+ }] | undefined;
861
+ serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
862
+ verifyHash?: ((client: import('viem').Client, parameters: import('viem').VerifyHashActionParameters) => Promise<import('viem').VerifyHashActionReturnType>) | undefined;
863
+ };
864
+ readonly katana: {
865
+ blockExplorers: {
866
+ readonly default: {
867
+ readonly name: "katana explorer";
868
+ readonly url: "https://katanascan.com";
869
+ };
870
+ };
871
+ blockTime?: number | undefined | undefined;
872
+ contracts?: {
873
+ [x: string]: import('viem').ChainContract | {
874
+ [sourceId: number]: import('viem').ChainContract | undefined;
875
+ } | undefined;
876
+ ensRegistry?: import('viem').ChainContract | undefined;
877
+ ensUniversalResolver?: import('viem').ChainContract | undefined;
878
+ multicall3?: import('viem').ChainContract | undefined;
879
+ erc6492Verifier?: import('viem').ChainContract | undefined;
880
+ } | undefined;
881
+ ensTlds?: readonly string[] | undefined;
882
+ id: 747474;
883
+ name: "Katana";
884
+ nativeCurrency: {
885
+ readonly name: "Ether";
886
+ readonly symbol: "ETH";
887
+ readonly decimals: 18;
888
+ };
889
+ experimental_preconfirmationTime?: number | undefined | undefined;
890
+ rpcUrls: {
891
+ readonly default: {
892
+ readonly http: readonly ["https://rpc.katana.network"];
893
+ };
894
+ };
895
+ sourceId?: number | undefined | undefined;
896
+ testnet: false;
897
+ custom?: Record<string, unknown> | undefined;
898
+ extendSchema?: Record<string, unknown> | undefined;
899
+ fees?: import('viem').ChainFees<undefined> | undefined;
900
+ formatters?: undefined;
901
+ prepareTransactionRequest?: ((args: import('viem').PrepareTransactionRequestParameters, options: {
902
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
903
+ }) => Promise<import('viem').PrepareTransactionRequestParameters>) | [fn: ((args: import('viem').PrepareTransactionRequestParameters, options: {
904
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
905
+ }) => Promise<import('viem').PrepareTransactionRequestParameters>) | undefined, options: {
906
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
907
+ }] | undefined;
908
+ serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
909
+ verifyHash?: ((client: import('viem').Client, parameters: import('viem').VerifyHashActionParameters) => Promise<import('viem').VerifyHashActionReturnType>) | undefined;
910
+ readonly network: "katana";
911
+ };
912
+ readonly mainnet: {
913
+ blockExplorers: {
914
+ readonly default: {
915
+ readonly name: "Etherscan";
916
+ readonly url: "https://etherscan.io";
917
+ readonly apiUrl: "https://api.etherscan.io/api";
918
+ };
919
+ };
920
+ blockTime: 12000;
921
+ contracts: {
922
+ readonly ensUniversalResolver: {
923
+ readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
924
+ readonly blockCreated: 23085558;
925
+ };
926
+ readonly multicall3: {
927
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
928
+ readonly blockCreated: 14353601;
929
+ };
930
+ };
931
+ ensTlds?: readonly string[] | undefined;
932
+ id: 1;
933
+ name: "Ethereum";
934
+ nativeCurrency: {
935
+ readonly name: "Ether";
936
+ readonly symbol: "ETH";
937
+ readonly decimals: 18;
938
+ };
939
+ experimental_preconfirmationTime?: number | undefined | undefined;
940
+ rpcUrls: {
941
+ readonly default: {
942
+ readonly http: readonly ["https://eth.merkle.io"];
943
+ };
944
+ };
945
+ sourceId?: number | undefined | undefined;
946
+ testnet?: boolean | undefined | undefined;
947
+ custom?: Record<string, unknown> | undefined;
948
+ extendSchema?: Record<string, unknown> | undefined;
949
+ fees?: import('viem').ChainFees<undefined> | undefined;
950
+ formatters?: undefined;
951
+ prepareTransactionRequest?: ((args: import('viem').PrepareTransactionRequestParameters, options: {
952
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
953
+ }) => Promise<import('viem').PrepareTransactionRequestParameters>) | [fn: ((args: import('viem').PrepareTransactionRequestParameters, options: {
954
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
955
+ }) => Promise<import('viem').PrepareTransactionRequestParameters>) | undefined, options: {
956
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
957
+ }] | undefined;
958
+ serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
959
+ verifyHash?: ((client: import('viem').Client, parameters: import('viem').VerifyHashActionParameters) => Promise<import('viem').VerifyHashActionReturnType>) | undefined;
960
+ };
961
+ readonly ethereum: {
962
+ blockExplorers: {
963
+ readonly default: {
964
+ readonly name: "Etherscan";
965
+ readonly url: "https://etherscan.io";
966
+ readonly apiUrl: "https://api.etherscan.io/api";
967
+ };
968
+ };
969
+ blockTime: 12000;
970
+ contracts: {
971
+ readonly ensUniversalResolver: {
972
+ readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
973
+ readonly blockCreated: 23085558;
974
+ };
975
+ readonly multicall3: {
976
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
977
+ readonly blockCreated: 14353601;
978
+ };
979
+ };
980
+ ensTlds?: readonly string[] | undefined;
981
+ id: 1;
982
+ name: "Ethereum";
983
+ nativeCurrency: {
984
+ readonly name: "Ether";
985
+ readonly symbol: "ETH";
986
+ readonly decimals: 18;
987
+ };
988
+ experimental_preconfirmationTime?: number | undefined | undefined;
989
+ rpcUrls: {
990
+ readonly default: {
991
+ readonly http: readonly ["https://eth.merkle.io"];
992
+ };
993
+ };
994
+ sourceId?: number | undefined | undefined;
995
+ testnet?: boolean | undefined | undefined;
996
+ custom?: Record<string, unknown> | undefined;
997
+ extendSchema?: Record<string, unknown> | undefined;
998
+ fees?: import('viem').ChainFees<undefined> | undefined;
999
+ formatters?: undefined;
1000
+ prepareTransactionRequest?: ((args: import('viem').PrepareTransactionRequestParameters, options: {
1001
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
1002
+ }) => Promise<import('viem').PrepareTransactionRequestParameters>) | [fn: ((args: import('viem').PrepareTransactionRequestParameters, options: {
1003
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
1004
+ }) => Promise<import('viem').PrepareTransactionRequestParameters>) | undefined, options: {
1005
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
1006
+ }] | undefined;
1007
+ serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
1008
+ verifyHash?: ((client: import('viem').Client, parameters: import('viem').VerifyHashActionParameters) => Promise<import('viem').VerifyHashActionReturnType>) | undefined;
1009
+ };
1010
+ readonly monad: {
1011
+ blockExplorers: {
1012
+ readonly default: {
1013
+ readonly name: "MonadVision";
1014
+ readonly url: "https://monadvision.com";
1015
+ };
1016
+ readonly monadscan: {
1017
+ readonly name: "Monadscan";
1018
+ readonly url: "https://monadscan.com";
1019
+ readonly apiUrl: "https://api.monadscan.com/api";
1020
+ };
1021
+ };
1022
+ blockTime: 400;
1023
+ contracts: {
1024
+ readonly multicall3: {
1025
+ readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
1026
+ readonly blockCreated: 9248132;
1027
+ };
1028
+ };
1029
+ ensTlds?: readonly string[] | undefined;
1030
+ id: 143;
1031
+ name: "Monad";
1032
+ nativeCurrency: {
1033
+ readonly name: "Monad";
1034
+ readonly symbol: "MON";
1035
+ readonly decimals: 18;
1036
+ };
1037
+ experimental_preconfirmationTime?: number | undefined | undefined;
1038
+ rpcUrls: {
1039
+ readonly default: {
1040
+ readonly http: readonly ["https://rpc.monad.xyz", "https://rpc1.monad.xyz"];
1041
+ readonly webSocket: readonly ["wss://rpc.monad.xyz", "wss://rpc1.monad.xyz"];
1042
+ };
1043
+ };
1044
+ sourceId?: number | undefined | undefined;
1045
+ testnet: false;
1046
+ custom?: Record<string, unknown> | undefined;
1047
+ extendSchema?: Record<string, unknown> | undefined;
1048
+ fees?: import('viem').ChainFees<undefined> | undefined;
1049
+ formatters?: undefined;
1050
+ prepareTransactionRequest?: ((args: import('viem').PrepareTransactionRequestParameters, options: {
1051
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
1052
+ }) => Promise<import('viem').PrepareTransactionRequestParameters>) | [fn: ((args: import('viem').PrepareTransactionRequestParameters, options: {
1053
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
1054
+ }) => Promise<import('viem').PrepareTransactionRequestParameters>) | undefined, options: {
1055
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
1056
+ }] | undefined;
1057
+ serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
1058
+ verifyHash?: ((client: import('viem').Client, parameters: import('viem').VerifyHashActionParameters) => Promise<import('viem').VerifyHashActionReturnType>) | undefined;
1059
+ };
1060
+ readonly optimism: {
1061
+ blockExplorers: {
1062
+ readonly default: {
1063
+ readonly name: "Optimism Explorer";
1064
+ readonly url: "https://optimistic.etherscan.io";
1065
+ readonly apiUrl: "https://api-optimistic.etherscan.io/api";
1066
+ };
1067
+ };
1068
+ blockTime: 2000;
1069
+ contracts: {
1070
+ readonly disputeGameFactory: {
1071
+ readonly 1: {
1072
+ readonly address: "0xe5965Ab5962eDc7477C8520243A95517CD252fA9";
1073
+ };
1074
+ };
1075
+ readonly l2OutputOracle: {
1076
+ readonly 1: {
1077
+ readonly address: "0xdfe97868233d1aa22e815a266982f2cf17685a27";
1078
+ };
1079
+ };
1080
+ readonly multicall3: {
1081
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
1082
+ readonly blockCreated: 4286263;
1083
+ };
1084
+ readonly portal: {
1085
+ readonly 1: {
1086
+ readonly address: "0xbEb5Fc579115071764c7423A4f12eDde41f106Ed";
1087
+ };
1088
+ };
1089
+ readonly l1StandardBridge: {
1090
+ readonly 1: {
1091
+ readonly address: "0x99C9fc46f92E8a1c0deC1b1747d010903E884bE1";
1092
+ };
1093
+ };
1094
+ readonly gasPriceOracle: {
1095
+ readonly address: "0x420000000000000000000000000000000000000F";
1096
+ };
1097
+ readonly l1Block: {
1098
+ readonly address: "0x4200000000000000000000000000000000000015";
1099
+ };
1100
+ readonly l2CrossDomainMessenger: {
1101
+ readonly address: "0x4200000000000000000000000000000000000007";
1102
+ };
1103
+ readonly l2Erc721Bridge: {
1104
+ readonly address: "0x4200000000000000000000000000000000000014";
1105
+ };
1106
+ readonly l2StandardBridge: {
1107
+ readonly address: "0x4200000000000000000000000000000000000010";
1108
+ };
1109
+ readonly l2ToL1MessagePasser: {
1110
+ readonly address: "0x4200000000000000000000000000000000000016";
1111
+ };
1112
+ };
1113
+ ensTlds?: readonly string[] | undefined;
1114
+ id: 10;
1115
+ name: "OP Mainnet";
1116
+ nativeCurrency: {
1117
+ readonly name: "Ether";
1118
+ readonly symbol: "ETH";
1119
+ readonly decimals: 18;
1120
+ };
1121
+ experimental_preconfirmationTime?: number | undefined | undefined;
1122
+ rpcUrls: {
1123
+ readonly default: {
1124
+ readonly http: readonly ["https://mainnet.optimism.io"];
1125
+ };
1126
+ };
1127
+ sourceId: 1;
1128
+ testnet?: boolean | undefined | undefined;
1129
+ custom?: Record<string, unknown> | undefined;
1130
+ extendSchema?: Record<string, unknown> | undefined;
1131
+ fees?: import('viem').ChainFees<undefined> | undefined;
1132
+ formatters: {
1133
+ readonly block: {
1134
+ exclude: [] | undefined;
1135
+ format: (args: import('viem/chains').OpStackRpcBlock, action?: string | undefined) => {
1136
+ baseFeePerGas: bigint | null;
1137
+ blobGasUsed: bigint;
1138
+ difficulty: bigint;
1139
+ excessBlobGas: bigint;
1140
+ extraData: import('viem').Hex;
1141
+ gasLimit: bigint;
1142
+ gasUsed: bigint;
1143
+ hash: `0x${string}` | null;
1144
+ logsBloom: `0x${string}` | null;
1145
+ miner: import('viem').Address;
1146
+ mixHash: import('viem').Hash;
1147
+ nonce: `0x${string}` | null;
1148
+ number: bigint | null;
1149
+ parentBeaconBlockRoot?: `0x${string}` | undefined;
1150
+ parentHash: import('viem').Hash;
1151
+ receiptsRoot: import('viem').Hex;
1152
+ sealFields: import('viem').Hex[];
1153
+ sha3Uncles: import('viem').Hash;
1154
+ size: bigint;
1155
+ stateRoot: import('viem').Hash;
1156
+ timestamp: bigint;
1157
+ totalDifficulty: bigint | null;
1158
+ transactions: `0x${string}`[] | import('viem/chains').OpStackTransaction<boolean>[];
1159
+ transactionsRoot: import('viem').Hash;
1160
+ uncles: import('viem').Hash[];
1161
+ withdrawals?: import('viem').Withdrawal[] | undefined | undefined;
1162
+ withdrawalsRoot?: `0x${string}` | undefined;
1163
+ } & {};
1164
+ type: "block";
1165
+ };
1166
+ readonly transaction: {
1167
+ exclude: [] | undefined;
1168
+ format: (args: import('viem/chains').OpStackRpcTransaction, action?: string | undefined) => ({
1169
+ blockHash: `0x${string}` | null;
1170
+ blockNumber: bigint | null;
1171
+ from: import('viem').Address;
1172
+ gas: bigint;
1173
+ hash: import('viem').Hash;
1174
+ input: import('viem').Hex;
1175
+ nonce: number;
1176
+ r: import('viem').Hex;
1177
+ s: import('viem').Hex;
1178
+ to: import('viem').Address | null;
1179
+ transactionIndex: number | null;
1180
+ typeHex: import('viem').Hex | null;
1181
+ v: bigint;
1182
+ value: bigint;
1183
+ yParity: number;
1184
+ gasPrice?: undefined | undefined;
1185
+ maxFeePerBlobGas?: undefined | undefined;
1186
+ maxFeePerGas: bigint;
1187
+ maxPriorityFeePerGas: bigint;
1188
+ isSystemTx?: boolean;
1189
+ mint?: bigint | undefined | undefined;
1190
+ sourceHash: import('viem').Hex;
1191
+ type: "deposit";
1192
+ } | {
1193
+ r: import('viem').Hex;
1194
+ s: import('viem').Hex;
1195
+ v: bigint;
1196
+ to: import('viem').Address | null;
1197
+ from: import('viem').Address;
1198
+ gas: bigint;
1199
+ nonce: number;
1200
+ value: bigint;
1201
+ blockHash: `0x${string}` | null;
1202
+ blockNumber: bigint | null;
1203
+ hash: import('viem').Hash;
1204
+ input: import('viem').Hex;
1205
+ transactionIndex: number | null;
1206
+ typeHex: import('viem').Hex | null;
1207
+ accessList?: undefined | undefined;
1208
+ authorizationList?: undefined | undefined;
1209
+ blobVersionedHashes?: undefined | undefined;
1210
+ chainId?: number | undefined;
1211
+ yParity?: undefined | undefined;
1212
+ type: "legacy";
1213
+ gasPrice: bigint;
1214
+ maxFeePerBlobGas?: undefined | undefined;
1215
+ maxFeePerGas?: undefined | undefined;
1216
+ maxPriorityFeePerGas?: undefined | undefined;
1217
+ isSystemTx?: undefined | undefined;
1218
+ mint?: undefined | undefined;
1219
+ sourceHash?: undefined | undefined;
1220
+ } | {
1221
+ blockHash: `0x${string}` | null;
1222
+ blockNumber: bigint | null;
1223
+ from: import('viem').Address;
1224
+ gas: bigint;
1225
+ hash: import('viem').Hash;
1226
+ input: import('viem').Hex;
1227
+ nonce: number;
1228
+ r: import('viem').Hex;
1229
+ s: import('viem').Hex;
1230
+ to: import('viem').Address | null;
1231
+ transactionIndex: number | null;
1232
+ typeHex: import('viem').Hex | null;
1233
+ v: bigint;
1234
+ value: bigint;
1235
+ yParity: number;
1236
+ accessList: import('viem').AccessList;
1237
+ authorizationList?: undefined | undefined;
1238
+ blobVersionedHashes?: undefined | undefined;
1239
+ chainId: number;
1240
+ type: "eip2930";
1241
+ gasPrice: bigint;
1242
+ maxFeePerBlobGas?: undefined | undefined;
1243
+ maxFeePerGas?: undefined | undefined;
1244
+ maxPriorityFeePerGas?: undefined | undefined;
1245
+ isSystemTx?: undefined | undefined;
1246
+ mint?: undefined | undefined;
1247
+ sourceHash?: undefined | undefined;
1248
+ } | {
1249
+ blockHash: `0x${string}` | null;
1250
+ blockNumber: bigint | null;
1251
+ from: import('viem').Address;
1252
+ gas: bigint;
1253
+ hash: import('viem').Hash;
1254
+ input: import('viem').Hex;
1255
+ nonce: number;
1256
+ r: import('viem').Hex;
1257
+ s: import('viem').Hex;
1258
+ to: import('viem').Address | null;
1259
+ transactionIndex: number | null;
1260
+ typeHex: import('viem').Hex | null;
1261
+ v: bigint;
1262
+ value: bigint;
1263
+ yParity: number;
1264
+ accessList: import('viem').AccessList;
1265
+ authorizationList?: undefined | undefined;
1266
+ blobVersionedHashes?: undefined | undefined;
1267
+ chainId: number;
1268
+ type: "eip1559";
1269
+ gasPrice?: undefined | undefined;
1270
+ maxFeePerBlobGas?: undefined | undefined;
1271
+ maxFeePerGas: bigint;
1272
+ maxPriorityFeePerGas: bigint;
1273
+ isSystemTx?: undefined | undefined;
1274
+ mint?: undefined | undefined;
1275
+ sourceHash?: undefined | undefined;
1276
+ } | {
1277
+ blockHash: `0x${string}` | null;
1278
+ blockNumber: bigint | null;
1279
+ from: import('viem').Address;
1280
+ gas: bigint;
1281
+ hash: import('viem').Hash;
1282
+ input: import('viem').Hex;
1283
+ nonce: number;
1284
+ r: import('viem').Hex;
1285
+ s: import('viem').Hex;
1286
+ to: import('viem').Address | null;
1287
+ transactionIndex: number | null;
1288
+ typeHex: import('viem').Hex | null;
1289
+ v: bigint;
1290
+ value: bigint;
1291
+ yParity: number;
1292
+ accessList: import('viem').AccessList;
1293
+ authorizationList?: undefined | undefined;
1294
+ blobVersionedHashes: readonly import('viem').Hex[];
1295
+ chainId: number;
1296
+ type: "eip4844";
1297
+ gasPrice?: undefined | undefined;
1298
+ maxFeePerBlobGas: bigint;
1299
+ maxFeePerGas: bigint;
1300
+ maxPriorityFeePerGas: bigint;
1301
+ isSystemTx?: undefined | undefined;
1302
+ mint?: undefined | undefined;
1303
+ sourceHash?: undefined | undefined;
1304
+ } | {
1305
+ blockHash: `0x${string}` | null;
1306
+ blockNumber: bigint | null;
1307
+ from: import('viem').Address;
1308
+ gas: bigint;
1309
+ hash: import('viem').Hash;
1310
+ input: import('viem').Hex;
1311
+ nonce: number;
1312
+ r: import('viem').Hex;
1313
+ s: import('viem').Hex;
1314
+ to: import('viem').Address | null;
1315
+ transactionIndex: number | null;
1316
+ typeHex: import('viem').Hex | null;
1317
+ v: bigint;
1318
+ value: bigint;
1319
+ yParity: number;
1320
+ accessList: import('viem').AccessList;
1321
+ authorizationList: import('viem').SignedAuthorizationList;
1322
+ blobVersionedHashes?: undefined | undefined;
1323
+ chainId: number;
1324
+ type: "eip7702";
1325
+ gasPrice?: undefined | undefined;
1326
+ maxFeePerBlobGas?: undefined | undefined;
1327
+ maxFeePerGas: bigint;
1328
+ maxPriorityFeePerGas: bigint;
1329
+ isSystemTx?: undefined | undefined;
1330
+ mint?: undefined | undefined;
1331
+ sourceHash?: undefined | undefined;
1332
+ }) & {};
1333
+ type: "transaction";
1334
+ };
1335
+ readonly transactionReceipt: {
1336
+ exclude: [] | undefined;
1337
+ format: (args: import('viem/chains').OpStackRpcTransactionReceipt, action?: string | undefined) => {
1338
+ blobGasPrice?: bigint | undefined;
1339
+ blobGasUsed?: bigint | undefined;
1340
+ blockHash: import('viem').Hash;
1341
+ blockNumber: bigint;
1342
+ contractAddress: import('viem').Address | null | undefined;
1343
+ cumulativeGasUsed: bigint;
1344
+ effectiveGasPrice: bigint;
1345
+ from: import('viem').Address;
1346
+ gasUsed: bigint;
1347
+ logs: import('viem').Log<bigint, number, false>[];
1348
+ logsBloom: import('viem').Hex;
1349
+ root?: `0x${string}` | undefined;
1350
+ status: "success" | "reverted";
1351
+ to: import('viem').Address | null;
1352
+ transactionHash: import('viem').Hash;
1353
+ transactionIndex: number;
1354
+ type: import('viem').TransactionType;
1355
+ l1GasPrice: bigint | null;
1356
+ l1GasUsed: bigint | null;
1357
+ l1Fee: bigint | null;
1358
+ l1FeeScalar: number | null;
1359
+ } & {};
1360
+ type: "transactionReceipt";
1361
+ };
1362
+ };
1363
+ prepareTransactionRequest?: ((args: import('viem').PrepareTransactionRequestParameters, options: {
1364
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
1365
+ }) => Promise<import('viem').PrepareTransactionRequestParameters>) | [fn: ((args: import('viem').PrepareTransactionRequestParameters, options: {
1366
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
1367
+ }) => Promise<import('viem').PrepareTransactionRequestParameters>) | undefined, options: {
1368
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
1369
+ }] | undefined;
1370
+ serializers: {
1371
+ readonly transaction: typeof import('viem/chains').serializeTransactionOpStack;
1372
+ };
1373
+ verifyHash?: ((client: import('viem').Client, parameters: import('viem').VerifyHashActionParameters) => Promise<import('viem').VerifyHashActionReturnType>) | undefined;
1374
+ };
1375
+ readonly polygon: {
1376
+ blockExplorers: {
1377
+ readonly default: {
1378
+ readonly name: "PolygonScan";
1379
+ readonly url: "https://polygonscan.com";
1380
+ readonly apiUrl: "https://api.etherscan.io/v2/api";
1381
+ };
1382
+ };
1383
+ blockTime: 2000;
1384
+ contracts: {
1385
+ readonly multicall3: {
1386
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
1387
+ readonly blockCreated: 25770160;
1388
+ };
1389
+ };
1390
+ ensTlds?: readonly string[] | undefined;
1391
+ id: 137;
1392
+ name: "Polygon";
1393
+ nativeCurrency: {
1394
+ readonly name: "POL";
1395
+ readonly symbol: "POL";
1396
+ readonly decimals: 18;
1397
+ };
1398
+ experimental_preconfirmationTime?: number | undefined | undefined;
1399
+ rpcUrls: {
1400
+ readonly default: {
1401
+ readonly http: readonly ["https://polygon.drpc.org"];
1402
+ };
1403
+ };
1404
+ sourceId?: number | undefined | undefined;
1405
+ testnet?: boolean | undefined | undefined;
1406
+ custom?: Record<string, unknown> | undefined;
1407
+ extendSchema?: Record<string, unknown> | undefined;
1408
+ fees?: import('viem').ChainFees<undefined> | undefined;
1409
+ formatters?: undefined;
1410
+ prepareTransactionRequest?: ((args: import('viem').PrepareTransactionRequestParameters, options: {
1411
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
1412
+ }) => Promise<import('viem').PrepareTransactionRequestParameters>) | [fn: ((args: import('viem').PrepareTransactionRequestParameters, options: {
1413
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
1414
+ }) => Promise<import('viem').PrepareTransactionRequestParameters>) | undefined, options: {
1415
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
1416
+ }] | undefined;
1417
+ serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
1418
+ verifyHash?: ((client: import('viem').Client, parameters: import('viem').VerifyHashActionParameters) => Promise<import('viem').VerifyHashActionReturnType>) | undefined;
1419
+ };
1420
+ readonly soneium: {
1421
+ blockExplorers: {
1422
+ readonly default: {
1423
+ readonly name: "Blockscout";
1424
+ readonly url: "https://soneium.blockscout.com";
1425
+ readonly apiUrl: "https://soneium.blockscout.com/api";
1426
+ };
1427
+ };
1428
+ blockTime: 2000;
1429
+ contracts: {
1430
+ readonly disputeGameFactory: {
1431
+ readonly 1: {
1432
+ readonly address: "0x512a3d2c7a43bd9261d2b8e8c9c70d4bd4d503c0";
1433
+ };
1434
+ };
1435
+ readonly l2OutputOracle: {
1436
+ readonly 1: {
1437
+ readonly address: "0x0000000000000000000000000000000000000000";
1438
+ };
1439
+ };
1440
+ readonly portal: {
1441
+ readonly 1: {
1442
+ readonly address: "0x88e529a6ccd302c948689cd5156c83d4614fae92";
1443
+ readonly blockCreated: 7061266;
1444
+ };
1445
+ };
1446
+ readonly l1StandardBridge: {
1447
+ readonly 1: {
1448
+ readonly address: "0xeb9bf100225c214efc3e7c651ebbadcf85177607";
1449
+ readonly blockCreated: 7061266;
1450
+ };
1451
+ };
1452
+ readonly multicall3: {
1453
+ readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
1454
+ readonly blockCreated: 1;
1455
+ };
1456
+ readonly gasPriceOracle: {
1457
+ readonly address: "0x420000000000000000000000000000000000000F";
1458
+ };
1459
+ readonly l1Block: {
1460
+ readonly address: "0x4200000000000000000000000000000000000015";
1461
+ };
1462
+ readonly l2CrossDomainMessenger: {
1463
+ readonly address: "0x4200000000000000000000000000000000000007";
1464
+ };
1465
+ readonly l2Erc721Bridge: {
1466
+ readonly address: "0x4200000000000000000000000000000000000014";
1467
+ };
1468
+ readonly l2StandardBridge: {
1469
+ readonly address: "0x4200000000000000000000000000000000000010";
1470
+ };
1471
+ readonly l2ToL1MessagePasser: {
1472
+ readonly address: "0x4200000000000000000000000000000000000016";
1473
+ };
1474
+ };
1475
+ ensTlds?: readonly string[] | undefined;
1476
+ id: 1868;
1477
+ name: "Soneium Mainnet";
1478
+ nativeCurrency: {
1479
+ readonly name: "Ether";
1480
+ readonly symbol: "ETH";
1481
+ readonly decimals: 18;
1482
+ };
1483
+ experimental_preconfirmationTime?: number | undefined | undefined;
1484
+ rpcUrls: {
1485
+ readonly default: {
1486
+ readonly http: readonly ["https://rpc.soneium.org"];
1487
+ };
1488
+ };
1489
+ sourceId: 1;
1490
+ testnet?: boolean | undefined | undefined;
1491
+ custom?: Record<string, unknown> | undefined;
1492
+ extendSchema?: Record<string, unknown> | undefined;
1493
+ fees?: import('viem').ChainFees<undefined> | undefined;
1494
+ formatters: {
1495
+ readonly block: {
1496
+ exclude: [] | undefined;
1497
+ format: (args: import('viem/chains').OpStackRpcBlock, action?: string | undefined) => {
1498
+ baseFeePerGas: bigint | null;
1499
+ blobGasUsed: bigint;
1500
+ difficulty: bigint;
1501
+ excessBlobGas: bigint;
1502
+ extraData: import('viem').Hex;
1503
+ gasLimit: bigint;
1504
+ gasUsed: bigint;
1505
+ hash: `0x${string}` | null;
1506
+ logsBloom: `0x${string}` | null;
1507
+ miner: import('viem').Address;
1508
+ mixHash: import('viem').Hash;
1509
+ nonce: `0x${string}` | null;
1510
+ number: bigint | null;
1511
+ parentBeaconBlockRoot?: `0x${string}` | undefined;
1512
+ parentHash: import('viem').Hash;
1513
+ receiptsRoot: import('viem').Hex;
1514
+ sealFields: import('viem').Hex[];
1515
+ sha3Uncles: import('viem').Hash;
1516
+ size: bigint;
1517
+ stateRoot: import('viem').Hash;
1518
+ timestamp: bigint;
1519
+ totalDifficulty: bigint | null;
1520
+ transactions: `0x${string}`[] | import('viem/chains').OpStackTransaction<boolean>[];
1521
+ transactionsRoot: import('viem').Hash;
1522
+ uncles: import('viem').Hash[];
1523
+ withdrawals?: import('viem').Withdrawal[] | undefined | undefined;
1524
+ withdrawalsRoot?: `0x${string}` | undefined;
1525
+ } & {};
1526
+ type: "block";
1527
+ };
1528
+ readonly transaction: {
1529
+ exclude: [] | undefined;
1530
+ format: (args: import('viem/chains').OpStackRpcTransaction, action?: string | undefined) => ({
1531
+ blockHash: `0x${string}` | null;
1532
+ blockNumber: bigint | null;
1533
+ from: import('viem').Address;
1534
+ gas: bigint;
1535
+ hash: import('viem').Hash;
1536
+ input: import('viem').Hex;
1537
+ nonce: number;
1538
+ r: import('viem').Hex;
1539
+ s: import('viem').Hex;
1540
+ to: import('viem').Address | null;
1541
+ transactionIndex: number | null;
1542
+ typeHex: import('viem').Hex | null;
1543
+ v: bigint;
1544
+ value: bigint;
1545
+ yParity: number;
1546
+ gasPrice?: undefined | undefined;
1547
+ maxFeePerBlobGas?: undefined | undefined;
1548
+ maxFeePerGas: bigint;
1549
+ maxPriorityFeePerGas: bigint;
1550
+ isSystemTx?: boolean;
1551
+ mint?: bigint | undefined | undefined;
1552
+ sourceHash: import('viem').Hex;
1553
+ type: "deposit";
1554
+ } | {
1555
+ r: import('viem').Hex;
1556
+ s: import('viem').Hex;
1557
+ v: bigint;
1558
+ to: import('viem').Address | null;
1559
+ from: import('viem').Address;
1560
+ gas: bigint;
1561
+ nonce: number;
1562
+ value: bigint;
1563
+ blockHash: `0x${string}` | null;
1564
+ blockNumber: bigint | null;
1565
+ hash: import('viem').Hash;
1566
+ input: import('viem').Hex;
1567
+ transactionIndex: number | null;
1568
+ typeHex: import('viem').Hex | null;
1569
+ accessList?: undefined | undefined;
1570
+ authorizationList?: undefined | undefined;
1571
+ blobVersionedHashes?: undefined | undefined;
1572
+ chainId?: number | undefined;
1573
+ yParity?: undefined | undefined;
1574
+ type: "legacy";
1575
+ gasPrice: bigint;
1576
+ maxFeePerBlobGas?: undefined | undefined;
1577
+ maxFeePerGas?: undefined | undefined;
1578
+ maxPriorityFeePerGas?: undefined | undefined;
1579
+ isSystemTx?: undefined | undefined;
1580
+ mint?: undefined | undefined;
1581
+ sourceHash?: undefined | undefined;
1582
+ } | {
1583
+ blockHash: `0x${string}` | null;
1584
+ blockNumber: bigint | null;
1585
+ from: import('viem').Address;
1586
+ gas: bigint;
1587
+ hash: import('viem').Hash;
1588
+ input: import('viem').Hex;
1589
+ nonce: number;
1590
+ r: import('viem').Hex;
1591
+ s: import('viem').Hex;
1592
+ to: import('viem').Address | null;
1593
+ transactionIndex: number | null;
1594
+ typeHex: import('viem').Hex | null;
1595
+ v: bigint;
1596
+ value: bigint;
1597
+ yParity: number;
1598
+ accessList: import('viem').AccessList;
1599
+ authorizationList?: undefined | undefined;
1600
+ blobVersionedHashes?: undefined | undefined;
1601
+ chainId: number;
1602
+ type: "eip2930";
1603
+ gasPrice: bigint;
1604
+ maxFeePerBlobGas?: undefined | undefined;
1605
+ maxFeePerGas?: undefined | undefined;
1606
+ maxPriorityFeePerGas?: undefined | undefined;
1607
+ isSystemTx?: undefined | undefined;
1608
+ mint?: undefined | undefined;
1609
+ sourceHash?: undefined | undefined;
1610
+ } | {
1611
+ blockHash: `0x${string}` | null;
1612
+ blockNumber: bigint | null;
1613
+ from: import('viem').Address;
1614
+ gas: bigint;
1615
+ hash: import('viem').Hash;
1616
+ input: import('viem').Hex;
1617
+ nonce: number;
1618
+ r: import('viem').Hex;
1619
+ s: import('viem').Hex;
1620
+ to: import('viem').Address | null;
1621
+ transactionIndex: number | null;
1622
+ typeHex: import('viem').Hex | null;
1623
+ v: bigint;
1624
+ value: bigint;
1625
+ yParity: number;
1626
+ accessList: import('viem').AccessList;
1627
+ authorizationList?: undefined | undefined;
1628
+ blobVersionedHashes?: undefined | undefined;
1629
+ chainId: number;
1630
+ type: "eip1559";
1631
+ gasPrice?: undefined | undefined;
1632
+ maxFeePerBlobGas?: undefined | undefined;
1633
+ maxFeePerGas: bigint;
1634
+ maxPriorityFeePerGas: bigint;
1635
+ isSystemTx?: undefined | undefined;
1636
+ mint?: undefined | undefined;
1637
+ sourceHash?: undefined | undefined;
1638
+ } | {
1639
+ blockHash: `0x${string}` | null;
1640
+ blockNumber: bigint | null;
1641
+ from: import('viem').Address;
1642
+ gas: bigint;
1643
+ hash: import('viem').Hash;
1644
+ input: import('viem').Hex;
1645
+ nonce: number;
1646
+ r: import('viem').Hex;
1647
+ s: import('viem').Hex;
1648
+ to: import('viem').Address | null;
1649
+ transactionIndex: number | null;
1650
+ typeHex: import('viem').Hex | null;
1651
+ v: bigint;
1652
+ value: bigint;
1653
+ yParity: number;
1654
+ accessList: import('viem').AccessList;
1655
+ authorizationList?: undefined | undefined;
1656
+ blobVersionedHashes: readonly import('viem').Hex[];
1657
+ chainId: number;
1658
+ type: "eip4844";
1659
+ gasPrice?: undefined | undefined;
1660
+ maxFeePerBlobGas: bigint;
1661
+ maxFeePerGas: bigint;
1662
+ maxPriorityFeePerGas: bigint;
1663
+ isSystemTx?: undefined | undefined;
1664
+ mint?: undefined | undefined;
1665
+ sourceHash?: undefined | undefined;
1666
+ } | {
1667
+ blockHash: `0x${string}` | null;
1668
+ blockNumber: bigint | null;
1669
+ from: import('viem').Address;
1670
+ gas: bigint;
1671
+ hash: import('viem').Hash;
1672
+ input: import('viem').Hex;
1673
+ nonce: number;
1674
+ r: import('viem').Hex;
1675
+ s: import('viem').Hex;
1676
+ to: import('viem').Address | null;
1677
+ transactionIndex: number | null;
1678
+ typeHex: import('viem').Hex | null;
1679
+ v: bigint;
1680
+ value: bigint;
1681
+ yParity: number;
1682
+ accessList: import('viem').AccessList;
1683
+ authorizationList: import('viem').SignedAuthorizationList;
1684
+ blobVersionedHashes?: undefined | undefined;
1685
+ chainId: number;
1686
+ type: "eip7702";
1687
+ gasPrice?: undefined | undefined;
1688
+ maxFeePerBlobGas?: undefined | undefined;
1689
+ maxFeePerGas: bigint;
1690
+ maxPriorityFeePerGas: bigint;
1691
+ isSystemTx?: undefined | undefined;
1692
+ mint?: undefined | undefined;
1693
+ sourceHash?: undefined | undefined;
1694
+ }) & {};
1695
+ type: "transaction";
1696
+ };
1697
+ readonly transactionReceipt: {
1698
+ exclude: [] | undefined;
1699
+ format: (args: import('viem/chains').OpStackRpcTransactionReceipt, action?: string | undefined) => {
1700
+ blobGasPrice?: bigint | undefined;
1701
+ blobGasUsed?: bigint | undefined;
1702
+ blockHash: import('viem').Hash;
1703
+ blockNumber: bigint;
1704
+ contractAddress: import('viem').Address | null | undefined;
1705
+ cumulativeGasUsed: bigint;
1706
+ effectiveGasPrice: bigint;
1707
+ from: import('viem').Address;
1708
+ gasUsed: bigint;
1709
+ logs: import('viem').Log<bigint, number, false>[];
1710
+ logsBloom: import('viem').Hex;
1711
+ root?: `0x${string}` | undefined;
1712
+ status: "success" | "reverted";
1713
+ to: import('viem').Address | null;
1714
+ transactionHash: import('viem').Hash;
1715
+ transactionIndex: number;
1716
+ type: import('viem').TransactionType;
1717
+ l1GasPrice: bigint | null;
1718
+ l1GasUsed: bigint | null;
1719
+ l1Fee: bigint | null;
1720
+ l1FeeScalar: number | null;
1721
+ } & {};
1722
+ type: "transactionReceipt";
1723
+ };
1724
+ };
1725
+ prepareTransactionRequest?: ((args: import('viem').PrepareTransactionRequestParameters, options: {
1726
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
1727
+ }) => Promise<import('viem').PrepareTransactionRequestParameters>) | [fn: ((args: import('viem').PrepareTransactionRequestParameters, options: {
1728
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
1729
+ }) => Promise<import('viem').PrepareTransactionRequestParameters>) | undefined, options: {
1730
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
1731
+ }] | undefined;
1732
+ serializers: {
1733
+ readonly transaction: typeof import('viem/chains').serializeTransactionOpStack;
1734
+ };
1735
+ verifyHash?: ((client: import('viem').Client, parameters: import('viem').VerifyHashActionParameters) => Promise<import('viem').VerifyHashActionReturnType>) | undefined;
1736
+ };
1737
+ readonly somnia: {
1738
+ readonly id: 5031;
1739
+ readonly name: "Somnia";
1740
+ readonly nativeCurrency: {
1741
+ readonly decimals: 18;
1742
+ readonly name: "SOMI";
1743
+ readonly symbol: "SOMI";
1744
+ };
1745
+ readonly rpcUrls: {
1746
+ readonly default: {
1747
+ readonly http: readonly ["https://api.infra.mainnet.somnia.network"];
1748
+ };
1749
+ readonly public: {
1750
+ readonly http: readonly ["https://api.infra.mainnet.somnia.network"];
1751
+ };
1752
+ };
1753
+ readonly blockExplorers: {
1754
+ readonly default: {
1755
+ readonly name: "Somnia Explorer";
1756
+ readonly url: "https://explorer.somnia.network/";
1757
+ };
1758
+ };
1759
+ };
1760
+ readonly sonic: {
1761
+ blockExplorers: {
1762
+ readonly default: {
1763
+ readonly name: "Sonic Explorer";
1764
+ readonly url: "https://sonicscan.org";
1765
+ };
1766
+ };
1767
+ blockTime: 630;
1768
+ contracts: {
1769
+ readonly multicall3: {
1770
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
1771
+ readonly blockCreated: 60;
1772
+ };
1773
+ };
1774
+ ensTlds?: readonly string[] | undefined;
1775
+ id: 146;
1776
+ name: "Sonic";
1777
+ nativeCurrency: {
1778
+ readonly decimals: 18;
1779
+ readonly name: "Sonic";
1780
+ readonly symbol: "S";
1781
+ };
1782
+ experimental_preconfirmationTime?: number | undefined | undefined;
1783
+ rpcUrls: {
1784
+ readonly default: {
1785
+ readonly http: readonly ["https://rpc.soniclabs.com"];
1786
+ };
1787
+ };
1788
+ sourceId?: number | undefined | undefined;
1789
+ testnet: false;
1790
+ custom?: Record<string, unknown> | undefined;
1791
+ extendSchema?: Record<string, unknown> | undefined;
1792
+ fees?: import('viem').ChainFees<undefined> | undefined;
1793
+ formatters?: undefined;
1794
+ prepareTransactionRequest?: ((args: import('viem').PrepareTransactionRequestParameters, options: {
1795
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
1796
+ }) => Promise<import('viem').PrepareTransactionRequestParameters>) | [fn: ((args: import('viem').PrepareTransactionRequestParameters, options: {
1797
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
1798
+ }) => Promise<import('viem').PrepareTransactionRequestParameters>) | undefined, options: {
1799
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
1800
+ }] | undefined;
1801
+ serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
1802
+ verifyHash?: ((client: import('viem').Client, parameters: import('viem').VerifyHashActionParameters) => Promise<import('viem').VerifyHashActionReturnType>) | undefined;
1803
+ };
1804
+ readonly xai: {
1805
+ blockExplorers: {
1806
+ readonly default: {
1807
+ readonly name: "Blockscout";
1808
+ readonly url: "https://explorer.xai-chain.net";
1809
+ };
1810
+ };
1811
+ blockTime?: number | undefined | undefined;
1812
+ contracts: {
1813
+ readonly multicall3: {
1814
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
1815
+ readonly blockCreated: 222549;
1816
+ };
1817
+ };
1818
+ ensTlds?: readonly string[] | undefined;
1819
+ id: 660279;
1820
+ name: "Xai Mainnet";
1821
+ nativeCurrency: {
1822
+ readonly name: "Xai";
1823
+ readonly symbol: "XAI";
1824
+ readonly decimals: 18;
1825
+ };
1826
+ experimental_preconfirmationTime?: number | undefined | undefined;
1827
+ rpcUrls: {
1828
+ readonly default: {
1829
+ readonly http: readonly ["https://xai-chain.net/rpc"];
1830
+ };
1831
+ };
1832
+ sourceId?: number | undefined | undefined;
1833
+ testnet: false;
1834
+ custom?: Record<string, unknown> | undefined;
1835
+ extendSchema?: Record<string, unknown> | undefined;
1836
+ fees?: import('viem').ChainFees<undefined> | undefined;
1837
+ formatters?: undefined;
1838
+ prepareTransactionRequest?: ((args: import('viem').PrepareTransactionRequestParameters, options: {
1839
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
1840
+ }) => Promise<import('viem').PrepareTransactionRequestParameters>) | [fn: ((args: import('viem').PrepareTransactionRequestParameters, options: {
1841
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
1842
+ }) => Promise<import('viem').PrepareTransactionRequestParameters>) | undefined, options: {
1843
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
1844
+ }] | undefined;
1845
+ serializers?: import('viem').ChainSerializers<undefined, import('viem').TransactionSerializable> | undefined;
1846
+ verifyHash?: ((client: import('viem').Client, parameters: import('viem').VerifyHashActionParameters) => Promise<import('viem').VerifyHashActionReturnType>) | undefined;
1847
+ };
1848
+ };
1849
+ export declare const TRAILS_ROUTER_ADDRESS: `0x${string}`;
1850
+ export type SupportedChainName = keyof typeof supportedChainsByName;
1851
+ export type SupportedChainId = (typeof supportedChainsByName)[SupportedChainName]["id"];
1852
+ export declare const FEE_PERCENT_TO_FEE_TIER: Record<FeePercent, number>;
1853
+ //# sourceMappingURL=constants.d.ts.map