@openocean.finance/wallet 1.10.35 → 1.10.36

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
@@ -586,6 +586,14 @@ var chainObj = {
586
586
  nativeCurrency: { name: "ETH", symbol: "ETH", decimals: 18, address: "0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE" },
587
587
  rpcUrls: ["https://rpc.ankr.com/swell"]
588
588
  },
589
+ "hyper": {
590
+ compiler: 'EVM',
591
+ chainName: "HyperEVM",
592
+ chainId: 999,
593
+ blockExplorerUrl: "https://purrsec.com/tx/",
594
+ nativeCurrency: { name: "HYPE", symbol: "HYPE", decimals: 18, address: "0x0000000000000000000000000000000000000000" },
595
+ rpcUrls: ["https://rpc.hyperliquid.xyz/evm"]
596
+ },
589
597
  };
590
598
  var Chains = /** @class */ (function () {
591
599
  function Chains() {
@@ -97,7 +97,8 @@ var CoinbaseWallet = /** @class */ (function (_super) {
97
97
  types_1.EnumChains.UniChain,
98
98
  types_1.EnumChains.Flare,
99
99
  types_1.EnumChains.Monad,
100
- types_1.EnumChains.Swell
100
+ types_1.EnumChains.Swell,
101
+ types_1.EnumChains.Hyper
101
102
  ];
102
103
  _this.type = types_1.EnumWalletType.Extension;
103
104
  _this.sdk = null;
@@ -120,7 +120,8 @@ var MetaMask = /** @class */ (function (_super) {
120
120
  types_1.EnumChains.UniChain,
121
121
  types_1.EnumChains.Flare,
122
122
  types_1.EnumChains.Monad,
123
- types_1.EnumChains.Swell
123
+ types_1.EnumChains.Swell,
124
+ types_1.EnumChains.Hyper
124
125
  ];
125
126
  _this.type = types_1.EnumWalletType.Extension;
126
127
  _this.sdk = null;
@@ -101,7 +101,8 @@ var OKXWallet = /** @class */ (function (_super) {
101
101
  types_1.EnumChains.UniChain,
102
102
  types_1.EnumChains.Flare,
103
103
  types_1.EnumChains.Monad,
104
- types_1.EnumChains.Swell
104
+ types_1.EnumChains.Swell,
105
+ types_1.EnumChains.Hyper
105
106
  ];
106
107
  _this.type = types_1.EnumWalletType.Extension;
107
108
  _this.sdk = null;
@@ -92,7 +92,8 @@ var RabbyWallet = /** @class */ (function (_super) {
92
92
  types_1.EnumChains.UniChain,
93
93
  types_1.EnumChains.Flare,
94
94
  types_1.EnumChains.Monad,
95
- types_1.EnumChains.Swell
95
+ types_1.EnumChains.Swell,
96
+ types_1.EnumChains.Hyper
96
97
  ];
97
98
  _this.type = types_1.EnumWalletType.Extension;
98
99
  _this.sdk = null;
@@ -103,7 +103,8 @@ var SafePalWallet = /** @class */ (function (_super) {
103
103
  types_1.EnumChains.UniChain,
104
104
  types_1.EnumChains.Flare,
105
105
  types_1.EnumChains.Monad,
106
- types_1.EnumChains.Swell
106
+ types_1.EnumChains.Swell,
107
+ types_1.EnumChains.Hyper
107
108
  ];
108
109
  _this.type = types_1.EnumWalletType.Extension;
109
110
  _this.sdk = null;
package/lib/types.d.ts CHANGED
@@ -69,7 +69,8 @@ export declare enum EnumChains {
69
69
  UniChain = "uni",
70
70
  Flare = "flare",
71
71
  Monad = "monad",
72
- Swell = "swell"
72
+ Swell = "swell",
73
+ Hyper = "hyper"
73
74
  }
74
75
  export declare enum EnumWalletType {
75
76
  Extension = "Extension",
package/lib/types.js CHANGED
@@ -70,6 +70,7 @@ var EnumChains;
70
70
  EnumChains["Flare"] = "flare";
71
71
  EnumChains["Monad"] = "monad";
72
72
  EnumChains["Swell"] = "swell";
73
+ EnumChains["Hyper"] = "hyper";
73
74
  })(EnumChains || (exports.EnumChains = EnumChains = {}));
74
75
  var EnumWalletType;
75
76
  (function (EnumWalletType) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openocean.finance/wallet",
3
- "version": "1.10.35",
3
+ "version": "1.10.36",
4
4
  "description": "A multi-chain wallets manager",
5
5
  "main": "lib/index.js",
6
6
  "scripts": {