@sign-global/tokentable-core 1.13.0 → 1.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/CHANGELOG.md +6 -0
- package/dist/index.d.mts +83 -0
- package/dist/index.d.ts +83 -0
- package/dist/index.js +11 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +14 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/constants/chain-config.ts +14 -2
package/CHANGELOG.md
CHANGED
package/dist/index.d.mts
CHANGED
|
@@ -541,6 +541,89 @@ declare const SupportedChains: readonly [{
|
|
|
541
541
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
542
542
|
formatters?: undefined;
|
|
543
543
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
544
|
+
}, {
|
|
545
|
+
blockExplorers: {
|
|
546
|
+
readonly default: {
|
|
547
|
+
readonly name: "Cronos Explorer";
|
|
548
|
+
readonly url: "https://explorer.cronos.org";
|
|
549
|
+
readonly apiUrl: "https://explorer-api.cronos.org/mainnet/api";
|
|
550
|
+
};
|
|
551
|
+
};
|
|
552
|
+
blockTime?: number | undefined | undefined;
|
|
553
|
+
contracts: {
|
|
554
|
+
readonly multicall3: {
|
|
555
|
+
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
556
|
+
readonly blockCreated: 1963112;
|
|
557
|
+
};
|
|
558
|
+
};
|
|
559
|
+
ensTlds?: readonly string[] | undefined;
|
|
560
|
+
id: 25;
|
|
561
|
+
name: "Cronos Mainnet";
|
|
562
|
+
nativeCurrency: {
|
|
563
|
+
readonly decimals: 18;
|
|
564
|
+
readonly name: "Cronos";
|
|
565
|
+
readonly symbol: "CRO";
|
|
566
|
+
};
|
|
567
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
568
|
+
rpcUrls: {
|
|
569
|
+
readonly default: {
|
|
570
|
+
readonly http: readonly ["https://evm.cronos.org"];
|
|
571
|
+
};
|
|
572
|
+
};
|
|
573
|
+
sourceId?: number | undefined | undefined;
|
|
574
|
+
testnet?: boolean | undefined | undefined;
|
|
575
|
+
custom?: Record<string, unknown> | undefined;
|
|
576
|
+
fees?: viem.ChainFees<undefined> | undefined;
|
|
577
|
+
formatters?: undefined;
|
|
578
|
+
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
579
|
+
}, {
|
|
580
|
+
blockExplorers: {
|
|
581
|
+
readonly default: {
|
|
582
|
+
readonly name: "MemeCore Explorer";
|
|
583
|
+
readonly url: "https://memecorescan.io";
|
|
584
|
+
readonly apiUrl: "https://api.memecorescan.io/api";
|
|
585
|
+
};
|
|
586
|
+
readonly okx: {
|
|
587
|
+
readonly name: "MemeCore Explorer";
|
|
588
|
+
readonly url: "https://web3.okx.com/explorer/memecore";
|
|
589
|
+
};
|
|
590
|
+
readonly memecore: {
|
|
591
|
+
readonly name: "MemeCore Explorer";
|
|
592
|
+
readonly url: "https://blockscout.memecore.com";
|
|
593
|
+
readonly apiUrl: "https://blockscout.memecore.com/api";
|
|
594
|
+
};
|
|
595
|
+
};
|
|
596
|
+
blockTime?: number | undefined | undefined;
|
|
597
|
+
contracts?: {
|
|
598
|
+
[x: string]: viem.ChainContract | {
|
|
599
|
+
[sourceId: number]: viem.ChainContract | undefined;
|
|
600
|
+
} | undefined;
|
|
601
|
+
ensRegistry?: viem.ChainContract | undefined;
|
|
602
|
+
ensUniversalResolver?: viem.ChainContract | undefined;
|
|
603
|
+
multicall3?: viem.ChainContract | undefined;
|
|
604
|
+
erc6492Verifier?: viem.ChainContract | undefined;
|
|
605
|
+
} | undefined;
|
|
606
|
+
ensTlds?: readonly string[] | undefined;
|
|
607
|
+
id: 4352;
|
|
608
|
+
name: "MemeCore";
|
|
609
|
+
nativeCurrency: {
|
|
610
|
+
readonly decimals: 18;
|
|
611
|
+
readonly name: "M";
|
|
612
|
+
readonly symbol: "M";
|
|
613
|
+
};
|
|
614
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
615
|
+
rpcUrls: {
|
|
616
|
+
readonly default: {
|
|
617
|
+
readonly http: readonly ["https://rpc.memecore.net"];
|
|
618
|
+
readonly webSocket: readonly ["wss://ws.memecore.net"];
|
|
619
|
+
};
|
|
620
|
+
};
|
|
621
|
+
sourceId?: number | undefined | undefined;
|
|
622
|
+
testnet?: boolean | undefined | undefined;
|
|
623
|
+
custom?: Record<string, unknown> | undefined;
|
|
624
|
+
fees?: viem.ChainFees<undefined> | undefined;
|
|
625
|
+
formatters?: undefined;
|
|
626
|
+
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
544
627
|
}, {
|
|
545
628
|
id: CHAIN;
|
|
546
629
|
name: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -541,6 +541,89 @@ declare const SupportedChains: readonly [{
|
|
|
541
541
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
542
542
|
formatters?: undefined;
|
|
543
543
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
544
|
+
}, {
|
|
545
|
+
blockExplorers: {
|
|
546
|
+
readonly default: {
|
|
547
|
+
readonly name: "Cronos Explorer";
|
|
548
|
+
readonly url: "https://explorer.cronos.org";
|
|
549
|
+
readonly apiUrl: "https://explorer-api.cronos.org/mainnet/api";
|
|
550
|
+
};
|
|
551
|
+
};
|
|
552
|
+
blockTime?: number | undefined | undefined;
|
|
553
|
+
contracts: {
|
|
554
|
+
readonly multicall3: {
|
|
555
|
+
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
556
|
+
readonly blockCreated: 1963112;
|
|
557
|
+
};
|
|
558
|
+
};
|
|
559
|
+
ensTlds?: readonly string[] | undefined;
|
|
560
|
+
id: 25;
|
|
561
|
+
name: "Cronos Mainnet";
|
|
562
|
+
nativeCurrency: {
|
|
563
|
+
readonly decimals: 18;
|
|
564
|
+
readonly name: "Cronos";
|
|
565
|
+
readonly symbol: "CRO";
|
|
566
|
+
};
|
|
567
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
568
|
+
rpcUrls: {
|
|
569
|
+
readonly default: {
|
|
570
|
+
readonly http: readonly ["https://evm.cronos.org"];
|
|
571
|
+
};
|
|
572
|
+
};
|
|
573
|
+
sourceId?: number | undefined | undefined;
|
|
574
|
+
testnet?: boolean | undefined | undefined;
|
|
575
|
+
custom?: Record<string, unknown> | undefined;
|
|
576
|
+
fees?: viem.ChainFees<undefined> | undefined;
|
|
577
|
+
formatters?: undefined;
|
|
578
|
+
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
579
|
+
}, {
|
|
580
|
+
blockExplorers: {
|
|
581
|
+
readonly default: {
|
|
582
|
+
readonly name: "MemeCore Explorer";
|
|
583
|
+
readonly url: "https://memecorescan.io";
|
|
584
|
+
readonly apiUrl: "https://api.memecorescan.io/api";
|
|
585
|
+
};
|
|
586
|
+
readonly okx: {
|
|
587
|
+
readonly name: "MemeCore Explorer";
|
|
588
|
+
readonly url: "https://web3.okx.com/explorer/memecore";
|
|
589
|
+
};
|
|
590
|
+
readonly memecore: {
|
|
591
|
+
readonly name: "MemeCore Explorer";
|
|
592
|
+
readonly url: "https://blockscout.memecore.com";
|
|
593
|
+
readonly apiUrl: "https://blockscout.memecore.com/api";
|
|
594
|
+
};
|
|
595
|
+
};
|
|
596
|
+
blockTime?: number | undefined | undefined;
|
|
597
|
+
contracts?: {
|
|
598
|
+
[x: string]: viem.ChainContract | {
|
|
599
|
+
[sourceId: number]: viem.ChainContract | undefined;
|
|
600
|
+
} | undefined;
|
|
601
|
+
ensRegistry?: viem.ChainContract | undefined;
|
|
602
|
+
ensUniversalResolver?: viem.ChainContract | undefined;
|
|
603
|
+
multicall3?: viem.ChainContract | undefined;
|
|
604
|
+
erc6492Verifier?: viem.ChainContract | undefined;
|
|
605
|
+
} | undefined;
|
|
606
|
+
ensTlds?: readonly string[] | undefined;
|
|
607
|
+
id: 4352;
|
|
608
|
+
name: "MemeCore";
|
|
609
|
+
nativeCurrency: {
|
|
610
|
+
readonly decimals: 18;
|
|
611
|
+
readonly name: "M";
|
|
612
|
+
readonly symbol: "M";
|
|
613
|
+
};
|
|
614
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
615
|
+
rpcUrls: {
|
|
616
|
+
readonly default: {
|
|
617
|
+
readonly http: readonly ["https://rpc.memecore.net"];
|
|
618
|
+
readonly webSocket: readonly ["wss://ws.memecore.net"];
|
|
619
|
+
};
|
|
620
|
+
};
|
|
621
|
+
sourceId?: number | undefined | undefined;
|
|
622
|
+
testnet?: boolean | undefined | undefined;
|
|
623
|
+
custom?: Record<string, unknown> | undefined;
|
|
624
|
+
fees?: viem.ChainFees<undefined> | undefined;
|
|
625
|
+
formatters?: undefined;
|
|
626
|
+
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
544
627
|
}, {
|
|
545
628
|
id: CHAIN;
|
|
546
629
|
name: string;
|
package/dist/index.js
CHANGED
|
@@ -358,6 +358,8 @@ var SupportedChains = [
|
|
|
358
358
|
import_chains.zetachain,
|
|
359
359
|
import_chains.arbitrum,
|
|
360
360
|
import_chains.monad,
|
|
361
|
+
import_chains.cronos,
|
|
362
|
+
import_chains.memecore,
|
|
361
363
|
tonTestNet,
|
|
362
364
|
tonMainNet,
|
|
363
365
|
signBrBTestnet,
|
|
@@ -388,9 +390,17 @@ var ChainConfig = {
|
|
|
388
390
|
rpcUrl: "https://base-mainnet.g.alchemy.com/v2/udrqNPSB6i5n5L6QSM31Ng72h_hFOrVT"
|
|
389
391
|
},
|
|
390
392
|
[import_chains.monad.id]: {
|
|
391
|
-
contractAddress: "",
|
|
393
|
+
contractAddress: "0xa6A2d42E16a690E03bDe181319fDD085880F2605",
|
|
392
394
|
rpcUrl: import_chains.monad.rpcUrls.default.http[0]
|
|
393
395
|
},
|
|
396
|
+
[import_chains.cronos.id]: {
|
|
397
|
+
contractAddress: "0xa6A2d42E16a690E03bDe181319fDD085880F2605",
|
|
398
|
+
rpcUrl: import_chains.cronos.rpcUrls.default.http[0]
|
|
399
|
+
},
|
|
400
|
+
[import_chains.memecore.id]: {
|
|
401
|
+
contractAddress: "0xa6A2d42E16a690E03bDe181319fDD085880F2605",
|
|
402
|
+
rpcUrl: import_chains.memecore.rpcUrls.default.http[0]
|
|
403
|
+
},
|
|
394
404
|
[import_chains.cyber.id]: {
|
|
395
405
|
contractAddress: "0x7915dA247674E430b2a4Dcf01e4471f709428Bc0",
|
|
396
406
|
rpcUrl: import_chains.cyber.rpcUrls.default.http[0]
|