@openocean.finance/wallet 1.0.0 → 1.0.2

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.
Files changed (2) hide show
  1. package/lib/Chains.js +96 -0
  2. package/package.json +1 -1
package/lib/Chains.js CHANGED
@@ -252,6 +252,58 @@ var EthereumChainParams = {
252
252
  blockExplorerUrls: ["https://testnet.bscscan.com/"],
253
253
  },
254
254
  ],
255
+ kava: [
256
+ {
257
+ chainId: "0x8ae",
258
+ chainName: "Kava EVM",
259
+ nativeCurrency: {
260
+ name: "KAVA",
261
+ symbol: "KAVA",
262
+ decimals: 18,
263
+ },
264
+ rpcUrls: ["https://evm.kava.io"],
265
+ blockExplorerUrls: ["https://explorer.kava.io"],
266
+ },
267
+ ],
268
+ celo: [
269
+ {
270
+ chainId: "0xa4ec",
271
+ chainName: "Celo Network",
272
+ nativeCurrency: {
273
+ name: "CELO",
274
+ symbol: "CELO",
275
+ decimals: 18,
276
+ },
277
+ rpcUrls: ["https://forno.celo.org"],
278
+ blockExplorerUrls: ["https://explorer.celo.org"],
279
+ },
280
+ ],
281
+ klaytn: [
282
+ {
283
+ chainId: "0x2019",
284
+ chainName: "Klaytn Cypress",
285
+ nativeCurrency: {
286
+ name: "KLAY",
287
+ symbol: "KLAY",
288
+ decimals: 18,
289
+ },
290
+ rpcUrls: ["https://public-node-api.klaytnapi.com/v1/cypress"],
291
+ blockExplorerUrls: ["https://scope.klaytn.com"],
292
+ },
293
+ ],
294
+ zksync: [
295
+ {
296
+ chainId: "0x118",
297
+ chainName: "zkSync Era Testnet",
298
+ nativeCurrency: {
299
+ name: "Ethereum",
300
+ symbol: "ETH",
301
+ decimals: 18,
302
+ },
303
+ rpcUrls: ["https://zksync2-testnet.zksync.dev"],
304
+ blockExplorerUrls: ["https://goerli.explorer.zksync.io"],
305
+ },
306
+ ],
255
307
  };
256
308
  exports.EthereumChainParams = EthereumChainParams;
257
309
  var chainObj = {
@@ -482,6 +534,50 @@ var chainObj = {
482
534
  blockExplorerUrl: '',
483
535
  compiler: 'COSMOS',
484
536
  },
537
+ "kava": {
538
+ chainName: "Kava Mainnet",
539
+ chainId: 2222,
540
+ blockExplorerUrl: "https://explorer.kava.io/tx/",
541
+ nativeCurrency: { name: "KAVA", symbol: "KAVA", decimals: 18, address: "0x0000000000000000000000000000000000000000" },
542
+ popularToken: [],
543
+ rpcUrls: [
544
+ "https://evm.kava.io"
545
+ ],
546
+ compiler: 'EVM'
547
+ },
548
+ "celo": {
549
+ chainName: "Celo Mainnet",
550
+ chainId: 42220,
551
+ blockExplorerUrl: "https://explorer.celo.org/tx/",
552
+ nativeCurrency: { name: "CELO", symbol: "CELO", decimals: 18, address: "0x471EcE3750Da237f93B8E339c536989b8978a438" },
553
+ popularToken: [],
554
+ rpcUrls: [
555
+ "https://forno.celo.org"
556
+ ],
557
+ compiler: 'EVM'
558
+ },
559
+ "klaytn": {
560
+ chainName: "Klaytn Cypress Mainnet",
561
+ chainId: 8217,
562
+ blockExplorerUrl: "https://explorer.celo.org/tx/",
563
+ nativeCurrency: { name: "KLAY", symbol: "KLAY", decimals: 18, address: "0x471EcE3750Da237f93B8E339c536989b8978a438" },
564
+ popularToken: [],
565
+ rpcUrls: [
566
+ "https://public-node-api.klaytnapi.com/v1/cypress"
567
+ ],
568
+ compiler: 'EVM'
569
+ },
570
+ "zksync": {
571
+ chainName: "zkSync Era Testnet",
572
+ chainId: 280,
573
+ blockExplorerUrl: "https://goerli.explorer.zksync.io/tx/",
574
+ nativeCurrency: { name: "ETH", symbol: "ETH", decimals: 18, address: "0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE" },
575
+ popularToken: [],
576
+ rpcUrls: [
577
+ "https://zksync2-testnet.zksync.dev"
578
+ ],
579
+ compiler: 'EVM'
580
+ }
485
581
  };
486
582
  var Chains = /** @class */ (function () {
487
583
  function Chains() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openocean.finance/wallet",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "A multi-chain wallets manager",
5
5
  "main": "lib/index.js",
6
6
  "scripts": {