viem 0.0.0-main.20240321T223631 → 0.0.0-main.20240321T224031

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.
@@ -5,7 +5,7 @@ const defineChain_js_1 = require("../../utils/chain/defineChain.js");
5
5
  exports.sepolia = (0, defineChain_js_1.defineChain)({
6
6
  id: 11_155_111,
7
7
  name: 'Sepolia',
8
- nativeCurrency: { name: 'Sepolia Ether', symbol: 'SEP', decimals: 18 },
8
+ nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
9
9
  rpcUrls: {
10
10
  default: {
11
11
  http: ['https://rpc.sepolia.org'],
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.maxBytesPerTransaction = exports.bytesPerBlob = exports.fieldElementsPerBlob = exports.bytesPerFieldElement = exports.blobsPerTransaction = void 0;
4
- exports.blobsPerTransaction = 2;
4
+ exports.blobsPerTransaction = 6;
5
5
  exports.bytesPerFieldElement = 32;
6
6
  exports.fieldElementsPerBlob = 4096;
7
7
  exports.bytesPerBlob = exports.bytesPerFieldElement * exports.fieldElementsPerBlob;
@@ -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.20240321T223631';
4
+ exports.version = '0.0.0-main.20240321T224031';
5
5
  //# sourceMappingURL=version.js.map
@@ -2,7 +2,7 @@ import { defineChain } from '../../utils/chain/defineChain.js';
2
2
  export const sepolia = /*#__PURE__*/ defineChain({
3
3
  id: 11_155_111,
4
4
  name: 'Sepolia',
5
- nativeCurrency: { name: 'Sepolia Ether', symbol: 'SEP', decimals: 18 },
5
+ nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
6
6
  rpcUrls: {
7
7
  default: {
8
8
  http: ['https://rpc.sepolia.org'],
@@ -1,6 +1,6 @@
1
1
  // https://github.com/ethereum/EIPs/blob/master/EIPS/eip-4844.md#parameters
2
2
  /** Blob limit per transaction. */
3
- export const blobsPerTransaction = 2;
3
+ export const blobsPerTransaction = 6;
4
4
  /** The number of bytes in a BLS scalar field element. */
5
5
  export const bytesPerFieldElement = 32;
6
6
  /** The number of field elements in a blob. */
@@ -1,2 +1,2 @@
1
- export const version = '0.0.0-main.20240321T223631';
1
+ export const version = '0.0.0-main.20240321T224031';
2
2
  //# sourceMappingURL=version.js.map
@@ -23,7 +23,7 @@ export declare const sepolia: {
23
23
  name: "Sepolia";
24
24
  nativeCurrency: {
25
25
  readonly name: "Sepolia Ether";
26
- readonly symbol: "SEP";
26
+ readonly symbol: "ETH";
27
27
  readonly decimals: 18;
28
28
  };
29
29
  rpcUrls: {
@@ -1,5 +1,5 @@
1
1
  /** Blob limit per transaction. */
2
- export declare const blobsPerTransaction = 2;
2
+ export declare const blobsPerTransaction = 6;
3
3
  /** The number of bytes in a BLS scalar field element. */
4
4
  export declare const bytesPerFieldElement = 32;
5
5
  /** The number of field elements in a blob. */
@@ -1,2 +1,2 @@
1
- export declare const version = "0.0.0-main.20240321T223631";
1
+ export declare const version = "0.0.0-main.20240321T224031";
2
2
  //# sourceMappingURL=version.d.ts.map
@@ -3,7 +3,7 @@ import { defineChain } from '../../utils/chain/defineChain.js'
3
3
  export const sepolia = /*#__PURE__*/ defineChain({
4
4
  id: 11_155_111,
5
5
  name: 'Sepolia',
6
- nativeCurrency: { name: 'Sepolia Ether', symbol: 'SEP', decimals: 18 },
6
+ nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
7
7
  rpcUrls: {
8
8
  default: {
9
9
  http: ['https://rpc.sepolia.org'],
package/constants/blob.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  // https://github.com/ethereum/EIPs/blob/master/EIPS/eip-4844.md#parameters
2
2
 
3
3
  /** Blob limit per transaction. */
4
- export const blobsPerTransaction = 2
4
+ export const blobsPerTransaction = 6
5
5
 
6
6
  /** The number of bytes in a BLS scalar field element. */
7
7
  export const bytesPerFieldElement = 32
package/errors/version.ts CHANGED
@@ -1 +1 @@
1
- export const version = '0.0.0-main.20240321T223631'
1
+ export const version = '0.0.0-main.20240321T224031'
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "viem",
3
3
  "description": "TypeScript Interface for Ethereum",
4
- "version": "0.0.0-main.20240321T223631",
4
+ "version": "0.0.0-main.20240321T224031",
5
5
  "type": "module",
6
6
  "main": "./_cjs/index.js",
7
7
  "module": "./_esm/index.js",