-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
488 lines (484 loc) · 13.4 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
export {
type RequestErrorType,
buildRequest,
} from './buildRequest.js'
export {
type OffchainLookupErrorType,
ccipRequest,
/** @deprecated Use `ccipRequest`. */
ccipRequest as ccipFetch,
offchainLookup,
offchainLookupAbiItem,
offchainLookupSignature,
} from './ccip.js'
export {
type AssertCurrentChainErrorType,
type AssertCurrentChainParameters,
assertCurrentChain,
} from './chain/assertCurrentChain.js'
export { defineChain } from './chain/defineChain.js'
export {
type ExtractChainErrorType,
type ExtractChainParameters,
type ExtractChainReturnType,
extractChain,
} from './chain/extractChain.js'
export {
type GetChainContractAddressErrorType,
getChainContractAddress,
} from './chain/getChainContractAddress.js'
export { arrayRegex, bytesRegex, integerRegex } from './regex.js'
export {
type WebSocketAsyncErrorType,
type WebSocketAsyncOptions,
type WebSocketAsyncReturnType,
type WebSocketErrorType,
type WebSocketOptions,
type WebSocketReturnType,
getSocket,
rpc,
} from './rpc/compat.js'
export {
type HttpRpcClient,
type HttpRpcClientOptions,
type HttpRequestErrorType,
type HttpRequestParameters,
type HttpRequestReturnType,
getHttpRpcClient,
} from './rpc/http.js'
export {
type GetSocketRpcClientErrorType,
type GetSocketRpcClientParameters,
type GetSocketParameters,
type Socket,
type SocketRpcClient,
getSocketRpcClient,
socketClientCache,
} from './rpc/socket.js'
export { getWebSocketRpcClient } from './rpc/webSocket.js'
export { type StringifyErrorType, stringify } from './stringify.js'
export {
type DomainSeparatorErrorType,
validateTypedData,
} from './typedData.js'
export {
type DecodeAbiParametersErrorType,
type DecodeAbiParametersReturnType,
decodeAbiParameters,
} from './abi/decodeAbiParameters.js'
export {
type DecodeErrorResultErrorType,
type DecodeErrorResultParameters,
type DecodeErrorResultReturnType,
decodeErrorResult,
} from './abi/decodeErrorResult.js'
export {
type DecodeEventLogErrorType,
type DecodeEventLogParameters,
type DecodeEventLogReturnType,
decodeEventLog,
} from './abi/decodeEventLog.js'
export {
type DecodeFunctionDataErrorType,
type DecodeFunctionDataParameters,
decodeFunctionData,
} from './abi/decodeFunctionData.js'
export {
type DecodeFunctionResultErrorType,
type DecodeFunctionResultParameters,
type DecodeFunctionResultReturnType,
decodeFunctionResult,
} from './abi/decodeFunctionResult.js'
export {
type EncodeAbiParametersErrorType,
type EncodeAbiParametersReturnType,
encodeAbiParameters,
} from './abi/encodeAbiParameters.js'
export {
type EncodeDeployDataErrorType,
type EncodeDeployDataParameters,
encodeDeployData,
} from './abi/encodeDeployData.js'
export {
type EncodeErrorResultErrorType,
type EncodeErrorResultParameters,
encodeErrorResult,
} from './abi/encodeErrorResult.js'
export {
type EncodeArgErrorType,
type EncodeEventTopicsParameters,
encodeEventTopics,
} from './abi/encodeEventTopics.js'
export {
type EncodeFunctionDataErrorType,
type EncodeFunctionDataParameters,
encodeFunctionData,
} from './abi/encodeFunctionData.js'
export {
type EncodeFunctionResultErrorType,
type EncodeFunctionResultParameters,
encodeFunctionResult,
} from './abi/encodeFunctionResult.js'
export {
type ParseEventLogsErrorType,
type ParseEventLogsParameters,
type ParseEventLogsReturnType,
parseEventLogs,
} from './abi/parseEventLogs.js'
export {
type GetAbiItemErrorType,
type GetAbiItemParameters,
getAbiItem,
} from './abi/getAbiItem.js'
export {
type ParseAbi,
type ParseAbiItem,
type ParseAbiParameter,
type ParseAbiParameters,
parseAbi,
parseAbiItem,
parseAbiParameter,
parseAbiParameters,
} from 'abitype'
export { type EncodePackedErrorType, encodePacked } from './abi/encodePacked.js'
export {
type FormatAbiItemWithArgsErrorType,
formatAbiItemWithArgs,
} from './abi/formatAbiItemWithArgs.js'
export {
type FormatAbiItemErrorType,
type FormatAbiParamErrorType,
type FormatAbiParamsErrorType,
formatAbiItem,
formatAbiParams,
} from './abi/formatAbiItem.js'
export {
type ParseAccountErrorType,
parseAccount,
} from '../accounts/utils/parseAccount.js'
export {
type PublicKeyToAddressErrorType,
publicKeyToAddress,
} from '../accounts/utils/publicKeyToAddress.js'
export {
type GetContractAddressOptions,
type GetCreate2AddressErrorType,
type GetCreate2AddressOptions,
type GetCreateAddressErrorType,
type GetCreateAddressOptions,
getContractAddress,
getCreateAddress,
getCreate2Address,
} from './address/getContractAddress.js'
export {
type ChecksumAddressErrorType,
getAddress,
} from './address/getAddress.js'
export { type IsAddressErrorType, isAddress } from './address/isAddress.js'
export {
type IsAddressEqualErrorType,
isAddressEqual,
} from './address/isAddressEqual.js'
export {
type ConcatBytesErrorType,
type ConcatErrorType,
type ConcatHexErrorType,
concat,
concatBytes,
concatHex,
} from './data/concat.js'
export { type IsBytesErrorType, isBytes } from './data/isBytes.js'
export { type IsHexErrorType, isHex } from './data/isHex.js'
export {
type PadBytesErrorType,
type PadErrorType,
type PadHexErrorType,
pad,
padBytes,
padHex,
} from './data/pad.js'
export { type SizeErrorType, size } from './data/size.js'
export {
type AssertEndOffsetErrorType,
type AssertStartOffsetErrorType,
type SliceBytesErrorType,
type SliceErrorType,
type SliceHexErrorType,
type SliceReturnType,
slice,
sliceBytes,
sliceHex,
} from './data/slice.js'
export { type TrimErrorType, type TrimReturnType, trim } from './data/trim.js'
export {
type DefineBlockErrorType,
type FormattedBlock,
type FormatBlockErrorType,
defineBlock,
formatBlock,
} from './formatters/block.js'
export {
type DefineTransactionErrorType,
type FormattedTransaction,
type FormatTransactionErrorType,
defineTransaction,
formatTransaction,
transactionType,
} from './formatters/transaction.js'
export { type FormatLogErrorType, formatLog } from './formatters/log.js'
export {
type DefineTransactionReceiptErrorType,
type FormatTransactionReceiptErrorType,
type FormattedTransactionReceipt,
defineTransactionReceipt,
} from './formatters/transactionReceipt.js'
export {
type DefineTransactionRequestErrorType,
type FormatTransactionRequestErrorType,
type FormattedTransactionRequest,
defineTransactionRequest,
formatTransactionRequest,
} from './formatters/transactionRequest.js'
export { type ExtractErrorType, extract } from './formatters/extract.js'
export {
type BytesToRlpErrorType,
type HexToRlpErrorType,
type ToRlpErrorType,
type ToRlpReturnType,
toRlp,
} from './encoding/toRlp.js'
export {
type BoolToBytesErrorType,
type BoolToBytesOpts,
type HexToBytesErrorType,
type HexToBytesOpts,
type NumberToBytesErrorType,
type StringToBytesErrorType,
type StringToBytesOpts,
type ToBytesErrorType,
type ToBytesParameters,
boolToBytes,
toBytes,
hexToBytes,
numberToBytes,
stringToBytes,
} from './encoding/toBytes.js'
export {
type BoolToHexErrorType,
type BoolToHexOpts,
type BytesToHexErrorType,
type BytesToHexOpts,
type NumberToHexErrorType,
type NumberToHexOpts,
type StringToHexErrorType,
type StringToHexOpts,
type ToHexErrorType,
type ToHexParameters,
boolToHex,
bytesToHex,
toHex,
numberToHex,
stringToHex,
} from './encoding/toHex.js'
export {
type BytesToBigIntErrorType,
type BytesToBigIntOpts,
type BytesToBoolErrorType,
type BytesToBoolOpts,
type BytesToNumberErrorType,
type BytesToNumberOpts,
type BytesToStringErrorType,
type BytesToStringOpts,
type FromBytesErrorType,
type FromBytesParameters,
type FromBytesReturnType,
bytesToBigInt,
bytesToBigInt as bytesToBigint,
bytesToBool,
bytesToNumber,
bytesToString,
fromBytes,
} from './encoding/fromBytes.js'
export {
type AssertSizeErrorType,
type FromHexErrorType,
type FromHexParameters,
type FromHexReturnType,
type HexToBigIntErrorType,
type HexToBigIntOpts,
type HexToBoolErrorType,
type HexToBoolOpts,
type HexToNumberErrorType,
type HexToNumberOpts,
type HexToStringErrorType,
type HexToStringOpts,
fromHex,
hexToBool,
hexToBigInt,
hexToNumber,
hexToString,
} from './encoding/fromHex.js'
export {
type FromRlpErrorType,
fromRlp,
} from './encoding/fromRlp.js'
export {
type GetNodeErrorParameters,
type GetNodeErrorReturnType,
containsNodeError,
getNodeError,
} from './errors/getNodeError.js'
export {
type GetCallErrorReturnType,
getCallError,
} from './errors/getCallError.js'
export {
type GetContractErrorReturnType,
getContractError,
} from './errors/getContractError.js'
export {
type GetEstimateGasErrorReturnType,
getEstimateGasError,
} from './errors/getEstimateGasError.js'
export {
type GetTransactionErrorParameters,
type GetTransactionErrorReturnType,
getTransactionError,
} from './errors/getTransactionError.js'
export { getAction } from './getAction.js'
export {
type DefineFormatterErrorType,
defineFormatter,
} from './formatters/formatter.js'
export {
type ToEventSelectorErrorType,
toEventSelector,
/** @deprecated use `ToEventSelectorErrorType`. */
type ToEventSelectorErrorType as GetEventSelectorErrorType,
/** @deprecated use `toEventSelector`. */
toEventSelector as getEventSelector,
} from './hash/toEventSelector.js'
export {
type ToFunctionSelectorErrorType,
toFunctionSelector,
/** @deprecated use `ToFunctionSelectorErrorType`. */
type ToFunctionSelectorErrorType as GetFunctionSelectorErrorType,
/** @deprecated use `toFunctionSelector`. */
toFunctionSelector as getFunctionSelector,
} from './hash/toFunctionSelector.js'
export {
type ToEventSignatureErrorType,
toEventSignature,
/** @deprecated use `ToEventSignatureErrorType`. */
type ToEventSignatureErrorType as GetEventSignatureErrorType,
/** @deprecated use `toEventSignature`. */
toEventSignature as getEventSignature,
} from './hash/toEventSignature.js'
export {
type ToFunctionSignatureErrorType,
toFunctionSignature,
/** @deprecated use `ToFunctionSignatureErrorType`. */
type ToFunctionSignatureErrorType as GetFunctionSignatureErrorType,
/** @deprecated use `toFunctionSignature`. */
toFunctionSignature as getFunctionSignature,
} from './hash/toFunctionSignature.js'
export {
type ToEventHashErrorType,
toEventHash,
} from './hash/toEventHash.js'
export {
type ToFunctionHashErrorType,
toFunctionHash,
} from './hash/toFunctionHash.js'
export { type IsHashErrorType, isHash } from './hash/isHash.js'
export { type Keccak256ErrorType, keccak256 } from './hash/keccak256.js'
export { type Sha256ErrorType, sha256 } from './hash/sha256.js'
export { type Ripemd160ErrorType, ripemd160 } from './hash/ripemd160.js'
export {
type HashDomainErrorType,
type HashTypedDataParameters,
type HashTypedDataReturnType,
hashTypedData,
} from './signature/hashTypedData.js'
export {
type RecoverAddressErrorType,
type RecoverAddressParameters,
type RecoverAddressReturnType,
recoverAddress,
} from './signature/recoverAddress.js'
export {
type RecoverMessageAddressErrorType,
type RecoverMessageAddressParameters,
type RecoverMessageAddressReturnType,
recoverMessageAddress,
} from './signature/recoverMessageAddress.js'
export {
type RecoverPublicKeyErrorType,
type RecoverPublicKeyParameters,
type RecoverPublicKeyReturnType,
recoverPublicKey,
} from './signature/recoverPublicKey.js'
export {
type RecoverTypedDataAddressErrorType,
type RecoverTypedDataAddressParameters,
type RecoverTypedDataAddressReturnType,
recoverTypedDataAddress,
} from './signature/recoverTypedDataAddress.js'
export {
type VerifyMessageErrorType,
type VerifyMessageParameters,
type VerifyMessageReturnType,
verifyMessage,
} from './signature/verifyMessage.js'
export {
type VerifyTypedDataErrorType,
type VerifyTypedDataParameters,
type VerifyTypedDataReturnType,
verifyTypedData,
} from './signature/verifyTypedData.js'
export {
type HashMessage,
type HashMessageErrorType,
hashMessage,
} from './signature/hashMessage.js'
export {
type GetSerializedTransactionTypeErrorType,
type GetSerializedTransactionType,
getSerializedTransactionType,
} from './transaction/getSerializedTransactionType.js'
export {
type GetTransationTypeErrorType,
type GetTransactionType,
getTransactionType,
} from './transaction/getTransactionType.js'
export {
type AssertRequestErrorType,
assertRequest,
} from './transaction/assertRequest.js'
export {
type AssertTransactionEIP1559ErrorType,
type AssertTransactionEIP2930ErrorType,
type AssertTransactionLegacyErrorType,
assertTransactionEIP1559,
assertTransactionEIP2930,
assertTransactionLegacy,
} from './transaction/assertTransaction.js'
export {
type ParseTransactionErrorType,
parseTransaction,
} from './transaction/parseTransaction.js'
export {
serializeTransaction,
type SerializeTransactionErrorType,
type SerializeTransactionFn,
} from './transaction/serializeTransaction.js'
export {
type SerializeAccessListErrorType,
serializeAccessList,
} from './transaction/serializeAccessList.js'
export { type FormatEtherErrorType, formatEther } from './unit/formatEther.js'
export { type FormatGweiErrorType, formatGwei } from './unit/formatGwei.js'
export { type FormatUnitsErrorType, formatUnits } from './unit/formatUnits.js'
export { type ParseUnitsErrorType, parseUnits } from './unit/parseUnits.js'
export { type ParseEtherErrorType, parseEther } from './unit/parseEther.js'
export { type ParseGweiErrorType, parseGwei } from './unit/parseGwei.js'