@gobob/bob-sdk 5.8.1 → 5.9.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.
- package/dist/gateway/generated-client/apis/index.d.ts +5 -3
- package/dist/gateway/generated-client/apis/index.js +1 -3
- package/dist/gateway/generated-client/apis/index.js.map +1 -1
- package/dist/gateway/utils/common.d.ts +373 -118
- package/dist/gateway/utils/common.js +2 -0
- package/dist/gateway/utils/common.js.map +1 -1
- package/package.json +2 -2
|
@@ -1,3 +1,5 @@
|
|
|
1
|
-
export * from
|
|
2
|
-
export * from
|
|
3
|
-
export
|
|
1
|
+
export * from './V1Api';
|
|
2
|
+
export * from './V2Api';
|
|
3
|
+
export * from './V3Api';
|
|
4
|
+
export type { GetMaxSpendableV2Request } from './V2Api';
|
|
5
|
+
export type { GetMaxSpendableV2Request as GetMaxSpendableV3Request } from './V3Api';
|
|
@@ -14,9 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
exports.V3Api = void 0;
|
|
18
17
|
__exportStar(require("./V1Api"), exports);
|
|
19
18
|
__exportStar(require("./V2Api"), exports);
|
|
20
|
-
|
|
21
|
-
Object.defineProperty(exports, "V3Api", { enumerable: true, get: function () { return V3Api_1.V3Api; } });
|
|
19
|
+
__exportStar(require("./V3Api"), exports);
|
|
22
20
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/gateway/generated-client/apis/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/gateway/generated-client/apis/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAEA,0CAAwB;AACxB,0CAAwB;AACxB,0CAAwB"}
|
|
@@ -14,6 +14,7 @@ export declare function viemClient(chain: ViemChain): {
|
|
|
14
14
|
request?: (parameters: import("viem").CcipRequestParameters) => Promise<import("viem/_types/utils/ccip").CcipRequestReturnType>;
|
|
15
15
|
} | undefined;
|
|
16
16
|
chain: ViemChain;
|
|
17
|
+
dataSuffix?: import("viem").DataSuffix | undefined;
|
|
17
18
|
experimental_blockTag?: import("viem").BlockTag | undefined;
|
|
18
19
|
key: string;
|
|
19
20
|
name: string;
|
|
@@ -36,11 +37,13 @@ export declare function viemClient(chain: ViemChain): {
|
|
|
36
37
|
createPendingTransactionFilter: () => Promise<import("viem").CreatePendingTransactionFilterReturnType>;
|
|
37
38
|
estimateContractGas: <chain extends ViemChain | undefined, const abi extends import("viem").Abi | readonly unknown[], functionName extends import("viem").ContractFunctionName<abi, "nonpayable" | "payable">, args extends import("viem").ContractFunctionArgs<abi, "nonpayable" | "payable", functionName>>(args: import("viem").EstimateContractGasParameters<abi, functionName, args, chain>) => Promise<import("viem").EstimateContractGasReturnType>;
|
|
38
39
|
estimateGas: (args: import("viem").EstimateGasParameters<ViemChain>) => Promise<import("viem").EstimateGasReturnType>;
|
|
40
|
+
fillTransaction: <chainOverride extends ViemChain | undefined = undefined, accountOverride extends import("viem").Account | import("viem").Address | undefined = undefined>(args: import("viem").FillTransactionParameters<ViemChain, import("viem").Account | undefined, chainOverride, accountOverride>) => Promise<import("viem").FillTransactionReturnType<ViemChain, chainOverride>>;
|
|
39
41
|
getBalance: (args: import("viem").GetBalanceParameters) => Promise<import("viem").GetBalanceReturnType>;
|
|
40
42
|
getBlobBaseFee: () => Promise<import("viem").GetBlobBaseFeeReturnType>;
|
|
41
43
|
getBlock: <includeTransactions extends boolean = false, blockTag extends import("viem").BlockTag = "latest">(args?: import("viem").GetBlockParameters<includeTransactions, blockTag> | undefined) => Promise<{
|
|
42
44
|
number: blockTag extends "pending" ? null : bigint;
|
|
43
45
|
timestamp: bigint;
|
|
46
|
+
size: bigint;
|
|
44
47
|
hash: blockTag extends "pending" ? null : `0x${string}`;
|
|
45
48
|
nonce: blockTag extends "pending" ? null : `0x${string}`;
|
|
46
49
|
logsBloom: blockTag extends "pending" ? null : `0x${string}`;
|
|
@@ -58,7 +61,6 @@ export declare function viemClient(chain: ViemChain): {
|
|
|
58
61
|
receiptsRoot: import("viem").Hex;
|
|
59
62
|
sealFields: import("viem").Hex[];
|
|
60
63
|
sha3Uncles: import("viem").Hash;
|
|
61
|
-
size: bigint;
|
|
62
64
|
stateRoot: import("viem").Hash;
|
|
63
65
|
totalDifficulty: bigint | null;
|
|
64
66
|
transactionsRoot: import("viem").Hash;
|
|
@@ -71,22 +73,23 @@ export declare function viemClient(chain: ViemChain): {
|
|
|
71
73
|
from: import("viem").Address;
|
|
72
74
|
to: import("viem").Address | null;
|
|
73
75
|
chainId?: number | undefined;
|
|
76
|
+
r: import("viem").Hex;
|
|
77
|
+
s: import("viem").Hex;
|
|
74
78
|
yParity?: undefined | undefined;
|
|
75
|
-
|
|
79
|
+
v: bigint;
|
|
76
80
|
hash: import("viem").Hash;
|
|
77
81
|
input: import("viem").Hex;
|
|
82
|
+
gas: bigint;
|
|
78
83
|
nonce: number;
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
v: bigint;
|
|
84
|
+
gasPrice: bigint;
|
|
85
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
86
|
+
maxFeePerGas?: undefined | undefined;
|
|
83
87
|
accessList?: undefined | undefined;
|
|
84
88
|
authorizationList?: undefined | undefined;
|
|
89
|
+
blockTimestamp?: bigint | undefined;
|
|
90
|
+
typeHex: import("viem").Hex | null;
|
|
85
91
|
blobVersionedHashes?: undefined | undefined;
|
|
86
|
-
gasPrice: bigint;
|
|
87
92
|
maxFeePerBlobGas?: undefined | undefined;
|
|
88
|
-
maxFeePerGas?: undefined | undefined;
|
|
89
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
90
93
|
blockHash: (blockTag extends "pending" ? true : false) extends infer T ? T extends (blockTag extends "pending" ? true : false) ? T extends true ? null : `0x${string}` : never : never;
|
|
91
94
|
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_1 ? T_1 extends (blockTag extends "pending" ? true : false) ? T_1 extends true ? null : bigint : never : never;
|
|
92
95
|
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_2 ? T_2 extends (blockTag extends "pending" ? true : false) ? T_2 extends true ? null : number : never : never;
|
|
@@ -96,22 +99,23 @@ export declare function viemClient(chain: ViemChain): {
|
|
|
96
99
|
from: import("viem").Address;
|
|
97
100
|
to: import("viem").Address | null;
|
|
98
101
|
chainId: number;
|
|
102
|
+
r: import("viem").Hex;
|
|
103
|
+
s: import("viem").Hex;
|
|
99
104
|
yParity: number;
|
|
100
|
-
|
|
105
|
+
v: bigint;
|
|
101
106
|
hash: import("viem").Hash;
|
|
102
107
|
input: import("viem").Hex;
|
|
108
|
+
gas: bigint;
|
|
103
109
|
nonce: number;
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
v: bigint;
|
|
110
|
+
gasPrice: bigint;
|
|
111
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
112
|
+
maxFeePerGas?: undefined | undefined;
|
|
108
113
|
accessList: import("viem").AccessList;
|
|
109
114
|
authorizationList?: undefined | undefined;
|
|
115
|
+
blockTimestamp?: bigint | undefined;
|
|
116
|
+
typeHex: import("viem").Hex | null;
|
|
110
117
|
blobVersionedHashes?: undefined | undefined;
|
|
111
|
-
gasPrice: bigint;
|
|
112
118
|
maxFeePerBlobGas?: undefined | undefined;
|
|
113
|
-
maxFeePerGas?: undefined | undefined;
|
|
114
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
115
119
|
blockHash: (blockTag extends "pending" ? true : false) extends infer T_3 ? T_3 extends (blockTag extends "pending" ? true : false) ? T_3 extends true ? null : `0x${string}` : never : never;
|
|
116
120
|
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_4 ? T_4 extends (blockTag extends "pending" ? true : false) ? T_4 extends true ? null : bigint : never : never;
|
|
117
121
|
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_5 ? T_5 extends (blockTag extends "pending" ? true : false) ? T_5 extends true ? null : number : never : never;
|
|
@@ -121,22 +125,23 @@ export declare function viemClient(chain: ViemChain): {
|
|
|
121
125
|
from: import("viem").Address;
|
|
122
126
|
to: import("viem").Address | null;
|
|
123
127
|
chainId: number;
|
|
128
|
+
r: import("viem").Hex;
|
|
129
|
+
s: import("viem").Hex;
|
|
124
130
|
yParity: number;
|
|
125
|
-
|
|
131
|
+
v: bigint;
|
|
126
132
|
hash: import("viem").Hash;
|
|
127
133
|
input: import("viem").Hex;
|
|
134
|
+
gas: bigint;
|
|
128
135
|
nonce: number;
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
v: bigint;
|
|
136
|
+
gasPrice?: undefined | undefined;
|
|
137
|
+
maxPriorityFeePerGas: bigint;
|
|
138
|
+
maxFeePerGas: bigint;
|
|
133
139
|
accessList: import("viem").AccessList;
|
|
134
140
|
authorizationList?: undefined | undefined;
|
|
141
|
+
blockTimestamp?: bigint | undefined;
|
|
142
|
+
typeHex: import("viem").Hex | null;
|
|
135
143
|
blobVersionedHashes?: undefined | undefined;
|
|
136
|
-
gasPrice?: undefined | undefined;
|
|
137
144
|
maxFeePerBlobGas?: undefined | undefined;
|
|
138
|
-
maxFeePerGas: bigint;
|
|
139
|
-
maxPriorityFeePerGas: bigint;
|
|
140
145
|
blockHash: (blockTag extends "pending" ? true : false) extends infer T_6 ? T_6 extends (blockTag extends "pending" ? true : false) ? T_6 extends true ? null : `0x${string}` : never : never;
|
|
141
146
|
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_7 ? T_7 extends (blockTag extends "pending" ? true : false) ? T_7 extends true ? null : bigint : never : never;
|
|
142
147
|
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_8 ? T_8 extends (blockTag extends "pending" ? true : false) ? T_8 extends true ? null : number : never : never;
|
|
@@ -146,22 +151,23 @@ export declare function viemClient(chain: ViemChain): {
|
|
|
146
151
|
from: import("viem").Address;
|
|
147
152
|
to: import("viem").Address | null;
|
|
148
153
|
chainId: number;
|
|
154
|
+
r: import("viem").Hex;
|
|
155
|
+
s: import("viem").Hex;
|
|
149
156
|
yParity: number;
|
|
150
|
-
|
|
157
|
+
v: bigint;
|
|
151
158
|
hash: import("viem").Hash;
|
|
152
159
|
input: import("viem").Hex;
|
|
160
|
+
gas: bigint;
|
|
153
161
|
nonce: number;
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
v: bigint;
|
|
162
|
+
gasPrice?: undefined | undefined;
|
|
163
|
+
maxPriorityFeePerGas: bigint;
|
|
164
|
+
maxFeePerGas: bigint;
|
|
158
165
|
accessList: import("viem").AccessList;
|
|
159
166
|
authorizationList?: undefined | undefined;
|
|
167
|
+
blockTimestamp?: bigint | undefined;
|
|
168
|
+
typeHex: import("viem").Hex | null;
|
|
160
169
|
blobVersionedHashes: readonly import("viem").Hex[];
|
|
161
|
-
gasPrice?: undefined | undefined;
|
|
162
170
|
maxFeePerBlobGas: bigint;
|
|
163
|
-
maxFeePerGas: bigint;
|
|
164
|
-
maxPriorityFeePerGas: bigint;
|
|
165
171
|
blockHash: (blockTag extends "pending" ? true : false) extends infer T_9 ? T_9 extends (blockTag extends "pending" ? true : false) ? T_9 extends true ? null : `0x${string}` : never : never;
|
|
166
172
|
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_10 ? T_10 extends (blockTag extends "pending" ? true : false) ? T_10 extends true ? null : bigint : never : never;
|
|
167
173
|
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_11 ? T_11 extends (blockTag extends "pending" ? true : false) ? T_11 extends true ? null : number : never : never;
|
|
@@ -171,22 +177,23 @@ export declare function viemClient(chain: ViemChain): {
|
|
|
171
177
|
from: import("viem").Address;
|
|
172
178
|
to: import("viem").Address | null;
|
|
173
179
|
chainId: number;
|
|
180
|
+
r: import("viem").Hex;
|
|
181
|
+
s: import("viem").Hex;
|
|
174
182
|
yParity: number;
|
|
175
|
-
|
|
183
|
+
v: bigint;
|
|
176
184
|
hash: import("viem").Hash;
|
|
177
185
|
input: import("viem").Hex;
|
|
186
|
+
gas: bigint;
|
|
178
187
|
nonce: number;
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
v: bigint;
|
|
188
|
+
gasPrice?: undefined | undefined;
|
|
189
|
+
maxPriorityFeePerGas: bigint;
|
|
190
|
+
maxFeePerGas: bigint;
|
|
183
191
|
accessList: import("viem").AccessList;
|
|
184
192
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
193
|
+
blockTimestamp?: bigint | undefined;
|
|
194
|
+
typeHex: import("viem").Hex | null;
|
|
185
195
|
blobVersionedHashes?: undefined | undefined;
|
|
186
|
-
gasPrice?: undefined | undefined;
|
|
187
196
|
maxFeePerBlobGas?: undefined | undefined;
|
|
188
|
-
maxFeePerGas: bigint;
|
|
189
|
-
maxPriorityFeePerGas: bigint;
|
|
190
197
|
blockHash: (blockTag extends "pending" ? true : false) extends infer T_12 ? T_12 extends (blockTag extends "pending" ? true : false) ? T_12 extends true ? null : `0x${string}` : never : never;
|
|
191
198
|
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_13 ? T_13 extends (blockTag extends "pending" ? true : false) ? T_13 extends true ? null : bigint : never : never;
|
|
192
199
|
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_14 ? T_14 extends (blockTag extends "pending" ? true : false) ? T_14 extends true ? null : number : never : never;
|
|
@@ -198,6 +205,7 @@ export declare function viemClient(chain: ViemChain): {
|
|
|
198
205
|
getChainId: () => Promise<import("viem").GetChainIdReturnType>;
|
|
199
206
|
getCode: (args: import("viem").GetBytecodeParameters) => Promise<import("viem").GetBytecodeReturnType>;
|
|
200
207
|
getContractEvents: <const abi extends import("viem").Abi | readonly unknown[], eventName extends import("viem").ContractEventName<abi> | undefined = undefined, strict extends boolean | undefined = undefined, fromBlock extends import("viem").BlockNumber | import("viem").BlockTag | undefined = undefined, toBlock extends import("viem").BlockNumber | import("viem").BlockTag | undefined = undefined>(args: import("viem").GetContractEventsParameters<abi, eventName, strict, fromBlock, toBlock>) => Promise<import("viem").GetContractEventsReturnType<abi, eventName, strict, fromBlock, toBlock>>;
|
|
208
|
+
getDelegation: (args: import("viem").GetDelegationParameters) => Promise<import("viem").GetDelegationReturnType>;
|
|
201
209
|
getEip712Domain: (args: import("viem").GetEip712DomainParameters) => Promise<import("viem").GetEip712DomainReturnType>;
|
|
202
210
|
getEnsAddress: (args: import("viem").GetEnsAddressParameters) => Promise<import("viem").GetEnsAddressReturnType>;
|
|
203
211
|
getEnsAvatar: (args: import("viem").GetEnsAvatarParameters) => Promise<import("viem").GetEnsAvatarReturnType>;
|
|
@@ -221,22 +229,23 @@ export declare function viemClient(chain: ViemChain): {
|
|
|
221
229
|
from: import("viem").Address;
|
|
222
230
|
to: import("viem").Address | null;
|
|
223
231
|
chainId?: number | undefined;
|
|
232
|
+
r: import("viem").Hex;
|
|
233
|
+
s: import("viem").Hex;
|
|
224
234
|
yParity?: undefined | undefined;
|
|
225
|
-
|
|
235
|
+
v: bigint;
|
|
226
236
|
hash: import("viem").Hash;
|
|
227
237
|
input: import("viem").Hex;
|
|
238
|
+
gas: bigint;
|
|
228
239
|
nonce: number;
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
v: bigint;
|
|
240
|
+
gasPrice: bigint;
|
|
241
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
242
|
+
maxFeePerGas?: undefined | undefined;
|
|
233
243
|
accessList?: undefined | undefined;
|
|
234
244
|
authorizationList?: undefined | undefined;
|
|
245
|
+
blockTimestamp?: bigint | undefined;
|
|
246
|
+
typeHex: import("viem").Hex | null;
|
|
235
247
|
blobVersionedHashes?: undefined | undefined;
|
|
236
|
-
gasPrice: bigint;
|
|
237
248
|
maxFeePerBlobGas?: undefined | undefined;
|
|
238
|
-
maxFeePerGas?: undefined | undefined;
|
|
239
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
240
249
|
blockHash: (blockTag extends "pending" ? true : false) extends infer T ? T extends (blockTag extends "pending" ? true : false) ? T extends true ? null : `0x${string}` : never : never;
|
|
241
250
|
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_1 ? T_1 extends (blockTag extends "pending" ? true : false) ? T_1 extends true ? null : bigint : never : never;
|
|
242
251
|
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_2 ? T_2 extends (blockTag extends "pending" ? true : false) ? T_2 extends true ? null : number : never : never;
|
|
@@ -246,22 +255,23 @@ export declare function viemClient(chain: ViemChain): {
|
|
|
246
255
|
from: import("viem").Address;
|
|
247
256
|
to: import("viem").Address | null;
|
|
248
257
|
chainId: number;
|
|
258
|
+
r: import("viem").Hex;
|
|
259
|
+
s: import("viem").Hex;
|
|
249
260
|
yParity: number;
|
|
250
|
-
|
|
261
|
+
v: bigint;
|
|
251
262
|
hash: import("viem").Hash;
|
|
252
263
|
input: import("viem").Hex;
|
|
264
|
+
gas: bigint;
|
|
253
265
|
nonce: number;
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
v: bigint;
|
|
266
|
+
gasPrice: bigint;
|
|
267
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
268
|
+
maxFeePerGas?: undefined | undefined;
|
|
258
269
|
accessList: import("viem").AccessList;
|
|
259
270
|
authorizationList?: undefined | undefined;
|
|
271
|
+
blockTimestamp?: bigint | undefined;
|
|
272
|
+
typeHex: import("viem").Hex | null;
|
|
260
273
|
blobVersionedHashes?: undefined | undefined;
|
|
261
|
-
gasPrice: bigint;
|
|
262
274
|
maxFeePerBlobGas?: undefined | undefined;
|
|
263
|
-
maxFeePerGas?: undefined | undefined;
|
|
264
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
265
275
|
blockHash: (blockTag extends "pending" ? true : false) extends infer T_3 ? T_3 extends (blockTag extends "pending" ? true : false) ? T_3 extends true ? null : `0x${string}` : never : never;
|
|
266
276
|
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_4 ? T_4 extends (blockTag extends "pending" ? true : false) ? T_4 extends true ? null : bigint : never : never;
|
|
267
277
|
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_5 ? T_5 extends (blockTag extends "pending" ? true : false) ? T_5 extends true ? null : number : never : never;
|
|
@@ -271,22 +281,23 @@ export declare function viemClient(chain: ViemChain): {
|
|
|
271
281
|
from: import("viem").Address;
|
|
272
282
|
to: import("viem").Address | null;
|
|
273
283
|
chainId: number;
|
|
284
|
+
r: import("viem").Hex;
|
|
285
|
+
s: import("viem").Hex;
|
|
274
286
|
yParity: number;
|
|
275
|
-
|
|
287
|
+
v: bigint;
|
|
276
288
|
hash: import("viem").Hash;
|
|
277
289
|
input: import("viem").Hex;
|
|
290
|
+
gas: bigint;
|
|
278
291
|
nonce: number;
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
v: bigint;
|
|
292
|
+
gasPrice?: undefined | undefined;
|
|
293
|
+
maxPriorityFeePerGas: bigint;
|
|
294
|
+
maxFeePerGas: bigint;
|
|
283
295
|
accessList: import("viem").AccessList;
|
|
284
296
|
authorizationList?: undefined | undefined;
|
|
297
|
+
blockTimestamp?: bigint | undefined;
|
|
298
|
+
typeHex: import("viem").Hex | null;
|
|
285
299
|
blobVersionedHashes?: undefined | undefined;
|
|
286
|
-
gasPrice?: undefined | undefined;
|
|
287
300
|
maxFeePerBlobGas?: undefined | undefined;
|
|
288
|
-
maxFeePerGas: bigint;
|
|
289
|
-
maxPriorityFeePerGas: bigint;
|
|
290
301
|
blockHash: (blockTag extends "pending" ? true : false) extends infer T_6 ? T_6 extends (blockTag extends "pending" ? true : false) ? T_6 extends true ? null : `0x${string}` : never : never;
|
|
291
302
|
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_7 ? T_7 extends (blockTag extends "pending" ? true : false) ? T_7 extends true ? null : bigint : never : never;
|
|
292
303
|
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_8 ? T_8 extends (blockTag extends "pending" ? true : false) ? T_8 extends true ? null : number : never : never;
|
|
@@ -296,22 +307,23 @@ export declare function viemClient(chain: ViemChain): {
|
|
|
296
307
|
from: import("viem").Address;
|
|
297
308
|
to: import("viem").Address | null;
|
|
298
309
|
chainId: number;
|
|
310
|
+
r: import("viem").Hex;
|
|
311
|
+
s: import("viem").Hex;
|
|
299
312
|
yParity: number;
|
|
300
|
-
|
|
313
|
+
v: bigint;
|
|
301
314
|
hash: import("viem").Hash;
|
|
302
315
|
input: import("viem").Hex;
|
|
316
|
+
gas: bigint;
|
|
303
317
|
nonce: number;
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
v: bigint;
|
|
318
|
+
gasPrice?: undefined | undefined;
|
|
319
|
+
maxPriorityFeePerGas: bigint;
|
|
320
|
+
maxFeePerGas: bigint;
|
|
308
321
|
accessList: import("viem").AccessList;
|
|
309
322
|
authorizationList?: undefined | undefined;
|
|
323
|
+
blockTimestamp?: bigint | undefined;
|
|
324
|
+
typeHex: import("viem").Hex | null;
|
|
310
325
|
blobVersionedHashes: readonly import("viem").Hex[];
|
|
311
|
-
gasPrice?: undefined | undefined;
|
|
312
326
|
maxFeePerBlobGas: bigint;
|
|
313
|
-
maxFeePerGas: bigint;
|
|
314
|
-
maxPriorityFeePerGas: bigint;
|
|
315
327
|
blockHash: (blockTag extends "pending" ? true : false) extends infer T_9 ? T_9 extends (blockTag extends "pending" ? true : false) ? T_9 extends true ? null : `0x${string}` : never : never;
|
|
316
328
|
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_10 ? T_10 extends (blockTag extends "pending" ? true : false) ? T_10 extends true ? null : bigint : never : never;
|
|
317
329
|
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_11 ? T_11 extends (blockTag extends "pending" ? true : false) ? T_11 extends true ? null : number : never : never;
|
|
@@ -321,22 +333,23 @@ export declare function viemClient(chain: ViemChain): {
|
|
|
321
333
|
from: import("viem").Address;
|
|
322
334
|
to: import("viem").Address | null;
|
|
323
335
|
chainId: number;
|
|
336
|
+
r: import("viem").Hex;
|
|
337
|
+
s: import("viem").Hex;
|
|
324
338
|
yParity: number;
|
|
325
|
-
|
|
339
|
+
v: bigint;
|
|
326
340
|
hash: import("viem").Hash;
|
|
327
341
|
input: import("viem").Hex;
|
|
342
|
+
gas: bigint;
|
|
328
343
|
nonce: number;
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
v: bigint;
|
|
344
|
+
gasPrice?: undefined | undefined;
|
|
345
|
+
maxPriorityFeePerGas: bigint;
|
|
346
|
+
maxFeePerGas: bigint;
|
|
333
347
|
accessList: import("viem").AccessList;
|
|
334
348
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
349
|
+
blockTimestamp?: bigint | undefined;
|
|
350
|
+
typeHex: import("viem").Hex | null;
|
|
335
351
|
blobVersionedHashes?: undefined | undefined;
|
|
336
|
-
gasPrice?: undefined | undefined;
|
|
337
352
|
maxFeePerBlobGas?: undefined | undefined;
|
|
338
|
-
maxFeePerGas: bigint;
|
|
339
|
-
maxPriorityFeePerGas: bigint;
|
|
340
353
|
blockHash: (blockTag extends "pending" ? true : false) extends infer T_12 ? T_12 extends (blockTag extends "pending" ? true : false) ? T_12 extends true ? null : `0x${string}` : never : never;
|
|
341
354
|
blockNumber: (blockTag extends "pending" ? true : false) extends infer T_13 ? T_13 extends (blockTag extends "pending" ? true : false) ? T_13 extends true ? null : bigint : never : never;
|
|
342
355
|
transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_14 ? T_14 extends (blockTag extends "pending" ? true : false) ? T_14 extends true ? null : number : never : never;
|
|
@@ -3597,7 +3610,11 @@ export declare function viemClient(chain: ViemChain): {
|
|
|
3597
3610
|
authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
|
|
3598
3611
|
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_25 extends "eip7702" ? import("viem").TransactionRequestEIP7702 : never : never : never)>> & {
|
|
3599
3612
|
chainId?: number | undefined;
|
|
3600
|
-
}, (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "chainId" | "fees" | "gas" | "nonce" | "blobVersionedHashes") extends infer T_26 ? T_26 extends (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "chainId" | "fees" | "gas" | "nonce" | "blobVersionedHashes") ? T_26 extends "fees" ? "gasPrice" | "
|
|
3613
|
+
}, (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "chainId" | "fees" | "gas" | "nonce" | "blobVersionedHashes") extends infer T_26 ? T_26 extends (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "chainId" | "fees" | "gas" | "nonce" | "blobVersionedHashes") ? T_26 extends "fees" ? "gasPrice" | "maxPriorityFeePerGas" | "maxFeePerGas" : T_26 : never : never> & (unknown extends request["kzg"] ? {} : Pick<request, "kzg">) & {
|
|
3614
|
+
_capabilities?: {
|
|
3615
|
+
[x: string]: any;
|
|
3616
|
+
} | undefined;
|
|
3617
|
+
} extends infer T ? { [K in keyof T]: (import("viem").UnionRequiredBy<Extract<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<ViemChain, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> & (import("viem").DeriveChain<ViemChain, chainOverride> extends infer T_1 ? T_1 extends import("viem").DeriveChain<ViemChain, chainOverride> ? T_1 extends ViemChain ? {
|
|
3601
3618
|
chain: T_1;
|
|
3602
3619
|
} : {
|
|
3603
3620
|
chain?: undefined;
|
|
@@ -6849,13 +6866,19 @@ export declare function viemClient(chain: ViemChain): {
|
|
|
6849
6866
|
authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
|
|
6850
6867
|
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_12 extends "eip7702" ? import("viem").TransactionRequestEIP7702 : never : never : never)>> & {
|
|
6851
6868
|
chainId?: number | undefined;
|
|
6852
|
-
}, (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "chainId" | "fees" | "gas" | "nonce" | "blobVersionedHashes") extends infer T_13 ? T_13 extends (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "chainId" | "fees" | "gas" | "nonce" | "blobVersionedHashes") ? T_13 extends "fees" ? "gasPrice" | "
|
|
6869
|
+
}, (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "chainId" | "fees" | "gas" | "nonce" | "blobVersionedHashes") extends infer T_13 ? T_13 extends (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "chainId" | "fees" | "gas" | "nonce" | "blobVersionedHashes") ? T_13 extends "fees" ? "gasPrice" | "maxPriorityFeePerGas" | "maxFeePerGas" : T_13 : never : never> & (unknown extends request["kzg"] ? {} : Pick<request, "kzg">) & {
|
|
6870
|
+
_capabilities?: {
|
|
6871
|
+
[x: string]: any;
|
|
6872
|
+
} | undefined;
|
|
6873
|
+
})[K]; } : never>;
|
|
6853
6874
|
readContract: <const abi extends import("viem").Abi | readonly unknown[], functionName extends import("viem").ContractFunctionName<abi, "pure" | "view">, const args extends import("viem").ContractFunctionArgs<abi, "pure" | "view", functionName>>(args: import("viem").ReadContractParameters<abi, functionName, args>) => Promise<import("viem").ReadContractReturnType<abi, functionName, args>>;
|
|
6854
6875
|
sendRawTransaction: (args: import("viem").SendRawTransactionParameters) => Promise<import("viem").SendRawTransactionReturnType>;
|
|
6876
|
+
sendRawTransactionSync: (args: import("viem").SendRawTransactionSyncParameters) => Promise<import("viem").TransactionReceipt>;
|
|
6855
6877
|
simulate: <const calls extends readonly unknown[]>(args: import("viem").SimulateBlocksParameters<calls>) => Promise<import("viem").SimulateBlocksReturnType<calls>>;
|
|
6856
6878
|
simulateBlocks: <const calls extends readonly unknown[]>(args: import("viem").SimulateBlocksParameters<calls>) => Promise<import("viem").SimulateBlocksReturnType<calls>>;
|
|
6857
6879
|
simulateCalls: <const calls extends readonly unknown[]>(args: import("viem").SimulateCallsParameters<calls>) => Promise<import("viem").SimulateCallsReturnType<calls>>;
|
|
6858
6880
|
simulateContract: <const abi extends import("viem").Abi | readonly unknown[], functionName extends import("viem").ContractFunctionName<abi, "nonpayable" | "payable">, const args_1 extends import("viem").ContractFunctionArgs<abi, "nonpayable" | "payable", functionName>, chainOverride extends ViemChain | undefined, accountOverride extends import("viem").Account | import("viem").Address | undefined = undefined>(args: import("viem").SimulateContractParameters<abi, functionName, args_1, ViemChain, chainOverride, accountOverride>) => Promise<import("viem").SimulateContractReturnType<abi, functionName, args_1, ViemChain, import("viem").Account | undefined, chainOverride, accountOverride>>;
|
|
6881
|
+
verifyHash: (args: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>;
|
|
6859
6882
|
verifyMessage: (args: import("viem").VerifyMessageActionParameters) => Promise<import("viem").VerifyMessageActionReturnType>;
|
|
6860
6883
|
verifySiweMessage: (args: import("viem/_types/actions/siwe/verifySiweMessage").VerifySiweMessageParameters) => Promise<import("viem/_types/actions/siwe/verifySiweMessage").VerifySiweMessageReturnType>;
|
|
6861
6884
|
verifyTypedData: (args: import("viem").VerifyTypedDataActionParameters) => Promise<import("viem").VerifyTypedDataActionReturnType>;
|
|
@@ -6873,6 +6896,7 @@ export declare function viemClient(chain: ViemChain): {
|
|
|
6873
6896
|
cacheTime?: undefined;
|
|
6874
6897
|
ccipRead?: undefined;
|
|
6875
6898
|
chain?: undefined;
|
|
6899
|
+
dataSuffix?: undefined;
|
|
6876
6900
|
experimental_blockTag?: undefined;
|
|
6877
6901
|
key?: undefined;
|
|
6878
6902
|
name?: undefined;
|
|
@@ -6881,7 +6905,7 @@ export declare function viemClient(chain: ViemChain): {
|
|
|
6881
6905
|
transport?: undefined;
|
|
6882
6906
|
type?: undefined;
|
|
6883
6907
|
uid?: undefined;
|
|
6884
|
-
} & import("viem").ExactPartial<Pick<import("viem").PublicActions<import("viem").HttpTransport<undefined, false>, ViemChain, undefined>, "call" | "createContractEventFilter" | "createEventFilter" | "estimateContractGas" | "estimateGas" | "getBlock" | "getBlockNumber" | "getChainId" | "getContractEvents" | "getEnsText" | "getFilterChanges" | "getGasPrice" | "getLogs" | "getTransaction" | "getTransactionCount" | "getTransactionReceipt" | "
|
|
6908
|
+
} & import("viem").ExactPartial<Pick<import("viem").PublicActions<import("viem").HttpTransport<undefined, false>, ViemChain, undefined>, "call" | "prepareTransactionRequest" | "createContractEventFilter" | "createEventFilter" | "estimateContractGas" | "estimateGas" | "getBlock" | "getBlockNumber" | "getChainId" | "getContractEvents" | "getEnsText" | "getFilterChanges" | "getGasPrice" | "getLogs" | "getTransaction" | "getTransactionCount" | "getTransactionReceipt" | "readContract" | "sendRawTransaction" | "simulateContract" | "uninstallFilter" | "watchBlockNumber" | "watchContractEvent"> & Pick<import("viem").WalletActions<ViemChain, undefined>, "sendTransaction" | "writeContract">>>(fn: (client: import("viem").Client<import("viem").HttpTransport<undefined, false>, ViemChain, undefined, import("viem").PublicRpcSchema, import("viem").PublicActions<import("viem").HttpTransport<undefined, false>, ViemChain>>) => client) => import("viem").Client<import("viem").HttpTransport<undefined, false>, ViemChain, undefined, import("viem").PublicRpcSchema, { [K in keyof client]: client[K]; } & import("viem").PublicActions<import("viem").HttpTransport<undefined, false>, ViemChain>>;
|
|
6885
6909
|
};
|
|
6886
6910
|
export declare function parseBtc(btc: string): bigint;
|
|
6887
6911
|
export declare function formatBtc(btc: bigint): string;
|
|
@@ -6948,11 +6972,12 @@ export declare const supportedChainsMapping: {
|
|
|
6948
6972
|
sourceId: 1;
|
|
6949
6973
|
testnet?: boolean | undefined | undefined;
|
|
6950
6974
|
custom?: Record<string, unknown> | undefined;
|
|
6975
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
6951
6976
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
6952
6977
|
formatters: {
|
|
6953
6978
|
readonly block: {
|
|
6954
6979
|
exclude: [] | undefined;
|
|
6955
|
-
format: (args: import("viem/chains").OpStackRpcBlock) => {
|
|
6980
|
+
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
6956
6981
|
baseFeePerGas: bigint | null;
|
|
6957
6982
|
blobGasUsed: bigint;
|
|
6958
6983
|
difficulty: bigint;
|
|
@@ -6985,9 +7010,10 @@ export declare const supportedChainsMapping: {
|
|
|
6985
7010
|
};
|
|
6986
7011
|
readonly transaction: {
|
|
6987
7012
|
exclude: [] | undefined;
|
|
6988
|
-
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
7013
|
+
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
6989
7014
|
blockHash: `0x${string}` | null;
|
|
6990
7015
|
blockNumber: bigint | null;
|
|
7016
|
+
blockTimestamp?: bigint | undefined;
|
|
6991
7017
|
from: import("viem").Address;
|
|
6992
7018
|
gas: bigint;
|
|
6993
7019
|
hash: import("viem").Hash;
|
|
@@ -7013,16 +7039,17 @@ export declare const supportedChainsMapping: {
|
|
|
7013
7039
|
r: import("viem").Hex;
|
|
7014
7040
|
s: import("viem").Hex;
|
|
7015
7041
|
v: bigint;
|
|
7016
|
-
value: bigint;
|
|
7017
|
-
gas: bigint;
|
|
7018
7042
|
to: import("viem").Address | null;
|
|
7019
7043
|
from: import("viem").Address;
|
|
7044
|
+
gas: bigint;
|
|
7020
7045
|
nonce: number;
|
|
7046
|
+
value: bigint;
|
|
7021
7047
|
blockHash: `0x${string}` | null;
|
|
7022
7048
|
blockNumber: bigint | null;
|
|
7023
|
-
|
|
7049
|
+
blockTimestamp?: bigint | undefined;
|
|
7024
7050
|
hash: import("viem").Hash;
|
|
7025
7051
|
input: import("viem").Hex;
|
|
7052
|
+
transactionIndex: number | null;
|
|
7026
7053
|
typeHex: import("viem").Hex | null;
|
|
7027
7054
|
accessList?: undefined | undefined;
|
|
7028
7055
|
authorizationList?: undefined | undefined;
|
|
@@ -7040,6 +7067,7 @@ export declare const supportedChainsMapping: {
|
|
|
7040
7067
|
} | {
|
|
7041
7068
|
blockHash: `0x${string}` | null;
|
|
7042
7069
|
blockNumber: bigint | null;
|
|
7070
|
+
blockTimestamp?: bigint | undefined;
|
|
7043
7071
|
from: import("viem").Address;
|
|
7044
7072
|
gas: bigint;
|
|
7045
7073
|
hash: import("viem").Hash;
|
|
@@ -7068,6 +7096,7 @@ export declare const supportedChainsMapping: {
|
|
|
7068
7096
|
} | {
|
|
7069
7097
|
blockHash: `0x${string}` | null;
|
|
7070
7098
|
blockNumber: bigint | null;
|
|
7099
|
+
blockTimestamp?: bigint | undefined;
|
|
7071
7100
|
from: import("viem").Address;
|
|
7072
7101
|
gas: bigint;
|
|
7073
7102
|
hash: import("viem").Hash;
|
|
@@ -7096,6 +7125,7 @@ export declare const supportedChainsMapping: {
|
|
|
7096
7125
|
} | {
|
|
7097
7126
|
blockHash: `0x${string}` | null;
|
|
7098
7127
|
blockNumber: bigint | null;
|
|
7128
|
+
blockTimestamp?: bigint | undefined;
|
|
7099
7129
|
from: import("viem").Address;
|
|
7100
7130
|
gas: bigint;
|
|
7101
7131
|
hash: import("viem").Hash;
|
|
@@ -7124,6 +7154,7 @@ export declare const supportedChainsMapping: {
|
|
|
7124
7154
|
} | {
|
|
7125
7155
|
blockHash: `0x${string}` | null;
|
|
7126
7156
|
blockNumber: bigint | null;
|
|
7157
|
+
blockTimestamp?: bigint | undefined;
|
|
7127
7158
|
from: import("viem").Address;
|
|
7128
7159
|
gas: bigint;
|
|
7129
7160
|
hash: import("viem").Hash;
|
|
@@ -7154,11 +7185,12 @@ export declare const supportedChainsMapping: {
|
|
|
7154
7185
|
};
|
|
7155
7186
|
readonly transactionReceipt: {
|
|
7156
7187
|
exclude: [] | undefined;
|
|
7157
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
7188
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
7158
7189
|
blobGasPrice?: bigint | undefined;
|
|
7159
7190
|
blobGasUsed?: bigint | undefined;
|
|
7160
7191
|
blockHash: import("viem").Hash;
|
|
7161
7192
|
blockNumber: bigint;
|
|
7193
|
+
blockTimestamp?: bigint | undefined;
|
|
7162
7194
|
contractAddress: import("viem").Address | null | undefined;
|
|
7163
7195
|
cumulativeGasUsed: bigint;
|
|
7164
7196
|
effectiveGasPrice: bigint;
|
|
@@ -7180,9 +7212,17 @@ export declare const supportedChainsMapping: {
|
|
|
7180
7212
|
type: "transactionReceipt";
|
|
7181
7213
|
};
|
|
7182
7214
|
};
|
|
7215
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
7216
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
7217
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
7218
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
7219
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
7220
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
7221
|
+
}] | undefined;
|
|
7183
7222
|
serializers: {
|
|
7184
7223
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
7185
7224
|
};
|
|
7225
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
7186
7226
|
};
|
|
7187
7227
|
readonly ethereum: {
|
|
7188
7228
|
blockExplorers: {
|
|
@@ -7220,9 +7260,18 @@ export declare const supportedChainsMapping: {
|
|
|
7220
7260
|
sourceId?: number | undefined | undefined;
|
|
7221
7261
|
testnet?: boolean | undefined | undefined;
|
|
7222
7262
|
custom?: Record<string, unknown> | undefined;
|
|
7263
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
7223
7264
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
7224
7265
|
formatters?: undefined;
|
|
7266
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
7267
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
7268
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
7269
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
7270
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
7271
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
7272
|
+
}] | undefined;
|
|
7225
7273
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
7274
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
7226
7275
|
};
|
|
7227
7276
|
readonly sonic: {
|
|
7228
7277
|
blockExplorers: {
|
|
@@ -7255,9 +7304,18 @@ export declare const supportedChainsMapping: {
|
|
|
7255
7304
|
sourceId?: number | undefined | undefined;
|
|
7256
7305
|
testnet: false;
|
|
7257
7306
|
custom?: Record<string, unknown> | undefined;
|
|
7307
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
7258
7308
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
7259
7309
|
formatters?: undefined;
|
|
7310
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
7311
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
7312
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
7313
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
7314
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
7315
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
7316
|
+
}] | undefined;
|
|
7260
7317
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
7318
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
7261
7319
|
};
|
|
7262
7320
|
readonly bsc: {
|
|
7263
7321
|
blockExplorers: {
|
|
@@ -7291,9 +7349,18 @@ export declare const supportedChainsMapping: {
|
|
|
7291
7349
|
sourceId?: number | undefined | undefined;
|
|
7292
7350
|
testnet?: boolean | undefined | undefined;
|
|
7293
7351
|
custom?: Record<string, unknown> | undefined;
|
|
7352
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
7294
7353
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
7295
7354
|
formatters?: undefined;
|
|
7355
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
7356
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
7357
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
7358
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
7359
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
7360
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
7361
|
+
}] | undefined;
|
|
7296
7362
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
7363
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
7297
7364
|
};
|
|
7298
7365
|
readonly unichain: {
|
|
7299
7366
|
blockExplorers: {
|
|
@@ -7303,7 +7370,7 @@ export declare const supportedChainsMapping: {
|
|
|
7303
7370
|
readonly apiUrl: "https://api.uniscan.xyz/api";
|
|
7304
7371
|
};
|
|
7305
7372
|
};
|
|
7306
|
-
blockTime:
|
|
7373
|
+
blockTime: 1000;
|
|
7307
7374
|
contracts: {
|
|
7308
7375
|
readonly multicall3: {
|
|
7309
7376
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -7360,11 +7427,12 @@ export declare const supportedChainsMapping: {
|
|
|
7360
7427
|
sourceId: 1;
|
|
7361
7428
|
testnet?: boolean | undefined | undefined;
|
|
7362
7429
|
custom?: Record<string, unknown> | undefined;
|
|
7430
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
7363
7431
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
7364
7432
|
formatters: {
|
|
7365
7433
|
readonly block: {
|
|
7366
7434
|
exclude: [] | undefined;
|
|
7367
|
-
format: (args: import("viem/chains").OpStackRpcBlock) => {
|
|
7435
|
+
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
7368
7436
|
baseFeePerGas: bigint | null;
|
|
7369
7437
|
blobGasUsed: bigint;
|
|
7370
7438
|
difficulty: bigint;
|
|
@@ -7397,9 +7465,10 @@ export declare const supportedChainsMapping: {
|
|
|
7397
7465
|
};
|
|
7398
7466
|
readonly transaction: {
|
|
7399
7467
|
exclude: [] | undefined;
|
|
7400
|
-
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
7468
|
+
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
7401
7469
|
blockHash: `0x${string}` | null;
|
|
7402
7470
|
blockNumber: bigint | null;
|
|
7471
|
+
blockTimestamp?: bigint | undefined;
|
|
7403
7472
|
from: import("viem").Address;
|
|
7404
7473
|
gas: bigint;
|
|
7405
7474
|
hash: import("viem").Hash;
|
|
@@ -7425,16 +7494,17 @@ export declare const supportedChainsMapping: {
|
|
|
7425
7494
|
r: import("viem").Hex;
|
|
7426
7495
|
s: import("viem").Hex;
|
|
7427
7496
|
v: bigint;
|
|
7428
|
-
value: bigint;
|
|
7429
|
-
gas: bigint;
|
|
7430
7497
|
to: import("viem").Address | null;
|
|
7431
7498
|
from: import("viem").Address;
|
|
7499
|
+
gas: bigint;
|
|
7432
7500
|
nonce: number;
|
|
7501
|
+
value: bigint;
|
|
7433
7502
|
blockHash: `0x${string}` | null;
|
|
7434
7503
|
blockNumber: bigint | null;
|
|
7435
|
-
|
|
7504
|
+
blockTimestamp?: bigint | undefined;
|
|
7436
7505
|
hash: import("viem").Hash;
|
|
7437
7506
|
input: import("viem").Hex;
|
|
7507
|
+
transactionIndex: number | null;
|
|
7438
7508
|
typeHex: import("viem").Hex | null;
|
|
7439
7509
|
accessList?: undefined | undefined;
|
|
7440
7510
|
authorizationList?: undefined | undefined;
|
|
@@ -7452,6 +7522,7 @@ export declare const supportedChainsMapping: {
|
|
|
7452
7522
|
} | {
|
|
7453
7523
|
blockHash: `0x${string}` | null;
|
|
7454
7524
|
blockNumber: bigint | null;
|
|
7525
|
+
blockTimestamp?: bigint | undefined;
|
|
7455
7526
|
from: import("viem").Address;
|
|
7456
7527
|
gas: bigint;
|
|
7457
7528
|
hash: import("viem").Hash;
|
|
@@ -7480,6 +7551,7 @@ export declare const supportedChainsMapping: {
|
|
|
7480
7551
|
} | {
|
|
7481
7552
|
blockHash: `0x${string}` | null;
|
|
7482
7553
|
blockNumber: bigint | null;
|
|
7554
|
+
blockTimestamp?: bigint | undefined;
|
|
7483
7555
|
from: import("viem").Address;
|
|
7484
7556
|
gas: bigint;
|
|
7485
7557
|
hash: import("viem").Hash;
|
|
@@ -7508,6 +7580,7 @@ export declare const supportedChainsMapping: {
|
|
|
7508
7580
|
} | {
|
|
7509
7581
|
blockHash: `0x${string}` | null;
|
|
7510
7582
|
blockNumber: bigint | null;
|
|
7583
|
+
blockTimestamp?: bigint | undefined;
|
|
7511
7584
|
from: import("viem").Address;
|
|
7512
7585
|
gas: bigint;
|
|
7513
7586
|
hash: import("viem").Hash;
|
|
@@ -7536,6 +7609,7 @@ export declare const supportedChainsMapping: {
|
|
|
7536
7609
|
} | {
|
|
7537
7610
|
blockHash: `0x${string}` | null;
|
|
7538
7611
|
blockNumber: bigint | null;
|
|
7612
|
+
blockTimestamp?: bigint | undefined;
|
|
7539
7613
|
from: import("viem").Address;
|
|
7540
7614
|
gas: bigint;
|
|
7541
7615
|
hash: import("viem").Hash;
|
|
@@ -7566,11 +7640,12 @@ export declare const supportedChainsMapping: {
|
|
|
7566
7640
|
};
|
|
7567
7641
|
readonly transactionReceipt: {
|
|
7568
7642
|
exclude: [] | undefined;
|
|
7569
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
7643
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
7570
7644
|
blobGasPrice?: bigint | undefined;
|
|
7571
7645
|
blobGasUsed?: bigint | undefined;
|
|
7572
7646
|
blockHash: import("viem").Hash;
|
|
7573
7647
|
blockNumber: bigint;
|
|
7648
|
+
blockTimestamp?: bigint | undefined;
|
|
7574
7649
|
contractAddress: import("viem").Address | null | undefined;
|
|
7575
7650
|
cumulativeGasUsed: bigint;
|
|
7576
7651
|
effectiveGasPrice: bigint;
|
|
@@ -7592,9 +7667,17 @@ export declare const supportedChainsMapping: {
|
|
|
7592
7667
|
type: "transactionReceipt";
|
|
7593
7668
|
};
|
|
7594
7669
|
};
|
|
7670
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
7671
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
7672
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
7673
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
7674
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
7675
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
7676
|
+
}] | undefined;
|
|
7595
7677
|
serializers: {
|
|
7596
7678
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
7597
7679
|
};
|
|
7680
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
7598
7681
|
};
|
|
7599
7682
|
readonly bera: {
|
|
7600
7683
|
blockExplorers: {
|
|
@@ -7635,16 +7718,25 @@ export declare const supportedChainsMapping: {
|
|
|
7635
7718
|
sourceId?: number | undefined | undefined;
|
|
7636
7719
|
testnet: false;
|
|
7637
7720
|
custom?: Record<string, unknown> | undefined;
|
|
7721
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
7638
7722
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
7639
7723
|
formatters?: undefined;
|
|
7724
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
7725
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
7726
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
7727
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
7728
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
7729
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
7730
|
+
}] | undefined;
|
|
7640
7731
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
7732
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
7641
7733
|
};
|
|
7642
7734
|
readonly sei: {
|
|
7643
7735
|
blockExplorers: {
|
|
7644
7736
|
readonly default: {
|
|
7645
|
-
readonly name: "
|
|
7646
|
-
readonly url: "https://
|
|
7647
|
-
readonly apiUrl: "https://
|
|
7737
|
+
readonly name: "Seiscan";
|
|
7738
|
+
readonly url: "https://seiscan.io";
|
|
7739
|
+
readonly apiUrl: "https://api.etherscan.io/v2/api";
|
|
7648
7740
|
};
|
|
7649
7741
|
};
|
|
7650
7742
|
blockTime?: number | undefined | undefined;
|
|
@@ -7671,9 +7763,18 @@ export declare const supportedChainsMapping: {
|
|
|
7671
7763
|
sourceId?: number | undefined | undefined;
|
|
7672
7764
|
testnet?: boolean | undefined | undefined;
|
|
7673
7765
|
custom?: Record<string, unknown> | undefined;
|
|
7766
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
7674
7767
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
7675
7768
|
formatters?: undefined;
|
|
7769
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
7770
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
7771
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
7772
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
7773
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
7774
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
7775
|
+
}] | undefined;
|
|
7676
7776
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
7777
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
7677
7778
|
};
|
|
7678
7779
|
readonly avalanche: {
|
|
7679
7780
|
blockExplorers: {
|
|
@@ -7707,9 +7808,18 @@ export declare const supportedChainsMapping: {
|
|
|
7707
7808
|
sourceId?: number | undefined | undefined;
|
|
7708
7809
|
testnet?: boolean | undefined | undefined;
|
|
7709
7810
|
custom?: Record<string, unknown> | undefined;
|
|
7811
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
7710
7812
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
7711
7813
|
formatters?: undefined;
|
|
7814
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
7815
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
7816
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
7817
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
7818
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
7819
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
7820
|
+
}] | undefined;
|
|
7712
7821
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
7822
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
7713
7823
|
};
|
|
7714
7824
|
readonly base: {
|
|
7715
7825
|
blockExplorers: {
|
|
@@ -7783,11 +7893,12 @@ export declare const supportedChainsMapping: {
|
|
|
7783
7893
|
sourceId: 1;
|
|
7784
7894
|
testnet?: boolean | undefined | undefined;
|
|
7785
7895
|
custom?: Record<string, unknown> | undefined;
|
|
7896
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
7786
7897
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
7787
7898
|
formatters: {
|
|
7788
7899
|
readonly block: {
|
|
7789
7900
|
exclude: [] | undefined;
|
|
7790
|
-
format: (args: import("viem/chains").OpStackRpcBlock) => {
|
|
7901
|
+
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
7791
7902
|
baseFeePerGas: bigint | null;
|
|
7792
7903
|
blobGasUsed: bigint;
|
|
7793
7904
|
difficulty: bigint;
|
|
@@ -7820,9 +7931,10 @@ export declare const supportedChainsMapping: {
|
|
|
7820
7931
|
};
|
|
7821
7932
|
readonly transaction: {
|
|
7822
7933
|
exclude: [] | undefined;
|
|
7823
|
-
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
7934
|
+
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
7824
7935
|
blockHash: `0x${string}` | null;
|
|
7825
7936
|
blockNumber: bigint | null;
|
|
7937
|
+
blockTimestamp?: bigint | undefined;
|
|
7826
7938
|
from: import("viem").Address;
|
|
7827
7939
|
gas: bigint;
|
|
7828
7940
|
hash: import("viem").Hash;
|
|
@@ -7848,16 +7960,17 @@ export declare const supportedChainsMapping: {
|
|
|
7848
7960
|
r: import("viem").Hex;
|
|
7849
7961
|
s: import("viem").Hex;
|
|
7850
7962
|
v: bigint;
|
|
7851
|
-
value: bigint;
|
|
7852
|
-
gas: bigint;
|
|
7853
7963
|
to: import("viem").Address | null;
|
|
7854
7964
|
from: import("viem").Address;
|
|
7965
|
+
gas: bigint;
|
|
7855
7966
|
nonce: number;
|
|
7967
|
+
value: bigint;
|
|
7856
7968
|
blockHash: `0x${string}` | null;
|
|
7857
7969
|
blockNumber: bigint | null;
|
|
7858
|
-
|
|
7970
|
+
blockTimestamp?: bigint | undefined;
|
|
7859
7971
|
hash: import("viem").Hash;
|
|
7860
7972
|
input: import("viem").Hex;
|
|
7973
|
+
transactionIndex: number | null;
|
|
7861
7974
|
typeHex: import("viem").Hex | null;
|
|
7862
7975
|
accessList?: undefined | undefined;
|
|
7863
7976
|
authorizationList?: undefined | undefined;
|
|
@@ -7875,6 +7988,7 @@ export declare const supportedChainsMapping: {
|
|
|
7875
7988
|
} | {
|
|
7876
7989
|
blockHash: `0x${string}` | null;
|
|
7877
7990
|
blockNumber: bigint | null;
|
|
7991
|
+
blockTimestamp?: bigint | undefined;
|
|
7878
7992
|
from: import("viem").Address;
|
|
7879
7993
|
gas: bigint;
|
|
7880
7994
|
hash: import("viem").Hash;
|
|
@@ -7903,6 +8017,7 @@ export declare const supportedChainsMapping: {
|
|
|
7903
8017
|
} | {
|
|
7904
8018
|
blockHash: `0x${string}` | null;
|
|
7905
8019
|
blockNumber: bigint | null;
|
|
8020
|
+
blockTimestamp?: bigint | undefined;
|
|
7906
8021
|
from: import("viem").Address;
|
|
7907
8022
|
gas: bigint;
|
|
7908
8023
|
hash: import("viem").Hash;
|
|
@@ -7931,6 +8046,7 @@ export declare const supportedChainsMapping: {
|
|
|
7931
8046
|
} | {
|
|
7932
8047
|
blockHash: `0x${string}` | null;
|
|
7933
8048
|
blockNumber: bigint | null;
|
|
8049
|
+
blockTimestamp?: bigint | undefined;
|
|
7934
8050
|
from: import("viem").Address;
|
|
7935
8051
|
gas: bigint;
|
|
7936
8052
|
hash: import("viem").Hash;
|
|
@@ -7959,6 +8075,7 @@ export declare const supportedChainsMapping: {
|
|
|
7959
8075
|
} | {
|
|
7960
8076
|
blockHash: `0x${string}` | null;
|
|
7961
8077
|
blockNumber: bigint | null;
|
|
8078
|
+
blockTimestamp?: bigint | undefined;
|
|
7962
8079
|
from: import("viem").Address;
|
|
7963
8080
|
gas: bigint;
|
|
7964
8081
|
hash: import("viem").Hash;
|
|
@@ -7989,11 +8106,12 @@ export declare const supportedChainsMapping: {
|
|
|
7989
8106
|
};
|
|
7990
8107
|
readonly transactionReceipt: {
|
|
7991
8108
|
exclude: [] | undefined;
|
|
7992
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
8109
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
7993
8110
|
blobGasPrice?: bigint | undefined;
|
|
7994
8111
|
blobGasUsed?: bigint | undefined;
|
|
7995
8112
|
blockHash: import("viem").Hash;
|
|
7996
8113
|
blockNumber: bigint;
|
|
8114
|
+
blockTimestamp?: bigint | undefined;
|
|
7997
8115
|
contractAddress: import("viem").Address | null | undefined;
|
|
7998
8116
|
cumulativeGasUsed: bigint;
|
|
7999
8117
|
effectiveGasPrice: bigint;
|
|
@@ -8015,9 +8133,17 @@ export declare const supportedChainsMapping: {
|
|
|
8015
8133
|
type: "transactionReceipt";
|
|
8016
8134
|
};
|
|
8017
8135
|
};
|
|
8136
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
8137
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
8138
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
8139
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
8140
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
8141
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
8142
|
+
}] | undefined;
|
|
8018
8143
|
serializers: {
|
|
8019
8144
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
8020
8145
|
};
|
|
8146
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
8021
8147
|
};
|
|
8022
8148
|
readonly soneium: {
|
|
8023
8149
|
blockExplorers: {
|
|
@@ -8091,11 +8217,12 @@ export declare const supportedChainsMapping: {
|
|
|
8091
8217
|
sourceId: 1;
|
|
8092
8218
|
testnet?: boolean | undefined | undefined;
|
|
8093
8219
|
custom?: Record<string, unknown> | undefined;
|
|
8220
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
8094
8221
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
8095
8222
|
formatters: {
|
|
8096
8223
|
readonly block: {
|
|
8097
8224
|
exclude: [] | undefined;
|
|
8098
|
-
format: (args: import("viem/chains").OpStackRpcBlock) => {
|
|
8225
|
+
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
8099
8226
|
baseFeePerGas: bigint | null;
|
|
8100
8227
|
blobGasUsed: bigint;
|
|
8101
8228
|
difficulty: bigint;
|
|
@@ -8128,9 +8255,10 @@ export declare const supportedChainsMapping: {
|
|
|
8128
8255
|
};
|
|
8129
8256
|
readonly transaction: {
|
|
8130
8257
|
exclude: [] | undefined;
|
|
8131
|
-
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
8258
|
+
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
8132
8259
|
blockHash: `0x${string}` | null;
|
|
8133
8260
|
blockNumber: bigint | null;
|
|
8261
|
+
blockTimestamp?: bigint | undefined;
|
|
8134
8262
|
from: import("viem").Address;
|
|
8135
8263
|
gas: bigint;
|
|
8136
8264
|
hash: import("viem").Hash;
|
|
@@ -8156,16 +8284,17 @@ export declare const supportedChainsMapping: {
|
|
|
8156
8284
|
r: import("viem").Hex;
|
|
8157
8285
|
s: import("viem").Hex;
|
|
8158
8286
|
v: bigint;
|
|
8159
|
-
value: bigint;
|
|
8160
|
-
gas: bigint;
|
|
8161
8287
|
to: import("viem").Address | null;
|
|
8162
8288
|
from: import("viem").Address;
|
|
8289
|
+
gas: bigint;
|
|
8163
8290
|
nonce: number;
|
|
8291
|
+
value: bigint;
|
|
8164
8292
|
blockHash: `0x${string}` | null;
|
|
8165
8293
|
blockNumber: bigint | null;
|
|
8166
|
-
|
|
8294
|
+
blockTimestamp?: bigint | undefined;
|
|
8167
8295
|
hash: import("viem").Hash;
|
|
8168
8296
|
input: import("viem").Hex;
|
|
8297
|
+
transactionIndex: number | null;
|
|
8169
8298
|
typeHex: import("viem").Hex | null;
|
|
8170
8299
|
accessList?: undefined | undefined;
|
|
8171
8300
|
authorizationList?: undefined | undefined;
|
|
@@ -8183,6 +8312,7 @@ export declare const supportedChainsMapping: {
|
|
|
8183
8312
|
} | {
|
|
8184
8313
|
blockHash: `0x${string}` | null;
|
|
8185
8314
|
blockNumber: bigint | null;
|
|
8315
|
+
blockTimestamp?: bigint | undefined;
|
|
8186
8316
|
from: import("viem").Address;
|
|
8187
8317
|
gas: bigint;
|
|
8188
8318
|
hash: import("viem").Hash;
|
|
@@ -8211,6 +8341,7 @@ export declare const supportedChainsMapping: {
|
|
|
8211
8341
|
} | {
|
|
8212
8342
|
blockHash: `0x${string}` | null;
|
|
8213
8343
|
blockNumber: bigint | null;
|
|
8344
|
+
blockTimestamp?: bigint | undefined;
|
|
8214
8345
|
from: import("viem").Address;
|
|
8215
8346
|
gas: bigint;
|
|
8216
8347
|
hash: import("viem").Hash;
|
|
@@ -8239,6 +8370,7 @@ export declare const supportedChainsMapping: {
|
|
|
8239
8370
|
} | {
|
|
8240
8371
|
blockHash: `0x${string}` | null;
|
|
8241
8372
|
blockNumber: bigint | null;
|
|
8373
|
+
blockTimestamp?: bigint | undefined;
|
|
8242
8374
|
from: import("viem").Address;
|
|
8243
8375
|
gas: bigint;
|
|
8244
8376
|
hash: import("viem").Hash;
|
|
@@ -8267,6 +8399,7 @@ export declare const supportedChainsMapping: {
|
|
|
8267
8399
|
} | {
|
|
8268
8400
|
blockHash: `0x${string}` | null;
|
|
8269
8401
|
blockNumber: bigint | null;
|
|
8402
|
+
blockTimestamp?: bigint | undefined;
|
|
8270
8403
|
from: import("viem").Address;
|
|
8271
8404
|
gas: bigint;
|
|
8272
8405
|
hash: import("viem").Hash;
|
|
@@ -8297,11 +8430,12 @@ export declare const supportedChainsMapping: {
|
|
|
8297
8430
|
};
|
|
8298
8431
|
readonly transactionReceipt: {
|
|
8299
8432
|
exclude: [] | undefined;
|
|
8300
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
8433
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
8301
8434
|
blobGasPrice?: bigint | undefined;
|
|
8302
8435
|
blobGasUsed?: bigint | undefined;
|
|
8303
8436
|
blockHash: import("viem").Hash;
|
|
8304
8437
|
blockNumber: bigint;
|
|
8438
|
+
blockTimestamp?: bigint | undefined;
|
|
8305
8439
|
contractAddress: import("viem").Address | null | undefined;
|
|
8306
8440
|
cumulativeGasUsed: bigint;
|
|
8307
8441
|
effectiveGasPrice: bigint;
|
|
@@ -8323,9 +8457,17 @@ export declare const supportedChainsMapping: {
|
|
|
8323
8457
|
type: "transactionReceipt";
|
|
8324
8458
|
};
|
|
8325
8459
|
};
|
|
8460
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
8461
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
8462
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
8463
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
8464
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
8465
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
8466
|
+
}] | undefined;
|
|
8326
8467
|
serializers: {
|
|
8327
8468
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
8328
8469
|
};
|
|
8470
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
8329
8471
|
};
|
|
8330
8472
|
readonly optimism: {
|
|
8331
8473
|
blockExplorers: {
|
|
@@ -8397,11 +8539,12 @@ export declare const supportedChainsMapping: {
|
|
|
8397
8539
|
sourceId: 1;
|
|
8398
8540
|
testnet?: boolean | undefined | undefined;
|
|
8399
8541
|
custom?: Record<string, unknown> | undefined;
|
|
8542
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
8400
8543
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
8401
8544
|
formatters: {
|
|
8402
8545
|
readonly block: {
|
|
8403
8546
|
exclude: [] | undefined;
|
|
8404
|
-
format: (args: import("viem/chains").OpStackRpcBlock) => {
|
|
8547
|
+
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
8405
8548
|
baseFeePerGas: bigint | null;
|
|
8406
8549
|
blobGasUsed: bigint;
|
|
8407
8550
|
difficulty: bigint;
|
|
@@ -8434,9 +8577,10 @@ export declare const supportedChainsMapping: {
|
|
|
8434
8577
|
};
|
|
8435
8578
|
readonly transaction: {
|
|
8436
8579
|
exclude: [] | undefined;
|
|
8437
|
-
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
8580
|
+
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
8438
8581
|
blockHash: `0x${string}` | null;
|
|
8439
8582
|
blockNumber: bigint | null;
|
|
8583
|
+
blockTimestamp?: bigint | undefined;
|
|
8440
8584
|
from: import("viem").Address;
|
|
8441
8585
|
gas: bigint;
|
|
8442
8586
|
hash: import("viem").Hash;
|
|
@@ -8462,16 +8606,17 @@ export declare const supportedChainsMapping: {
|
|
|
8462
8606
|
r: import("viem").Hex;
|
|
8463
8607
|
s: import("viem").Hex;
|
|
8464
8608
|
v: bigint;
|
|
8465
|
-
value: bigint;
|
|
8466
|
-
gas: bigint;
|
|
8467
8609
|
to: import("viem").Address | null;
|
|
8468
8610
|
from: import("viem").Address;
|
|
8611
|
+
gas: bigint;
|
|
8469
8612
|
nonce: number;
|
|
8613
|
+
value: bigint;
|
|
8470
8614
|
blockHash: `0x${string}` | null;
|
|
8471
8615
|
blockNumber: bigint | null;
|
|
8472
|
-
|
|
8616
|
+
blockTimestamp?: bigint | undefined;
|
|
8473
8617
|
hash: import("viem").Hash;
|
|
8474
8618
|
input: import("viem").Hex;
|
|
8619
|
+
transactionIndex: number | null;
|
|
8475
8620
|
typeHex: import("viem").Hex | null;
|
|
8476
8621
|
accessList?: undefined | undefined;
|
|
8477
8622
|
authorizationList?: undefined | undefined;
|
|
@@ -8489,6 +8634,7 @@ export declare const supportedChainsMapping: {
|
|
|
8489
8634
|
} | {
|
|
8490
8635
|
blockHash: `0x${string}` | null;
|
|
8491
8636
|
blockNumber: bigint | null;
|
|
8637
|
+
blockTimestamp?: bigint | undefined;
|
|
8492
8638
|
from: import("viem").Address;
|
|
8493
8639
|
gas: bigint;
|
|
8494
8640
|
hash: import("viem").Hash;
|
|
@@ -8517,6 +8663,7 @@ export declare const supportedChainsMapping: {
|
|
|
8517
8663
|
} | {
|
|
8518
8664
|
blockHash: `0x${string}` | null;
|
|
8519
8665
|
blockNumber: bigint | null;
|
|
8666
|
+
blockTimestamp?: bigint | undefined;
|
|
8520
8667
|
from: import("viem").Address;
|
|
8521
8668
|
gas: bigint;
|
|
8522
8669
|
hash: import("viem").Hash;
|
|
@@ -8545,6 +8692,7 @@ export declare const supportedChainsMapping: {
|
|
|
8545
8692
|
} | {
|
|
8546
8693
|
blockHash: `0x${string}` | null;
|
|
8547
8694
|
blockNumber: bigint | null;
|
|
8695
|
+
blockTimestamp?: bigint | undefined;
|
|
8548
8696
|
from: import("viem").Address;
|
|
8549
8697
|
gas: bigint;
|
|
8550
8698
|
hash: import("viem").Hash;
|
|
@@ -8573,6 +8721,7 @@ export declare const supportedChainsMapping: {
|
|
|
8573
8721
|
} | {
|
|
8574
8722
|
blockHash: `0x${string}` | null;
|
|
8575
8723
|
blockNumber: bigint | null;
|
|
8724
|
+
blockTimestamp?: bigint | undefined;
|
|
8576
8725
|
from: import("viem").Address;
|
|
8577
8726
|
gas: bigint;
|
|
8578
8727
|
hash: import("viem").Hash;
|
|
@@ -8603,11 +8752,12 @@ export declare const supportedChainsMapping: {
|
|
|
8603
8752
|
};
|
|
8604
8753
|
readonly transactionReceipt: {
|
|
8605
8754
|
exclude: [] | undefined;
|
|
8606
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
8755
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
8607
8756
|
blobGasPrice?: bigint | undefined;
|
|
8608
8757
|
blobGasUsed?: bigint | undefined;
|
|
8609
8758
|
blockHash: import("viem").Hash;
|
|
8610
8759
|
blockNumber: bigint;
|
|
8760
|
+
blockTimestamp?: bigint | undefined;
|
|
8611
8761
|
contractAddress: import("viem").Address | null | undefined;
|
|
8612
8762
|
cumulativeGasUsed: bigint;
|
|
8613
8763
|
effectiveGasPrice: bigint;
|
|
@@ -8629,9 +8779,17 @@ export declare const supportedChainsMapping: {
|
|
|
8629
8779
|
type: "transactionReceipt";
|
|
8630
8780
|
};
|
|
8631
8781
|
};
|
|
8782
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
8783
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
8784
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
8785
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
8786
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
8787
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
8788
|
+
}] | undefined;
|
|
8632
8789
|
serializers: {
|
|
8633
8790
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
8634
8791
|
};
|
|
8792
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
8635
8793
|
};
|
|
8636
8794
|
readonly arbitrum: {
|
|
8637
8795
|
blockExplorers: {
|
|
@@ -8665,9 +8823,106 @@ export declare const supportedChainsMapping: {
|
|
|
8665
8823
|
sourceId?: number | undefined | undefined;
|
|
8666
8824
|
testnet?: boolean | undefined | undefined;
|
|
8667
8825
|
custom?: Record<string, unknown> | undefined;
|
|
8826
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
8827
|
+
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
8828
|
+
formatters?: undefined;
|
|
8829
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
8830
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
8831
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
8832
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
8833
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
8834
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
8835
|
+
}] | undefined;
|
|
8836
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
8837
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
8838
|
+
};
|
|
8839
|
+
readonly hyperevm: {
|
|
8840
|
+
blockExplorers: {
|
|
8841
|
+
readonly default: {
|
|
8842
|
+
readonly name: "HyperEVMScan";
|
|
8843
|
+
readonly url: "https://hyperevmscan.io";
|
|
8844
|
+
};
|
|
8845
|
+
};
|
|
8846
|
+
blockTime?: number | undefined | undefined;
|
|
8847
|
+
contracts: {
|
|
8848
|
+
readonly multicall3: {
|
|
8849
|
+
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
8850
|
+
readonly blockCreated: 13051;
|
|
8851
|
+
};
|
|
8852
|
+
};
|
|
8853
|
+
ensTlds?: readonly string[] | undefined;
|
|
8854
|
+
id: 999;
|
|
8855
|
+
name: "HyperEVM";
|
|
8856
|
+
nativeCurrency: {
|
|
8857
|
+
readonly name: "HYPE";
|
|
8858
|
+
readonly symbol: "HYPE";
|
|
8859
|
+
readonly decimals: 18;
|
|
8860
|
+
};
|
|
8861
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
8862
|
+
rpcUrls: {
|
|
8863
|
+
readonly default: {
|
|
8864
|
+
readonly http: readonly ["https://rpc.hyperliquid.xyz/evm"];
|
|
8865
|
+
};
|
|
8866
|
+
};
|
|
8867
|
+
sourceId?: number | undefined | undefined;
|
|
8868
|
+
testnet: false;
|
|
8869
|
+
custom?: Record<string, unknown> | undefined;
|
|
8870
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
8871
|
+
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
8872
|
+
formatters?: undefined;
|
|
8873
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
8874
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
8875
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
8876
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
8877
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
8878
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
8879
|
+
}] | undefined;
|
|
8880
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
8881
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
8882
|
+
};
|
|
8883
|
+
readonly hyperliquid: {
|
|
8884
|
+
blockExplorers: {
|
|
8885
|
+
readonly default: {
|
|
8886
|
+
readonly name: "HyperEVMScan";
|
|
8887
|
+
readonly url: "https://hyperevmscan.io";
|
|
8888
|
+
};
|
|
8889
|
+
};
|
|
8890
|
+
blockTime?: number | undefined | undefined;
|
|
8891
|
+
contracts: {
|
|
8892
|
+
readonly multicall3: {
|
|
8893
|
+
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
8894
|
+
readonly blockCreated: 13051;
|
|
8895
|
+
};
|
|
8896
|
+
};
|
|
8897
|
+
ensTlds?: readonly string[] | undefined;
|
|
8898
|
+
id: 999;
|
|
8899
|
+
name: "HyperEVM";
|
|
8900
|
+
nativeCurrency: {
|
|
8901
|
+
readonly name: "HYPE";
|
|
8902
|
+
readonly symbol: "HYPE";
|
|
8903
|
+
readonly decimals: 18;
|
|
8904
|
+
};
|
|
8905
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
8906
|
+
rpcUrls: {
|
|
8907
|
+
readonly default: {
|
|
8908
|
+
readonly http: readonly ["https://rpc.hyperliquid.xyz/evm"];
|
|
8909
|
+
};
|
|
8910
|
+
};
|
|
8911
|
+
sourceId?: number | undefined | undefined;
|
|
8912
|
+
testnet: false;
|
|
8913
|
+
custom?: Record<string, unknown> | undefined;
|
|
8914
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
8668
8915
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
8669
8916
|
formatters?: undefined;
|
|
8917
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
8918
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
8919
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
8920
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
8921
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
8922
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
8923
|
+
}] | undefined;
|
|
8670
8924
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
8925
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
8671
8926
|
};
|
|
8672
8927
|
};
|
|
8673
8928
|
export declare function getChainConfig(fromChain: string | number): ViemChain;
|
|
@@ -88,6 +88,8 @@ exports.supportedChainsMapping = {
|
|
|
88
88
|
soneium: chains_1.soneium,
|
|
89
89
|
optimism: chains_1.optimism,
|
|
90
90
|
arbitrum: chains_1.arbitrum,
|
|
91
|
+
hyperevm: chains_1.hyperEvm,
|
|
92
|
+
hyperliquid: chains_1.hyperEvm,
|
|
91
93
|
};
|
|
92
94
|
const chainIdToChainConfigMapping = Object.values(exports.supportedChainsMapping).reduce((acc, chain) => {
|
|
93
95
|
acc[chain.id] = chain;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"common.js","sourceRoot":"","sources":["../../../src/gateway/utils/common.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"common.js","sourceRoot":"","sources":["../../../src/gateway/utils/common.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gobob/bob-sdk",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.9.0",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"repository": {
|
|
@@ -59,6 +59,6 @@
|
|
|
59
59
|
"bitcoinjs-lib": "^6.1.7",
|
|
60
60
|
"global": "^4.4.0",
|
|
61
61
|
"globals": "^17.4.0",
|
|
62
|
-
"viem": "
|
|
62
|
+
"viem": "2.49.0"
|
|
63
63
|
}
|
|
64
64
|
}
|