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.
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.version = void 0;
4
- exports.version = '0.0.0-main.20230706T223110';
4
+ exports.version = '0.0.0-main.20230706T223314';
5
5
  //# sourceMappingURL=version.js.map
@@ -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 === 'number') {
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.20230706T223110';
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 === 'number') {
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.20230706T223110";
1
+ export declare const version = "0.0.0-main.20230706T223314";
2
2
  //# sourceMappingURL=version.d.ts.map
package/package.json CHANGED
@@ -20,7 +20,7 @@
20
20
  "optional": true
21
21
  }
22
22
  },
23
- "version": "0.0.0-main.20230706T223110",
23
+ "version": "0.0.0-main.20230706T223314",
24
24
  "files": [
25
25
  "dist",
26
26
  "!dist/**/*.tsbuildinfo",
@@ -1 +1 @@
1
- export const version = '0.0.0-main.20230706T223110'
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 === 'number') {
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