viem 0.0.0-main.20230706T223110 → 0.0.0-main.20230706T223314
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/cjs/errors/version.js +1 -1
- package/dist/cjs/utils/transaction/prepareRequest.js +1 -1
- package/dist/esm/errors/version.js +1 -1
- package/dist/esm/utils/transaction/prepareRequest.js +1 -1
- package/dist/types/errors/version.d.ts +1 -1
- package/package.json +1 -1
- package/src/errors/version.ts +1 -1
- package/src/utils/transaction/prepareRequest.ts +1 -1
@@ -22,7 +22,7 @@ async function prepareRequest(client, args) {
|
|
22
22
|
address: account.address,
|
23
23
|
blockTag: 'pending',
|
24
24
|
});
|
25
|
-
if (typeof block.baseFeePerGas === '
|
25
|
+
if (typeof block.baseFeePerGas === 'bigint') {
|
26
26
|
if (typeof gasPrice !== 'undefined')
|
27
27
|
throw new base_js_1.BaseError('Chain does not support legacy `gasPrice`.');
|
28
28
|
if (typeof maxFeePerGas === 'undefined') {
|
@@ -1,2 +1,2 @@
|
|
1
|
-
export const version = '0.0.0-main.
|
1
|
+
export const version = '0.0.0-main.20230706T223314';
|
2
2
|
//# sourceMappingURL=version.js.map
|
@@ -19,7 +19,7 @@ export async function prepareRequest(client, args) {
|
|
19
19
|
address: account.address,
|
20
20
|
blockTag: 'pending',
|
21
21
|
});
|
22
|
-
if (typeof block.baseFeePerGas === '
|
22
|
+
if (typeof block.baseFeePerGas === 'bigint') {
|
23
23
|
if (typeof gasPrice !== 'undefined')
|
24
24
|
throw new BaseError('Chain does not support legacy `gasPrice`.');
|
25
25
|
// EIP-1559 fees
|
@@ -1,2 +1,2 @@
|
|
1
|
-
export declare const version = "0.0.0-main.
|
1
|
+
export declare const version = "0.0.0-main.20230706T223314";
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/package.json
CHANGED
package/src/errors/version.ts
CHANGED
@@ -1 +1 @@
|
|
1
|
-
export const version = '0.0.0-main.
|
1
|
+
export const version = '0.0.0-main.20230706T223314'
|
@@ -72,7 +72,7 @@ export async function prepareRequest<
|
|
72
72
|
blockTag: 'pending',
|
73
73
|
})
|
74
74
|
|
75
|
-
if (typeof block.baseFeePerGas === '
|
75
|
+
if (typeof block.baseFeePerGas === 'bigint') {
|
76
76
|
if (typeof gasPrice !== 'undefined')
|
77
77
|
throw new BaseError('Chain does not support legacy `gasPrice`.')
|
78
78
|
|