@venusprotocol/chains 0.13.0 → 0.14.0
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/build/index.d.mts +1 -2
- package/build/index.mjs +17 -18
- package/package.json +1 -1
package/build/index.d.mts
CHANGED
|
@@ -79,7 +79,6 @@ declare const MS_PER_DAY: number;
|
|
|
79
79
|
declare const viemChains: Record<ChainId, Chain$1>;
|
|
80
80
|
//#endregion
|
|
81
81
|
//#region src/chains/chainMetadata/index.d.ts
|
|
82
|
-
declare const opBnbTestnetFourierForkTimestamp: Date;
|
|
83
82
|
declare const chains: Record<ChainId, Chain>;
|
|
84
83
|
//#endregion
|
|
85
84
|
//#region src/tokens/underlyingTokens/index.d.ts
|
|
@@ -124,4 +123,4 @@ declare const getBlockTimeByChainId: ({
|
|
|
124
123
|
blocksPerDay: number;
|
|
125
124
|
} | undefined;
|
|
126
125
|
//#endregion
|
|
127
|
-
export { Chain, ChainId, GetTokenInput, Hardfork, IMAGES_DIR_NAME, IMAGES_DIR_PATH, MS_PER_DAY, MainnetChainId, NATIVE_TOKEN_ADDRESS, TestnetChainId, Token, VToken, bnb, chains, eth, getBlockTimeByChainId, getRpcUrls, getToken,
|
|
126
|
+
export { Chain, ChainId, GetTokenInput, Hardfork, IMAGES_DIR_NAME, IMAGES_DIR_PATH, MS_PER_DAY, MainnetChainId, NATIVE_TOKEN_ADDRESS, TestnetChainId, Token, VToken, bnb, chains, eth, getBlockTimeByChainId, getRpcUrls, getToken, tokens, vTokens, viemChains };
|
package/build/index.mjs
CHANGED
|
@@ -4256,7 +4256,6 @@ const bnb = {
|
|
|
4256
4256
|
|
|
4257
4257
|
//#endregion
|
|
4258
4258
|
//#region src/chains/chainMetadata/index.ts
|
|
4259
|
-
const opBnbTestnetFourierForkTimestamp = /* @__PURE__ */ new Date("2025-11-06 03:00:00 AM UTC");
|
|
4260
4259
|
const chains = {
|
|
4261
4260
|
[ChainId.BSC_MAINNET]: {
|
|
4262
4261
|
name: "BNB Chain",
|
|
@@ -4266,19 +4265,19 @@ const chains = {
|
|
|
4266
4265
|
safeWalletApiUrl: "https://safe-transaction-bsc.safe.global",
|
|
4267
4266
|
hardforks: [
|
|
4268
4267
|
{
|
|
4269
|
-
startTimestamp: (/* @__PURE__ */ new Date("2020-04-
|
|
4268
|
+
startTimestamp: (/* @__PURE__ */ new Date("2020-04-20T13:46:54Z")).getTime(),
|
|
4270
4269
|
blockTimeMs: 3e3
|
|
4271
4270
|
},
|
|
4272
4271
|
{
|
|
4273
|
-
startTimestamp: (/* @__PURE__ */ new Date("2025-04-
|
|
4272
|
+
startTimestamp: (/* @__PURE__ */ new Date("2025-04-29T05:05:00Z")).getTime(),
|
|
4274
4273
|
blockTimeMs: 1500
|
|
4275
4274
|
},
|
|
4276
4275
|
{
|
|
4277
|
-
startTimestamp: (/* @__PURE__ */ new Date("2025-06-
|
|
4276
|
+
startTimestamp: (/* @__PURE__ */ new Date("2025-06-30T02:30:00Z")).getTime(),
|
|
4278
4277
|
blockTimeMs: 750
|
|
4279
4278
|
},
|
|
4280
4279
|
{
|
|
4281
|
-
startTimestamp: (/* @__PURE__ */ new Date("2026-01-
|
|
4280
|
+
startTimestamp: (/* @__PURE__ */ new Date("2026-01-14T02:30:00Z")).getTime(),
|
|
4282
4281
|
blockTimeMs: 450
|
|
4283
4282
|
}
|
|
4284
4283
|
],
|
|
@@ -4292,19 +4291,19 @@ const chains = {
|
|
|
4292
4291
|
layerZeroScanUrl: "https://testnet.layerzeroscan.com",
|
|
4293
4292
|
hardforks: [
|
|
4294
4293
|
{
|
|
4295
|
-
startTimestamp: (/* @__PURE__ */ new Date("2020-06-
|
|
4294
|
+
startTimestamp: (/* @__PURE__ */ new Date("2020-06-09T07:57:19Z")).getTime(),
|
|
4296
4295
|
blockTimeMs: 3e3
|
|
4297
4296
|
},
|
|
4298
4297
|
{
|
|
4299
|
-
startTimestamp: (/* @__PURE__ */ new Date("2025-04-
|
|
4298
|
+
startTimestamp: (/* @__PURE__ */ new Date("2025-04-08T07:33:00Z")).getTime(),
|
|
4300
4299
|
blockTimeMs: 1500
|
|
4301
4300
|
},
|
|
4302
4301
|
{
|
|
4303
|
-
startTimestamp: (/* @__PURE__ */ new Date("2025-05-
|
|
4302
|
+
startTimestamp: (/* @__PURE__ */ new Date("2025-05-26T07:05:00Z")).getTime(),
|
|
4304
4303
|
blockTimeMs: 750
|
|
4305
4304
|
},
|
|
4306
4305
|
{
|
|
4307
|
-
startTimestamp: (/* @__PURE__ */ new Date("2025-11-
|
|
4306
|
+
startTimestamp: (/* @__PURE__ */ new Date("2025-11-10T02:25:00Z")).getTime(),
|
|
4308
4307
|
blockTimeMs: 450
|
|
4309
4308
|
}
|
|
4310
4309
|
],
|
|
@@ -4318,15 +4317,15 @@ const chains = {
|
|
|
4318
4317
|
layerZeroScanUrl: "https://layerzeroscan.com",
|
|
4319
4318
|
hardforks: [
|
|
4320
4319
|
{
|
|
4321
|
-
startTimestamp: (/* @__PURE__ */ new Date("2023-08-
|
|
4320
|
+
startTimestamp: (/* @__PURE__ */ new Date("2023-08-11T11:35:23Z")).getTime(),
|
|
4322
4321
|
blockTimeMs: 1e3
|
|
4323
4322
|
},
|
|
4324
4323
|
{
|
|
4325
|
-
startTimestamp: (/* @__PURE__ */ new Date("2025-04-
|
|
4324
|
+
startTimestamp: (/* @__PURE__ */ new Date("2025-04-21T03:00:00Z")).getTime(),
|
|
4326
4325
|
blockTimeMs: 500
|
|
4327
4326
|
},
|
|
4328
4327
|
{
|
|
4329
|
-
startTimestamp: (/* @__PURE__ */ new Date("2026-01-
|
|
4328
|
+
startTimestamp: (/* @__PURE__ */ new Date("2026-01-07T03:00:00Z")).getTime(),
|
|
4330
4329
|
blockTimeMs: 250
|
|
4331
4330
|
}
|
|
4332
4331
|
],
|
|
@@ -4340,15 +4339,15 @@ const chains = {
|
|
|
4340
4339
|
layerZeroScanUrl: "https://testnet.layerzeroscan.com",
|
|
4341
4340
|
hardforks: [
|
|
4342
4341
|
{
|
|
4343
|
-
startTimestamp: (/* @__PURE__ */ new Date("2023-06-
|
|
4342
|
+
startTimestamp: (/* @__PURE__ */ new Date("2023-06-16T01:21:46Z")).getTime(),
|
|
4344
4343
|
blockTimeMs: 1e3
|
|
4345
4344
|
},
|
|
4346
4345
|
{
|
|
4347
|
-
startTimestamp: (/* @__PURE__ */ new Date("2025-04-
|
|
4346
|
+
startTimestamp: (/* @__PURE__ */ new Date("2025-04-02T03:00:00Z")).getTime(),
|
|
4348
4347
|
blockTimeMs: 500
|
|
4349
4348
|
},
|
|
4350
4349
|
{
|
|
4351
|
-
startTimestamp: (/* @__PURE__ */ new Date("2025-11-
|
|
4350
|
+
startTimestamp: (/* @__PURE__ */ new Date("2025-11-06T03:00:00Z")).getTime(),
|
|
4352
4351
|
blockTimeMs: 250
|
|
4353
4352
|
}
|
|
4354
4353
|
],
|
|
@@ -4362,7 +4361,7 @@ const chains = {
|
|
|
4362
4361
|
layerZeroScanUrl: "https://layerzeroscan.com",
|
|
4363
4362
|
safeWalletApiUrl: "https://safe-transaction-mainnet.safe.global",
|
|
4364
4363
|
hardforks: [{
|
|
4365
|
-
startTimestamp: (/* @__PURE__ */ new Date("2015-07-
|
|
4364
|
+
startTimestamp: (/* @__PURE__ */ new Date("2015-07-30T15:26:13Z")).getTime(),
|
|
4366
4365
|
blockTimeMs: 12e3
|
|
4367
4366
|
}],
|
|
4368
4367
|
corePoolComptrollerContractAddress: "0x687a01ecF6d3907658f7A7c714749fAC32336D1B",
|
|
@@ -4375,7 +4374,7 @@ const chains = {
|
|
|
4375
4374
|
layerZeroScanUrl: "https://testnet.layerzeroscan.com",
|
|
4376
4375
|
safeWalletApiUrl: "https://safe-transaction-sepolia.safe.global",
|
|
4377
4376
|
hardforks: [{
|
|
4378
|
-
startTimestamp: (/* @__PURE__ */ new Date("2015-07-
|
|
4377
|
+
startTimestamp: (/* @__PURE__ */ new Date("2015-07-30T15:26:13Z")).getTime(),
|
|
4379
4378
|
blockTimeMs: 12e3
|
|
4380
4379
|
}],
|
|
4381
4380
|
corePoolComptrollerContractAddress: "0x7Aa39ab4BcA897F403425C9C6FDbd0f882Be0D70",
|
|
@@ -8427,4 +8426,4 @@ const getBlockTimeByChainId = ({ chainId, targetTimestamp = (/* @__PURE__ */ new
|
|
|
8427
8426
|
};
|
|
8428
8427
|
|
|
8429
8428
|
//#endregion
|
|
8430
|
-
export { ChainId, IMAGES_DIR_NAME, IMAGES_DIR_PATH, MS_PER_DAY, MainnetChainId, NATIVE_TOKEN_ADDRESS, TestnetChainId, bnb, chains, eth, getBlockTimeByChainId, getRpcUrls, getToken,
|
|
8429
|
+
export { ChainId, IMAGES_DIR_NAME, IMAGES_DIR_PATH, MS_PER_DAY, MainnetChainId, NATIVE_TOKEN_ADDRESS, TestnetChainId, bnb, chains, eth, getBlockTimeByChainId, getRpcUrls, getToken, tokens, vTokens, viemChains };
|