@openocean.finance/wallet 1.6.13 → 1.6.14

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
@@ -455,6 +455,17 @@ var chainObj = {
455
455
  "https://rpc.pulsechain.com"
456
456
  ],
457
457
  compiler: 'EVM'
458
+ },
459
+ "merlin": {
460
+ chainName: "Merlin Chain",
461
+ chainId: 4200,
462
+ blockExplorerUrl: "https://scan.merlinchain.io/tx/",
463
+ nativeCurrency: { name: "BTC", symbol: "BTC", decimals: 18, address: "0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE" },
464
+ popularToken: [],
465
+ rpcUrls: [
466
+ "https://rpc.merlinchain.io"
467
+ ],
468
+ compiler: 'EVM'
458
469
  }
459
470
  };
460
471
  var Chains = /** @class */ (function () {
@@ -109,6 +109,7 @@ var MetaMask = /** @class */ (function (_super) {
109
109
  types_1.EnumChains.Blast,
110
110
  types_1.EnumChains.Mode,
111
111
  types_1.EnumChains.PulseChain,
112
+ types_1.EnumChains.MerlinChain,
112
113
  ];
113
114
  _this.type = types_1.EnumWalletType.Extension;
114
115
  _this.sdk = null;
@@ -102,6 +102,7 @@ var TrustWallet = /** @class */ (function (_super) {
102
102
  types_1.EnumChains.Blast,
103
103
  types_1.EnumChains.Mode,
104
104
  types_1.EnumChains.PulseChain,
105
+ types_1.EnumChains.MerlinChain,
105
106
  ];
106
107
  _this.type = types_1.EnumWalletType.Extension;
107
108
  _this.sdk = null;
@@ -104,6 +104,7 @@ var WalletConnect = /** @class */ (function (_super) {
104
104
  types_1.EnumChains.Blast,
105
105
  types_1.EnumChains.Mode,
106
106
  types_1.EnumChains.PulseChain,
107
+ types_1.EnumChains.MerlinChain,
107
108
  ];
108
109
  _this.type = types_1.EnumWalletType.WalletConnect;
109
110
  _this.sdk = null;
package/lib/types.d.ts CHANGED
@@ -55,7 +55,8 @@ export declare enum EnumChains {
55
55
  X1 = "x1",
56
56
  Blast = "blast",
57
57
  Mode = "mode",
58
- PulseChain = "pulse"
58
+ PulseChain = "pulse",
59
+ MerlinChain = "merlin"
59
60
  }
60
61
  export declare enum EnumWalletType {
61
62
  Extension = "Extension",
package/lib/types.js CHANGED
@@ -56,6 +56,7 @@ var EnumChains;
56
56
  EnumChains["Blast"] = "blast";
57
57
  EnumChains["Mode"] = "mode";
58
58
  EnumChains["PulseChain"] = "pulse";
59
+ EnumChains["MerlinChain"] = "merlin";
59
60
  })(EnumChains = exports.EnumChains || (exports.EnumChains = {}));
60
61
  var EnumWalletType;
61
62
  (function (EnumWalletType) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openocean.finance/wallet",
3
- "version": "1.6.13",
3
+ "version": "1.6.14",
4
4
  "description": "A multi-chain wallets manager",
5
5
  "main": "lib/index.js",
6
6
  "scripts": {