viem 2.0.0-beta.0 → 2.0.0-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +62 -0
- package/README.md +4 -0
- package/_cjs/actions/index.js.map +1 -1
- package/_cjs/actions/public/getBlockNumber.js +2 -2
- package/_cjs/actions/public/getBlockNumber.js.map +1 -1
- package/_cjs/actions/public/watchContractEvent.js +2 -1
- package/_cjs/actions/public/watchContractEvent.js.map +1 -1
- package/_cjs/chains/celo/formatters.js +23 -35
- package/_cjs/chains/celo/formatters.js.map +1 -1
- package/_cjs/chains/celo/serializers.js +20 -38
- package/_cjs/chains/celo/serializers.js.map +1 -1
- package/_cjs/chains/celo/utils.js +44 -0
- package/_cjs/chains/celo/utils.js.map +1 -0
- package/_cjs/chains/definitions/astar.js +29 -0
- package/_cjs/chains/definitions/astar.js.map +1 -0
- package/_cjs/chains/definitions/gnosis.js +4 -1
- package/_cjs/chains/definitions/gnosis.js.map +1 -1
- package/_cjs/chains/definitions/gnosisChiado.js +10 -1
- package/_cjs/chains/definitions/gnosisChiado.js.map +1 -1
- package/_cjs/chains/definitions/kava.js +29 -0
- package/_cjs/chains/definitions/kava.js.map +1 -0
- package/_cjs/chains/definitions/kavaTestnet.js +32 -0
- package/_cjs/chains/definitions/kavaTestnet.js.map +1 -0
- package/_cjs/chains/definitions/neonDevnet.js +1 -1
- package/_cjs/chains/definitions/neonDevnet.js.map +1 -1
- package/_cjs/chains/definitions/neonMainnet.js +27 -0
- package/_cjs/chains/definitions/neonMainnet.js.map +1 -0
- package/_cjs/chains/definitions/scrollSepolia.js +0 -1
- package/_cjs/chains/definitions/scrollSepolia.js.map +1 -1
- package/_cjs/chains/definitions/tenet.js +23 -0
- package/_cjs/chains/definitions/tenet.js.map +1 -0
- package/_cjs/chains/index.js +14 -4
- package/_cjs/chains/index.js.map +1 -1
- package/_cjs/chains/zksync/formatters.js +6 -2
- package/_cjs/chains/zksync/formatters.js.map +1 -1
- package/_cjs/errors/contract.js +1 -1
- package/_cjs/errors/contract.js.map +1 -1
- package/_cjs/errors/encoding.js +1 -37
- package/_cjs/errors/encoding.js.map +1 -1
- package/_cjs/errors/estimateGas.js +1 -1
- package/_cjs/errors/estimateGas.js.map +1 -1
- package/_cjs/errors/node.js +11 -11
- package/_cjs/errors/node.js.map +1 -1
- package/_cjs/errors/rpc.js +18 -18
- package/_cjs/errors/rpc.js.map +1 -1
- package/_cjs/errors/transaction.js +1 -1
- package/_cjs/errors/transaction.js.map +1 -1
- package/_cjs/errors/version.js +1 -1
- package/_cjs/index.js +5 -9
- package/_cjs/index.js.map +1 -1
- package/_cjs/utils/hash/getFunctionSignature.js +9 -9
- package/_cjs/utils/hash/getFunctionSignature.js.map +1 -1
- package/_cjs/utils/hash/normalizeSignature.js +48 -0
- package/_cjs/utils/hash/normalizeSignature.js.map +1 -0
- package/_cjs/utils/index.js +3 -10
- package/_cjs/utils/index.js.map +1 -1
- package/_cjs/utils/transaction/serializeTransaction.js +14 -5
- package/_cjs/utils/transaction/serializeTransaction.js.map +1 -1
- package/_esm/actions/index.js.map +1 -1
- package/_esm/actions/public/getBlockNumber.js +2 -2
- package/_esm/actions/public/getBlockNumber.js.map +1 -1
- package/_esm/actions/public/watchContractEvent.js +2 -1
- package/_esm/actions/public/watchContractEvent.js.map +1 -1
- package/_esm/chains/celo/formatters.js +23 -35
- package/_esm/chains/celo/formatters.js.map +1 -1
- package/_esm/chains/celo/serializers.js +19 -44
- package/_esm/chains/celo/serializers.js.map +1 -1
- package/_esm/chains/celo/utils.js +39 -0
- package/_esm/chains/celo/utils.js.map +1 -0
- package/_esm/chains/definitions/astar.js +26 -0
- package/_esm/chains/definitions/astar.js.map +1 -0
- package/_esm/chains/definitions/gnosis.js +4 -1
- package/_esm/chains/definitions/gnosis.js.map +1 -1
- package/_esm/chains/definitions/gnosisChiado.js +10 -1
- package/_esm/chains/definitions/gnosisChiado.js.map +1 -1
- package/_esm/chains/definitions/kava.js +26 -0
- package/_esm/chains/definitions/kava.js.map +1 -0
- package/_esm/chains/definitions/kavaTestnet.js +29 -0
- package/_esm/chains/definitions/kavaTestnet.js.map +1 -0
- package/_esm/chains/definitions/neonDevnet.js +1 -1
- package/_esm/chains/definitions/neonDevnet.js.map +1 -1
- package/_esm/chains/definitions/neonMainnet.js +24 -0
- package/_esm/chains/definitions/neonMainnet.js.map +1 -0
- package/_esm/chains/definitions/scrollSepolia.js +0 -1
- package/_esm/chains/definitions/scrollSepolia.js.map +1 -1
- package/_esm/chains/definitions/tenet.js +20 -0
- package/_esm/chains/definitions/tenet.js.map +1 -0
- package/_esm/chains/index.js +5 -0
- package/_esm/chains/index.js.map +1 -1
- package/_esm/chains/zksync/formatters.js +6 -2
- package/_esm/chains/zksync/formatters.js.map +1 -1
- package/_esm/errors/contract.js +1 -1
- package/_esm/errors/contract.js.map +1 -1
- package/_esm/errors/encoding.js +0 -36
- package/_esm/errors/encoding.js.map +1 -1
- package/_esm/errors/estimateGas.js +1 -1
- package/_esm/errors/estimateGas.js.map +1 -1
- package/_esm/errors/node.js +11 -22
- package/_esm/errors/node.js.map +1 -1
- package/_esm/errors/rpc.js +18 -36
- package/_esm/errors/rpc.js.map +1 -1
- package/_esm/errors/transaction.js +1 -1
- package/_esm/errors/transaction.js.map +1 -1
- package/_esm/errors/version.js +1 -1
- package/_esm/index.js +2 -4
- package/_esm/index.js.map +1 -1
- package/_esm/utils/hash/getFunctionSignature.js +9 -9
- package/_esm/utils/hash/getFunctionSignature.js.map +1 -1
- package/_esm/utils/hash/normalizeSignature.js +51 -0
- package/_esm/utils/hash/normalizeSignature.js.map +1 -0
- package/_esm/utils/index.js +1 -7
- package/_esm/utils/index.js.map +1 -1
- package/_esm/utils/transaction/serializeTransaction.js +17 -5
- package/_esm/utils/transaction/serializeTransaction.js.map +1 -1
- package/_types/actions/index.d.ts +1 -5
- package/_types/actions/index.d.ts.map +1 -1
- package/_types/actions/public/getBlockNumber.d.ts +1 -3
- package/_types/actions/public/getBlockNumber.d.ts.map +1 -1
- package/_types/actions/public/watchContractEvent.d.ts.map +1 -1
- package/_types/chains/celo/formatters.d.ts +6 -6
- package/_types/chains/celo/formatters.d.ts.map +1 -1
- package/_types/chains/celo/serializers.d.ts +3 -2
- package/_types/chains/celo/serializers.d.ts.map +1 -1
- package/_types/chains/celo/types.d.ts +13 -9
- package/_types/chains/celo/types.d.ts.map +1 -1
- package/_types/chains/celo/utils.d.ts +7 -0
- package/_types/chains/celo/utils.d.ts.map +1 -0
- package/_types/chains/definitions/astar.d.ts +36 -0
- package/_types/chains/definitions/astar.d.ts.map +1 -0
- package/_types/chains/definitions/celo.d.ts +7 -7
- package/_types/chains/definitions/celoAlfajores.d.ts +7 -7
- package/_types/chains/definitions/celoCannoli.d.ts +7 -7
- package/_types/chains/definitions/gnosis.d.ts +1 -0
- package/_types/chains/definitions/gnosis.d.ts.map +1 -1
- package/_types/chains/definitions/gnosisChiado.d.ts +7 -8
- package/_types/chains/definitions/gnosisChiado.d.ts.map +1 -1
- package/_types/chains/definitions/kava.d.ts +36 -0
- package/_types/chains/definitions/kava.d.ts.map +1 -0
- package/_types/chains/definitions/kavaTestnet.d.ts +36 -0
- package/_types/chains/definitions/kavaTestnet.d.ts.map +1 -0
- package/_types/chains/definitions/neonDevnet.d.ts +1 -1
- package/_types/chains/definitions/neonMainnet.d.ts +31 -0
- package/_types/chains/definitions/neonMainnet.d.ts.map +1 -0
- package/_types/chains/definitions/scrollSepolia.d.ts +0 -1
- package/_types/chains/definitions/scrollSepolia.d.ts.map +1 -1
- package/_types/chains/definitions/tenet.d.ts +38 -0
- package/_types/chains/definitions/tenet.d.ts.map +1 -0
- package/_types/chains/index.d.ts +5 -0
- package/_types/chains/index.d.ts.map +1 -1
- package/_types/chains/zksync/formatters.d.ts.map +1 -1
- package/_types/chains/zksync/types.d.ts +7 -7
- package/_types/chains/zksync/types.d.ts.map +1 -1
- package/_types/errors/encoding.d.ts +0 -33
- package/_types/errors/encoding.d.ts.map +1 -1
- package/_types/errors/version.d.ts +1 -1
- package/_types/index.d.ts +5 -25
- package/_types/index.d.ts.map +1 -1
- package/_types/types/contract.d.ts +6 -6
- package/_types/types/contract.d.ts.map +1 -1
- package/_types/utils/hash/getFunctionSignature.d.ts +4 -5
- package/_types/utils/hash/getFunctionSignature.d.ts.map +1 -1
- package/_types/utils/hash/normalizeSignature.d.ts +6 -0
- package/_types/utils/hash/normalizeSignature.d.ts.map +1 -0
- package/_types/utils/index.d.ts +1 -7
- package/_types/utils/index.d.ts.map +1 -1
- package/actions/index.ts +0 -4
- package/actions/public/getBlockNumber.ts +2 -4
- package/actions/public/watchContractEvent.ts +2 -1
- package/chains/celo/formatters.ts +24 -37
- package/chains/celo/serializers.ts +23 -59
- package/chains/celo/types.ts +30 -21
- package/chains/celo/utils.ts +68 -0
- package/chains/definitions/astar.ts +26 -0
- package/chains/definitions/gnosis.ts +4 -1
- package/chains/definitions/gnosisChiado.ts +10 -1
- package/chains/definitions/kava.ts +26 -0
- package/chains/definitions/kavaTestnet.ts +29 -0
- package/chains/definitions/neonDevnet.ts +1 -1
- package/chains/definitions/neonMainnet.ts +24 -0
- package/chains/definitions/scrollSepolia.ts +0 -1
- package/chains/definitions/tenet.ts +20 -0
- package/chains/index.ts +5 -0
- package/chains/zksync/formatters.ts +6 -2
- package/chains/zksync/types.ts +7 -7
- package/errors/contract.ts +1 -1
- package/errors/encoding.ts +0 -43
- package/errors/estimateGas.ts +1 -1
- package/errors/transaction.ts +1 -1
- package/errors/version.ts +1 -1
- package/index.ts +0 -26
- package/package.json +2 -1
- package/types/contract.ts +4 -20
- package/utils/hash/getFunctionSignature.ts +11 -21
- package/utils/hash/normalizeSignature.ts +64 -0
- package/utils/index.ts +0 -15
- package/utils/transaction/serializeTransaction.ts +17 -4
- package/_cjs/utils/contract/extractFunctionParts.js +0 -31
- package/_cjs/utils/contract/extractFunctionParts.js.map +0 -1
- package/_esm/utils/contract/extractFunctionParts.js +0 -24
- package/_esm/utils/contract/extractFunctionParts.js.map +0 -1
- package/_types/utils/contract/extractFunctionParts.d.ts +0 -18
- package/_types/utils/contract/extractFunctionParts.d.ts.map +0 -1
- package/utils/contract/extractFunctionParts.ts +0 -37
package/errors/transaction.ts
CHANGED
@@ -174,7 +174,7 @@ export class TransactionExecutionError extends BaseError {
|
|
174
174
|
to,
|
175
175
|
value:
|
176
176
|
typeof value !== 'undefined' &&
|
177
|
-
`${formatEther(value)} ${chain?.nativeCurrency
|
177
|
+
`${formatEther(value)} ${chain?.nativeCurrency?.symbol || 'ETH'}`,
|
178
178
|
data,
|
179
179
|
gas,
|
180
180
|
gasPrice:
|
package/errors/version.ts
CHANGED
@@ -1 +1 @@
|
|
1
|
-
export const version = '2.0.0-beta.
|
1
|
+
export const version = '2.0.0-beta.2'
|
package/index.ts
CHANGED
@@ -232,11 +232,7 @@ export type {
|
|
232
232
|
} from './actions/public/watchBlockNumber.js'
|
233
233
|
export type {
|
234
234
|
WatchEventOnLogsFn,
|
235
|
-
/** @deprecated - use `WatchEventOnLogsFn` instead. */
|
236
|
-
WatchEventOnLogsFn as OnLogFn,
|
237
235
|
WatchEventOnLogsParameter,
|
238
|
-
/** @deprecated - use `WatchEventOnLogsParameter` instead. */
|
239
|
-
WatchEventOnLogsParameter as OnLogParameter,
|
240
236
|
WatchEventErrorType,
|
241
237
|
WatchEventParameters,
|
242
238
|
WatchEventReturnType,
|
@@ -295,8 +291,6 @@ export type {
|
|
295
291
|
PrepareTransactionRequestErrorType,
|
296
292
|
PrepareTransactionRequestParameters,
|
297
293
|
PrepareTransactionRequestReturnType,
|
298
|
-
/** @deprecated import `prepareTransactionRequest` from `viem/actions` instead. */
|
299
|
-
prepareTransactionRequest as prepareRequest,
|
300
294
|
} from './actions/wallet/prepareTransactionRequest.js'
|
301
295
|
export type {
|
302
296
|
SendUnsignedTransactionErrorType,
|
@@ -404,23 +398,11 @@ export type {
|
|
404
398
|
ChainFormatter,
|
405
399
|
ChainEstimateFeesPerGasFnParameters,
|
406
400
|
GetChain,
|
407
|
-
/** @deprecated use `ChainFormatter` instead. */
|
408
|
-
ChainFormatter as Formatter,
|
409
401
|
ChainFormatters,
|
410
|
-
/** @deprecated use `ChainFormatters` instead. */
|
411
|
-
ChainFormatters as Formatters,
|
412
402
|
ChainSerializers,
|
413
|
-
/** @deprecated use `ChainSerializers` instead. */
|
414
|
-
ChainSerializers as Serializers,
|
415
403
|
ExtractChainFormatterExclude,
|
416
|
-
/** @deprecated use `ExtractChainFormatterExclude` instead. */
|
417
|
-
ExtractChainFormatterExclude as ExtractFormatterExclude,
|
418
404
|
ExtractChainFormatterParameters,
|
419
|
-
/** @deprecated use `ExtractChainFormatterParameters` instead. */
|
420
|
-
ExtractChainFormatterParameters as ExtractFormatterParameters,
|
421
405
|
ExtractChainFormatterReturnType,
|
422
|
-
/** @deprecated use `ExtractChainFormatterReturnType` instead. */
|
423
|
-
ExtractChainFormatterReturnType as ExtractFormatterReturnType,
|
424
406
|
} from './types/chain.js'
|
425
407
|
export {
|
426
408
|
type Client,
|
@@ -731,10 +713,6 @@ export {
|
|
731
713
|
type InvalidChainIdErrorType,
|
732
714
|
} from './errors/chain.js'
|
733
715
|
export {
|
734
|
-
DataLengthTooLongError,
|
735
|
-
type DataLengthTooLongErrorType,
|
736
|
-
DataLengthTooShortError,
|
737
|
-
type DataLengthTooShortErrorType,
|
738
716
|
InvalidBytesBooleanError,
|
739
717
|
type InvalidBytesBooleanErrorType,
|
740
718
|
IntegerOutOfRangeError,
|
@@ -743,8 +721,6 @@ export {
|
|
743
721
|
type InvalidHexBooleanErrorType,
|
744
722
|
InvalidHexValueError,
|
745
723
|
type InvalidHexValueErrorType,
|
746
|
-
OffsetOutOfBoundsError,
|
747
|
-
type OffsetOutOfBoundsErrorType,
|
748
724
|
SizeOverflowError,
|
749
725
|
type SizeOverflowErrorType,
|
750
726
|
} from './errors/encoding.js'
|
@@ -1211,8 +1187,6 @@ export {
|
|
1211
1187
|
type BytesToBigIntErrorType,
|
1212
1188
|
type BytesToBigIntOpts,
|
1213
1189
|
bytesToBigInt,
|
1214
|
-
/** @deprecated - use `bytesToBigInt` */
|
1215
|
-
bytesToBigInt as bytesToBigint,
|
1216
1190
|
type BytesToBoolErrorType,
|
1217
1191
|
type BytesToBoolOpts,
|
1218
1192
|
bytesToBool,
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "viem",
|
3
3
|
"description": "TypeScript Interface for Ethereum",
|
4
|
-
"version": "2.0.0-beta.
|
4
|
+
"version": "2.0.0-beta.2",
|
5
5
|
"main": "./_cjs/index.js",
|
6
6
|
"module": "./_esm/index.js",
|
7
7
|
"types": "./_types/index.d.ts",
|
@@ -103,6 +103,7 @@
|
|
103
103
|
"ws": "8.13.0"
|
104
104
|
},
|
105
105
|
"license": "MIT",
|
106
|
+
"homepage": "https://viem.sh",
|
106
107
|
"repository": "wagmi-dev/viem",
|
107
108
|
"authors": [
|
108
109
|
"awkweb.eth",
|
package/types/contract.ts
CHANGED
@@ -25,7 +25,6 @@ import type {
|
|
25
25
|
MaybeRequired,
|
26
26
|
NoUndefined,
|
27
27
|
Prettify,
|
28
|
-
UnionEvaluate,
|
29
28
|
UnionToTuple,
|
30
29
|
} from './utils.js'
|
31
30
|
|
@@ -154,6 +153,8 @@ export type Widen<type> =
|
|
154
153
|
: never
|
155
154
|
: never)
|
156
155
|
|
156
|
+
export type UnionWiden<type> = type extends any ? Widen<type> : never
|
157
|
+
|
157
158
|
export type ExtractAbiFunctionForArgs<
|
158
159
|
abi extends Abi,
|
159
160
|
mutability extends AbiStateMutability,
|
@@ -205,25 +206,8 @@ export type ContractFunctionParameters<
|
|
205
206
|
functionName:
|
206
207
|
| allFunctionNames // show all options
|
207
208
|
| (functionName extends allFunctionNames ? functionName : never) // infer value
|
208
|
-
|
209
|
-
|
210
|
-
? {
|
211
|
-
args?:
|
212
|
-
| allArgs // show all options
|
213
|
-
// infer value, widen inferred value of `args` conditionally to match `allArgs`
|
214
|
-
| (abi extends Abi
|
215
|
-
? args extends allArgs
|
216
|
-
? Widen<args>
|
217
|
-
: never
|
218
|
-
: never)
|
219
|
-
| undefined
|
220
|
-
}
|
221
|
-
: {
|
222
|
-
args:
|
223
|
-
| allArgs // show all options
|
224
|
-
| (Widen<args> & (args extends allArgs ? unknown : never)) // infer value, widen inferred value of `args` match `allArgs` (e.g. avoid union `args: readonly [123n] | readonly [bigint]`)
|
225
|
-
}
|
226
|
-
>
|
209
|
+
args?: (abi extends Abi ? UnionWiden<args> : never) | allArgs | undefined
|
210
|
+
} & (readonly [] extends allArgs ? {} : { args: Widen<args> })
|
227
211
|
|
228
212
|
export type ContractFunctionReturnType<
|
229
213
|
abi extends Abi | readonly unknown[] = Abi,
|
@@ -1,29 +1,19 @@
|
|
1
|
-
import type
|
1
|
+
import { type AbiFunction, formatAbiItem } from 'abitype'
|
2
2
|
|
3
3
|
import type { ErrorType } from '../../errors/utils.js'
|
4
4
|
import {
|
5
|
-
type
|
6
|
-
|
7
|
-
} from '
|
8
|
-
import {
|
9
|
-
type ExtractFunctionNameErrorType,
|
10
|
-
type ExtractFunctionParamsErrorType,
|
11
|
-
extractFunctionName,
|
12
|
-
extractFunctionParams,
|
13
|
-
} from '../contract/extractFunctionParts.js'
|
5
|
+
type NormalizeSignatureErrorType,
|
6
|
+
normalizeSignature,
|
7
|
+
} from './normalizeSignature.js'
|
14
8
|
|
15
9
|
export type GetFunctionSignatureErrorType =
|
16
|
-
|
|
17
|
-
| ExtractFunctionParamsErrorType
|
18
|
-
| FormatAbiItemErrorType
|
10
|
+
| NormalizeSignatureErrorType
|
19
11
|
| ErrorType
|
20
12
|
|
21
|
-
export const getFunctionSignature = (
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
return formatAbiItem(fn)
|
13
|
+
export const getFunctionSignature = (fn_: string | AbiFunction) => {
|
14
|
+
const fn = (() => {
|
15
|
+
if (typeof fn_ === 'string') return fn_
|
16
|
+
return formatAbiItem(fn_)
|
17
|
+
})()
|
18
|
+
return normalizeSignature(fn)
|
29
19
|
}
|
@@ -0,0 +1,64 @@
|
|
1
|
+
import { BaseError } from '../../errors/base.js'
|
2
|
+
import type { ErrorType } from '../../errors/utils.js'
|
3
|
+
|
4
|
+
export type NormalizeSignatureParameters = string
|
5
|
+
export type NormalizeSignatureReturnType = string
|
6
|
+
export type NormalizeSignatureErrorType = ErrorType
|
7
|
+
|
8
|
+
export function normalizeSignature(
|
9
|
+
signature: NormalizeSignatureParameters,
|
10
|
+
): NormalizeSignatureReturnType {
|
11
|
+
let active = true
|
12
|
+
let current = ''
|
13
|
+
let level = 0
|
14
|
+
let result = ''
|
15
|
+
let valid = false
|
16
|
+
|
17
|
+
for (let i = 0; i < signature.length; i++) {
|
18
|
+
const char = signature[i]
|
19
|
+
|
20
|
+
// If the character is a separator, we want to reactivate.
|
21
|
+
if (['(', ')', ','].includes(char)) active = true
|
22
|
+
|
23
|
+
// If the character is a "level" token, we want to increment/decrement.
|
24
|
+
if (char === '(') level++
|
25
|
+
if (char === ')') level--
|
26
|
+
|
27
|
+
// If we aren't active, we don't want to mutate the result.
|
28
|
+
if (!active) continue
|
29
|
+
|
30
|
+
// If level === 0, we are at the definition level.
|
31
|
+
if (level === 0) {
|
32
|
+
if (char === ' ' && ['event', 'function', ''].includes(result))
|
33
|
+
result = ''
|
34
|
+
else {
|
35
|
+
result += char
|
36
|
+
|
37
|
+
// If we are at the end of the definition, we must be finished.
|
38
|
+
if (char === ')') {
|
39
|
+
valid = true
|
40
|
+
break
|
41
|
+
}
|
42
|
+
}
|
43
|
+
|
44
|
+
continue
|
45
|
+
}
|
46
|
+
|
47
|
+
// Ignore spaces
|
48
|
+
if (char === ' ') {
|
49
|
+
// If the previous character is a separator, and the current section isn't empty, we want to deactivate.
|
50
|
+
if (signature[i - 1] !== ',' && current !== ',' && current !== ',(') {
|
51
|
+
current = ''
|
52
|
+
active = false
|
53
|
+
}
|
54
|
+
continue
|
55
|
+
}
|
56
|
+
|
57
|
+
result += char
|
58
|
+
current += char
|
59
|
+
}
|
60
|
+
|
61
|
+
if (!valid) throw new BaseError('Unable to normalize signature.')
|
62
|
+
|
63
|
+
return result
|
64
|
+
}
|
package/utils/index.ts
CHANGED
@@ -167,16 +167,6 @@ export {
|
|
167
167
|
type IsAddressEqualErrorType,
|
168
168
|
isAddressEqual,
|
169
169
|
} from './address/isAddressEqual.js'
|
170
|
-
export {
|
171
|
-
type ExtractFunctionNameErrorType,
|
172
|
-
type ExtractFunctionParamsErrorType,
|
173
|
-
type ExtractFunctionPartsErrorType,
|
174
|
-
type ExtractFunctionTypeErrorType,
|
175
|
-
extractFunctionName,
|
176
|
-
extractFunctionParams,
|
177
|
-
extractFunctionType,
|
178
|
-
extractFunctionParts,
|
179
|
-
} from './contract/extractFunctionParts.js'
|
180
170
|
export {
|
181
171
|
type ConcatBytesErrorType,
|
182
172
|
type ConcatErrorType,
|
@@ -291,7 +281,6 @@ export {
|
|
291
281
|
type FromBytesParameters,
|
292
282
|
type FromBytesReturnType,
|
293
283
|
bytesToBigInt,
|
294
|
-
/** @deprecated – use `bytesToBigInt` */
|
295
284
|
bytesToBigInt as bytesToBigint,
|
296
285
|
bytesToBool,
|
297
286
|
bytesToNumber,
|
@@ -431,10 +420,6 @@ export {
|
|
431
420
|
type ParseTransactionErrorType,
|
432
421
|
parseTransaction,
|
433
422
|
} from './transaction/parseTransaction.js'
|
434
|
-
export {
|
435
|
-
/** @deprecated import `prepareTransactionRequest` from `viem/actions` instead. */
|
436
|
-
prepareTransactionRequest,
|
437
|
-
} from '../actions/wallet/prepareTransactionRequest.js'
|
438
423
|
export {
|
439
424
|
serializeTransaction,
|
440
425
|
type SerializeTransactionErrorType,
|
@@ -203,10 +203,23 @@ function serializeTransactionLegacy(
|
|
203
203
|
]
|
204
204
|
|
205
205
|
if (signature) {
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
206
|
+
const v = (() => {
|
207
|
+
// EIP-155 (explicit chainId)
|
208
|
+
if (chainId > 0)
|
209
|
+
return BigInt(chainId * 2) + BigInt(35n + signature.v - 27n)
|
210
|
+
|
211
|
+
// EIP-155 (inferred chainId)
|
212
|
+
if (signature.v >= 35n) {
|
213
|
+
const inferredChainId = (signature.v - 35n) / 2n
|
214
|
+
if (inferredChainId > 0) return signature.v
|
215
|
+
return 27n + (signature.v === 35n ? 0n : 1n)
|
216
|
+
}
|
217
|
+
|
218
|
+
// Pre-EIP-155 (no chainId)
|
219
|
+
const v = 27n + (signature.v === 27n ? 0n : 1n)
|
220
|
+
if (signature.v !== v) throw new InvalidLegacyVError({ v: signature.v })
|
221
|
+
return v
|
222
|
+
})()
|
210
223
|
|
211
224
|
serializedTransaction = [
|
212
225
|
...serializedTransaction,
|
@@ -1,31 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.extractFunctionType = exports.extractFunctionParams = exports.extractFunctionName = exports.extractFunctionParts = void 0;
|
4
|
-
const paramsRegex = /((function|event)\s)?(.*)(\((.*)\))/;
|
5
|
-
function extractFunctionParts(def) {
|
6
|
-
const parts = def.match(paramsRegex);
|
7
|
-
const type = parts?.[2] || undefined;
|
8
|
-
const name = parts?.[3];
|
9
|
-
const params = parts?.[5] || undefined;
|
10
|
-
return { type, name, params };
|
11
|
-
}
|
12
|
-
exports.extractFunctionParts = extractFunctionParts;
|
13
|
-
function extractFunctionName(def) {
|
14
|
-
return extractFunctionParts(def).name;
|
15
|
-
}
|
16
|
-
exports.extractFunctionName = extractFunctionName;
|
17
|
-
function extractFunctionParams(def) {
|
18
|
-
const params = extractFunctionParts(def).params;
|
19
|
-
const splitParams = params?.split(',').map((x) => x.trim().split(' '));
|
20
|
-
return splitParams?.map((param) => ({
|
21
|
-
type: param[0],
|
22
|
-
name: param[1] === 'indexed' ? param[2] : param[1],
|
23
|
-
...(param[1] === 'indexed' ? { indexed: true } : {}),
|
24
|
-
}));
|
25
|
-
}
|
26
|
-
exports.extractFunctionParams = extractFunctionParams;
|
27
|
-
function extractFunctionType(def) {
|
28
|
-
return extractFunctionParts(def).type;
|
29
|
-
}
|
30
|
-
exports.extractFunctionType = extractFunctionType;
|
31
|
-
//# sourceMappingURL=extractFunctionParts.js.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"extractFunctionParts.js","sourceRoot":"","sources":["../../../utils/contract/extractFunctionParts.ts"],"names":[],"mappings":";;;AAEA,MAAM,WAAW,GAAG,qCAAqC,CAAA;AAIzD,SAAgB,oBAAoB,CAAC,GAAW;IAC9C,MAAM,KAAK,GAAG,GAAG,CAAC,KAAK,CAAC,WAAW,CAAC,CAAA;IACpC,MAAM,IAAI,GAAG,KAAK,EAAE,CAAC,CAAC,CAAC,IAAI,SAAS,CAAA;IACpC,MAAM,IAAI,GAAG,KAAK,EAAE,CAAC,CAAC,CAAC,CAAA;IACvB,MAAM,MAAM,GAAG,KAAK,EAAE,CAAC,CAAC,CAAC,IAAI,SAAS,CAAA;IACtC,OAAO,EAAE,IAAI,EAAE,IAAI,EAAE,MAAM,EAAE,CAAA;AAC/B,CAAC;AAND,oDAMC;AAID,SAAgB,mBAAmB,CAAC,GAAW;IAC7C,OAAO,oBAAoB,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AACvC,CAAC;AAFD,kDAEC;AAID,SAAgB,qBAAqB,CAAC,GAAW;IAC/C,MAAM,MAAM,GAAG,oBAAoB,CAAC,GAAG,CAAC,CAAC,MAAM,CAAA;IAC/C,MAAM,WAAW,GAAG,MAAM,EAAE,KAAK,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAA;IACtE,OAAO,WAAW,EAAE,GAAG,CAAC,CAAC,KAAK,EAAE,EAAE,CAAC,CAAC;QAClC,IAAI,EAAE,KAAK,CAAC,CAAC,CAAC;QACd,IAAI,EAAE,KAAK,CAAC,CAAC,CAAC,KAAK,SAAS,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC;QAClD,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,KAAK,SAAS,CAAC,CAAC,CAAC,EAAE,OAAO,EAAE,IAAI,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;KACrD,CAAC,CAAC,CAAA;AACL,CAAC;AARD,sDAQC;AAID,SAAgB,mBAAmB,CAAC,GAAW;IAC7C,OAAO,oBAAoB,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AACvC,CAAC;AAFD,kDAEC"}
|
@@ -1,24 +0,0 @@
|
|
1
|
-
const paramsRegex = /((function|event)\s)?(.*)(\((.*)\))/;
|
2
|
-
export function extractFunctionParts(def) {
|
3
|
-
const parts = def.match(paramsRegex);
|
4
|
-
const type = parts?.[2] || undefined;
|
5
|
-
const name = parts?.[3];
|
6
|
-
const params = parts?.[5] || undefined;
|
7
|
-
return { type, name, params };
|
8
|
-
}
|
9
|
-
export function extractFunctionName(def) {
|
10
|
-
return extractFunctionParts(def).name;
|
11
|
-
}
|
12
|
-
export function extractFunctionParams(def) {
|
13
|
-
const params = extractFunctionParts(def).params;
|
14
|
-
const splitParams = params?.split(',').map((x) => x.trim().split(' '));
|
15
|
-
return splitParams?.map((param) => ({
|
16
|
-
type: param[0],
|
17
|
-
name: param[1] === 'indexed' ? param[2] : param[1],
|
18
|
-
...(param[1] === 'indexed' ? { indexed: true } : {}),
|
19
|
-
}));
|
20
|
-
}
|
21
|
-
export function extractFunctionType(def) {
|
22
|
-
return extractFunctionParts(def).type;
|
23
|
-
}
|
24
|
-
//# sourceMappingURL=extractFunctionParts.js.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"extractFunctionParts.js","sourceRoot":"","sources":["../../../utils/contract/extractFunctionParts.ts"],"names":[],"mappings":"AAEA,MAAM,WAAW,GAAG,qCAAqC,CAAA;AAIzD,MAAM,UAAU,oBAAoB,CAAC,GAAW;IAC9C,MAAM,KAAK,GAAG,GAAG,CAAC,KAAK,CAAC,WAAW,CAAC,CAAA;IACpC,MAAM,IAAI,GAAG,KAAK,EAAE,CAAC,CAAC,CAAC,IAAI,SAAS,CAAA;IACpC,MAAM,IAAI,GAAG,KAAK,EAAE,CAAC,CAAC,CAAC,CAAA;IACvB,MAAM,MAAM,GAAG,KAAK,EAAE,CAAC,CAAC,CAAC,IAAI,SAAS,CAAA;IACtC,OAAO,EAAE,IAAI,EAAE,IAAI,EAAE,MAAM,EAAE,CAAA;AAC/B,CAAC;AAID,MAAM,UAAU,mBAAmB,CAAC,GAAW;IAC7C,OAAO,oBAAoB,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AACvC,CAAC;AAID,MAAM,UAAU,qBAAqB,CAAC,GAAW;IAC/C,MAAM,MAAM,GAAG,oBAAoB,CAAC,GAAG,CAAC,CAAC,MAAM,CAAA;IAC/C,MAAM,WAAW,GAAG,MAAM,EAAE,KAAK,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAA;IACtE,OAAO,WAAW,EAAE,GAAG,CAAC,CAAC,KAAK,EAAE,EAAE,CAAC,CAAC;QAClC,IAAI,EAAE,KAAK,CAAC,CAAC,CAAC;QACd,IAAI,EAAE,KAAK,CAAC,CAAC,CAAC,KAAK,SAAS,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC;QAClD,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,KAAK,SAAS,CAAC,CAAC,CAAC,EAAE,OAAO,EAAE,IAAI,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;KACrD,CAAC,CAAC,CAAA;AACL,CAAC;AAID,MAAM,UAAU,mBAAmB,CAAC,GAAW;IAC7C,OAAO,oBAAoB,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AACvC,CAAC"}
|
@@ -1,18 +0,0 @@
|
|
1
|
-
import type { ErrorType } from '../../errors/utils.js';
|
2
|
-
export type ExtractFunctionPartsErrorType = ErrorType;
|
3
|
-
export declare function extractFunctionParts(def: string): {
|
4
|
-
type: string | undefined;
|
5
|
-
name: string | undefined;
|
6
|
-
params: string | undefined;
|
7
|
-
};
|
8
|
-
export type ExtractFunctionNameErrorType = ErrorType;
|
9
|
-
export declare function extractFunctionName(def: string): string | undefined;
|
10
|
-
export type ExtractFunctionParamsErrorType = ErrorType;
|
11
|
-
export declare function extractFunctionParams(def: string): {
|
12
|
-
indexed?: boolean | undefined;
|
13
|
-
type: string;
|
14
|
-
name: string;
|
15
|
-
}[] | undefined;
|
16
|
-
export type ExtractFunctionTypeErrorType = ErrorType;
|
17
|
-
export declare function extractFunctionType(def: string): string | undefined;
|
18
|
-
//# sourceMappingURL=extractFunctionParts.d.ts.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"extractFunctionParts.d.ts","sourceRoot":"","sources":["../../../utils/contract/extractFunctionParts.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,uBAAuB,CAAA;AAItD,MAAM,MAAM,6BAA6B,GAAG,SAAS,CAAA;AAErD,wBAAgB,oBAAoB,CAAC,GAAG,EAAE,MAAM;;;;EAM/C;AAED,MAAM,MAAM,4BAA4B,GAAG,SAAS,CAAA;AAEpD,wBAAgB,mBAAmB,CAAC,GAAG,EAAE,MAAM,sBAE9C;AAED,MAAM,MAAM,8BAA8B,GAAG,SAAS,CAAA;AAEtD,wBAAgB,qBAAqB,CAAC,GAAG,EAAE,MAAM;;;;gBAQhD;AAED,MAAM,MAAM,4BAA4B,GAAG,SAAS,CAAA;AAEpD,wBAAgB,mBAAmB,CAAC,GAAG,EAAE,MAAM,sBAE9C"}
|
@@ -1,37 +0,0 @@
|
|
1
|
-
import type { ErrorType } from '../../errors/utils.js'
|
2
|
-
|
3
|
-
const paramsRegex = /((function|event)\s)?(.*)(\((.*)\))/
|
4
|
-
|
5
|
-
export type ExtractFunctionPartsErrorType = ErrorType
|
6
|
-
|
7
|
-
export function extractFunctionParts(def: string) {
|
8
|
-
const parts = def.match(paramsRegex)
|
9
|
-
const type = parts?.[2] || undefined
|
10
|
-
const name = parts?.[3]
|
11
|
-
const params = parts?.[5] || undefined
|
12
|
-
return { type, name, params }
|
13
|
-
}
|
14
|
-
|
15
|
-
export type ExtractFunctionNameErrorType = ErrorType
|
16
|
-
|
17
|
-
export function extractFunctionName(def: string) {
|
18
|
-
return extractFunctionParts(def).name
|
19
|
-
}
|
20
|
-
|
21
|
-
export type ExtractFunctionParamsErrorType = ErrorType
|
22
|
-
|
23
|
-
export function extractFunctionParams(def: string) {
|
24
|
-
const params = extractFunctionParts(def).params
|
25
|
-
const splitParams = params?.split(',').map((x) => x.trim().split(' '))
|
26
|
-
return splitParams?.map((param) => ({
|
27
|
-
type: param[0],
|
28
|
-
name: param[1] === 'indexed' ? param[2] : param[1],
|
29
|
-
...(param[1] === 'indexed' ? { indexed: true } : {}),
|
30
|
-
}))
|
31
|
-
}
|
32
|
-
|
33
|
-
export type ExtractFunctionTypeErrorType = ErrorType
|
34
|
-
|
35
|
-
export function extractFunctionType(def: string) {
|
36
|
-
return extractFunctionParts(def).type
|
37
|
-
}
|