@openocean.finance/wallet 1.6.11 → 1.6.13

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/lib/Chains.js CHANGED
@@ -433,6 +433,28 @@ var chainObj = {
433
433
  "https://sepolia.blast.io"
434
434
  ],
435
435
  compiler: 'EVM'
436
+ },
437
+ "mode": {
438
+ chainName: "Mode",
439
+ chainId: 34443,
440
+ blockExplorerUrl: "https://explorer.mode.network/tx/",
441
+ nativeCurrency: { name: "ETH", symbol: "ETH", decimals: 18, address: "0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE" },
442
+ popularToken: [],
443
+ rpcUrls: [
444
+ "https://1rpc.io/mode"
445
+ ],
446
+ compiler: 'EVM'
447
+ },
448
+ "pulse": {
449
+ chainName: "PulseChain",
450
+ chainId: 369,
451
+ blockExplorerUrl: "https://scan.pulsechain.com/tx/",
452
+ nativeCurrency: { name: "PLS", symbol: "PLS", decimals: 18, address: "0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE" },
453
+ popularToken: [],
454
+ rpcUrls: [
455
+ "https://rpc.pulsechain.com"
456
+ ],
457
+ compiler: 'EVM'
436
458
  }
437
459
  };
438
460
  var Chains = /** @class */ (function () {
@@ -74,6 +74,7 @@ var HaHaWallet = /** @class */ (function (_super) {
74
74
  _this.icon = haha_svg_1.default;
75
75
  _this.supportChains = [
76
76
  types_1.EnumChains.ETH,
77
+ types_1.EnumChains.BSC,
77
78
  types_1.EnumChains.Polygon
78
79
  ];
79
80
  _this.type = types_1.EnumWalletType.WalletConnect;
@@ -106,7 +106,9 @@ var MetaMask = /** @class */ (function (_super) {
106
106
  types_1.EnumChains.Mantle,
107
107
  types_1.EnumChains.Manta,
108
108
  types_1.EnumChains.X1,
109
- types_1.EnumChains.Blast
109
+ types_1.EnumChains.Blast,
110
+ types_1.EnumChains.Mode,
111
+ types_1.EnumChains.PulseChain,
110
112
  ];
111
113
  _this.type = types_1.EnumWalletType.Extension;
112
114
  _this.sdk = null;
@@ -99,7 +99,9 @@ var TrustWallet = /** @class */ (function (_super) {
99
99
  types_1.EnumChains.OpBNB,
100
100
  types_1.EnumChains.Mantle,
101
101
  types_1.EnumChains.Manta,
102
- types_1.EnumChains.Blast
102
+ types_1.EnumChains.Blast,
103
+ types_1.EnumChains.Mode,
104
+ types_1.EnumChains.PulseChain,
103
105
  ];
104
106
  _this.type = types_1.EnumWalletType.Extension;
105
107
  _this.sdk = null;
@@ -101,7 +101,9 @@ var WalletConnect = /** @class */ (function (_super) {
101
101
  types_1.EnumChains.Mantle,
102
102
  types_1.EnumChains.Manta,
103
103
  types_1.EnumChains.X1,
104
- types_1.EnumChains.Blast
104
+ types_1.EnumChains.Blast,
105
+ types_1.EnumChains.Mode,
106
+ types_1.EnumChains.PulseChain,
105
107
  ];
106
108
  _this.type = types_1.EnumWalletType.WalletConnect;
107
109
  _this.sdk = null;
package/lib/types.d.ts CHANGED
@@ -53,7 +53,9 @@ export declare enum EnumChains {
53
53
  Mantle = "mantle",
54
54
  Manta = "manta",
55
55
  X1 = "x1",
56
- Blast = "blast"
56
+ Blast = "blast",
57
+ Mode = "mode",
58
+ PulseChain = "pulse"
57
59
  }
58
60
  export declare enum EnumWalletType {
59
61
  Extension = "Extension",
package/lib/types.js CHANGED
@@ -54,6 +54,8 @@ var EnumChains;
54
54
  EnumChains["Manta"] = "manta";
55
55
  EnumChains["X1"] = "x1";
56
56
  EnumChains["Blast"] = "blast";
57
+ EnumChains["Mode"] = "mode";
58
+ EnumChains["PulseChain"] = "pulse";
57
59
  })(EnumChains = exports.EnumChains || (exports.EnumChains = {}));
58
60
  var EnumWalletType;
59
61
  (function (EnumWalletType) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openocean.finance/wallet",
3
- "version": "1.6.11",
3
+ "version": "1.6.13",
4
4
  "description": "A multi-chain wallets manager",
5
5
  "main": "lib/index.js",
6
6
  "scripts": {