@sign-global/tokentable-core 1.8.0 → 1.9.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/CHANGELOG.md +6 -0
- package/dist/index.d.mts +69 -0
- package/dist/index.d.ts +69 -0
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/constants/chain-config.ts +3 -1
package/CHANGELOG.md
CHANGED
package/dist/index.d.mts
CHANGED
|
@@ -1462,6 +1462,75 @@ declare const SupportedChains: ({
|
|
|
1462
1462
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
1463
1463
|
formatters?: undefined;
|
|
1464
1464
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1465
|
+
} | {
|
|
1466
|
+
blockExplorers: {
|
|
1467
|
+
readonly default: {
|
|
1468
|
+
readonly name: "Sonic Explorer";
|
|
1469
|
+
readonly url: "https://sonicscan.org";
|
|
1470
|
+
};
|
|
1471
|
+
};
|
|
1472
|
+
blockTime: 630;
|
|
1473
|
+
contracts: {
|
|
1474
|
+
readonly multicall3: {
|
|
1475
|
+
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
1476
|
+
readonly blockCreated: 60;
|
|
1477
|
+
};
|
|
1478
|
+
};
|
|
1479
|
+
ensTlds?: readonly string[] | undefined;
|
|
1480
|
+
id: 146;
|
|
1481
|
+
name: "Sonic";
|
|
1482
|
+
nativeCurrency: {
|
|
1483
|
+
readonly decimals: 18;
|
|
1484
|
+
readonly name: "Sonic";
|
|
1485
|
+
readonly symbol: "S";
|
|
1486
|
+
};
|
|
1487
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1488
|
+
rpcUrls: {
|
|
1489
|
+
readonly default: {
|
|
1490
|
+
readonly http: readonly ["https://rpc.soniclabs.com"];
|
|
1491
|
+
};
|
|
1492
|
+
};
|
|
1493
|
+
sourceId?: number | undefined | undefined;
|
|
1494
|
+
testnet: false;
|
|
1495
|
+
custom?: Record<string, unknown> | undefined;
|
|
1496
|
+
fees?: viem.ChainFees<undefined> | undefined;
|
|
1497
|
+
formatters?: undefined;
|
|
1498
|
+
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1499
|
+
} | {
|
|
1500
|
+
blockExplorers: {
|
|
1501
|
+
readonly default: {
|
|
1502
|
+
readonly name: "OKLink";
|
|
1503
|
+
readonly url: "https://www.oklink.com/xlayer";
|
|
1504
|
+
readonly apiUrl: "https://www.oklink.com/api/v5/explorer/xlayer/api";
|
|
1505
|
+
};
|
|
1506
|
+
};
|
|
1507
|
+
blockTime?: number | undefined | undefined;
|
|
1508
|
+
contracts: {
|
|
1509
|
+
readonly multicall3: {
|
|
1510
|
+
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
1511
|
+
readonly blockCreated: 47416;
|
|
1512
|
+
};
|
|
1513
|
+
};
|
|
1514
|
+
ensTlds?: readonly string[] | undefined;
|
|
1515
|
+
id: 196;
|
|
1516
|
+
name: "X Layer Mainnet";
|
|
1517
|
+
nativeCurrency: {
|
|
1518
|
+
readonly decimals: 18;
|
|
1519
|
+
readonly name: "OKB";
|
|
1520
|
+
readonly symbol: "OKB";
|
|
1521
|
+
};
|
|
1522
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1523
|
+
rpcUrls: {
|
|
1524
|
+
readonly default: {
|
|
1525
|
+
readonly http: readonly ["https://rpc.xlayer.tech"];
|
|
1526
|
+
};
|
|
1527
|
+
};
|
|
1528
|
+
sourceId?: number | undefined | undefined;
|
|
1529
|
+
testnet?: boolean | undefined | undefined;
|
|
1530
|
+
custom?: Record<string, unknown> | undefined;
|
|
1531
|
+
fees?: viem.ChainFees<undefined> | undefined;
|
|
1532
|
+
formatters?: undefined;
|
|
1533
|
+
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1465
1534
|
})[];
|
|
1466
1535
|
|
|
1467
1536
|
declare const ZERO_ADDRESS = "0x0000000000000000000000000000000000000000";
|
package/dist/index.d.ts
CHANGED
|
@@ -1462,6 +1462,75 @@ declare const SupportedChains: ({
|
|
|
1462
1462
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
1463
1463
|
formatters?: undefined;
|
|
1464
1464
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1465
|
+
} | {
|
|
1466
|
+
blockExplorers: {
|
|
1467
|
+
readonly default: {
|
|
1468
|
+
readonly name: "Sonic Explorer";
|
|
1469
|
+
readonly url: "https://sonicscan.org";
|
|
1470
|
+
};
|
|
1471
|
+
};
|
|
1472
|
+
blockTime: 630;
|
|
1473
|
+
contracts: {
|
|
1474
|
+
readonly multicall3: {
|
|
1475
|
+
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
1476
|
+
readonly blockCreated: 60;
|
|
1477
|
+
};
|
|
1478
|
+
};
|
|
1479
|
+
ensTlds?: readonly string[] | undefined;
|
|
1480
|
+
id: 146;
|
|
1481
|
+
name: "Sonic";
|
|
1482
|
+
nativeCurrency: {
|
|
1483
|
+
readonly decimals: 18;
|
|
1484
|
+
readonly name: "Sonic";
|
|
1485
|
+
readonly symbol: "S";
|
|
1486
|
+
};
|
|
1487
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1488
|
+
rpcUrls: {
|
|
1489
|
+
readonly default: {
|
|
1490
|
+
readonly http: readonly ["https://rpc.soniclabs.com"];
|
|
1491
|
+
};
|
|
1492
|
+
};
|
|
1493
|
+
sourceId?: number | undefined | undefined;
|
|
1494
|
+
testnet: false;
|
|
1495
|
+
custom?: Record<string, unknown> | undefined;
|
|
1496
|
+
fees?: viem.ChainFees<undefined> | undefined;
|
|
1497
|
+
formatters?: undefined;
|
|
1498
|
+
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1499
|
+
} | {
|
|
1500
|
+
blockExplorers: {
|
|
1501
|
+
readonly default: {
|
|
1502
|
+
readonly name: "OKLink";
|
|
1503
|
+
readonly url: "https://www.oklink.com/xlayer";
|
|
1504
|
+
readonly apiUrl: "https://www.oklink.com/api/v5/explorer/xlayer/api";
|
|
1505
|
+
};
|
|
1506
|
+
};
|
|
1507
|
+
blockTime?: number | undefined | undefined;
|
|
1508
|
+
contracts: {
|
|
1509
|
+
readonly multicall3: {
|
|
1510
|
+
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
1511
|
+
readonly blockCreated: 47416;
|
|
1512
|
+
};
|
|
1513
|
+
};
|
|
1514
|
+
ensTlds?: readonly string[] | undefined;
|
|
1515
|
+
id: 196;
|
|
1516
|
+
name: "X Layer Mainnet";
|
|
1517
|
+
nativeCurrency: {
|
|
1518
|
+
readonly decimals: 18;
|
|
1519
|
+
readonly name: "OKB";
|
|
1520
|
+
readonly symbol: "OKB";
|
|
1521
|
+
};
|
|
1522
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1523
|
+
rpcUrls: {
|
|
1524
|
+
readonly default: {
|
|
1525
|
+
readonly http: readonly ["https://rpc.xlayer.tech"];
|
|
1526
|
+
};
|
|
1527
|
+
};
|
|
1528
|
+
sourceId?: number | undefined | undefined;
|
|
1529
|
+
testnet?: boolean | undefined | undefined;
|
|
1530
|
+
custom?: Record<string, unknown> | undefined;
|
|
1531
|
+
fees?: viem.ChainFees<undefined> | undefined;
|
|
1532
|
+
formatters?: undefined;
|
|
1533
|
+
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1465
1534
|
})[];
|
|
1466
1535
|
|
|
1467
1536
|
declare const ZERO_ADDRESS = "0x0000000000000000000000000000000000000000";
|