@openocean.finance/wallet 1.9.13 → 1.9.15

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
@@ -525,6 +525,14 @@ var chainObj = {
525
525
  nativeCurrency: { name: "G", symbol: "G", decimals: 18, address: "0x0000000000000000000000000000000000000000" },
526
526
  rpcUrls: ["https://rpc.gravity.xyz"]
527
527
  },
528
+ "ape": {
529
+ compiler: 'EVM',
530
+ chainName: "ApeChain",
531
+ chainId: 33139,
532
+ blockExplorerUrl: "https://apescan.io/tx/",
533
+ nativeCurrency: { name: "ApeCoin", symbol: "APE", decimals: 18, address: "0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE" },
534
+ rpcUrls: ["https://rpc.apechain.com"]
535
+ },
528
536
  };
529
537
  var Chains = /** @class */ (function () {
530
538
  function Chains() {
@@ -84,7 +84,7 @@ var CloverWallet = /** @class */ (function (_super) {
84
84
  types_1.EnumChains.Arbitrum,
85
85
  types_1.EnumChains.Optimism,
86
86
  types_1.EnumChains.Boba,
87
- types_1.EnumChains.Solana,
87
+ // EnumChains.Solana,
88
88
  ];
89
89
  _this.type = types_1.EnumWalletType.Extension;
90
90
  _this.sdk = null;
@@ -92,6 +92,7 @@ var CoinbaseWallet = /** @class */ (function (_super) {
92
92
  types_1.EnumChains.Sei,
93
93
  types_1.EnumChains.ArbitrumSepolia,
94
94
  types_1.EnumChains.Gravity,
95
+ types_1.EnumChains.ApeChain,
95
96
  ];
96
97
  _this.type = types_1.EnumWalletType.Extension;
97
98
  _this.sdk = null;
@@ -114,6 +114,7 @@ var MetaMask = /** @class */ (function (_super) {
114
114
  types_1.EnumChains.Sei,
115
115
  types_1.EnumChains.ArbitrumSepolia,
116
116
  types_1.EnumChains.Gravity,
117
+ types_1.EnumChains.ApeChain,
117
118
  ];
118
119
  _this.type = types_1.EnumWalletType.Extension;
119
120
  _this.sdk = null;
@@ -95,6 +95,7 @@ var OKXWallet = /** @class */ (function (_super) {
95
95
  types_1.EnumChains.Sei,
96
96
  types_1.EnumChains.ArbitrumSepolia,
97
97
  types_1.EnumChains.Gravity,
98
+ types_1.EnumChains.ApeChain,
98
99
  ];
99
100
  _this.type = types_1.EnumWalletType.Extension;
100
101
  _this.sdk = null;
@@ -86,6 +86,7 @@ var RabbyWallet = /** @class */ (function (_super) {
86
86
  types_1.EnumChains.Mode,
87
87
  types_1.EnumChains.Rootstock,
88
88
  types_1.EnumChains.Gravity,
89
+ types_1.EnumChains.ApeChain,
89
90
  ];
90
91
  _this.type = types_1.EnumWalletType.Extension;
91
92
  _this.sdk = null;
@@ -105,6 +105,7 @@ var TrustWallet = /** @class */ (function (_super) {
105
105
  types_1.EnumChains.MerlinChain,
106
106
  types_1.EnumChains.Rootstock,
107
107
  types_1.EnumChains.Gravity,
108
+ types_1.EnumChains.ApeChain,
108
109
  ];
109
110
  _this.type = types_1.EnumWalletType.Extension;
110
111
  _this.sdk = null;
@@ -110,6 +110,7 @@ var WalletConnect = /** @class */ (function (_super) {
110
110
  types_1.EnumChains.Sei,
111
111
  types_1.EnumChains.ArbitrumSepolia,
112
112
  types_1.EnumChains.Gravity,
113
+ types_1.EnumChains.ApeChain,
113
114
  ];
114
115
  _this.type = types_1.EnumWalletType.WalletConnect;
115
116
  _this.sdk = null;
package/lib/types.d.ts CHANGED
@@ -61,7 +61,8 @@ export declare enum EnumChains {
61
61
  Sei = "sei",
62
62
  Btc = "btc",
63
63
  ArbitrumSepolia = "arbitrum_sepolia",
64
- Gravity = "gravity"
64
+ Gravity = "gravity",
65
+ ApeChain = "ape"
65
66
  }
66
67
  export declare enum EnumWalletType {
67
68
  Extension = "Extension",
package/lib/types.js CHANGED
@@ -62,6 +62,7 @@ var EnumChains;
62
62
  EnumChains["Btc"] = "btc";
63
63
  EnumChains["ArbitrumSepolia"] = "arbitrum_sepolia";
64
64
  EnumChains["Gravity"] = "gravity";
65
+ EnumChains["ApeChain"] = "ape";
65
66
  })(EnumChains || (exports.EnumChains = EnumChains = {}));
66
67
  var EnumWalletType;
67
68
  (function (EnumWalletType) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openocean.finance/wallet",
3
- "version": "1.9.13",
3
+ "version": "1.9.15",
4
4
  "description": "A multi-chain wallets manager",
5
5
  "main": "lib/index.js",
6
6
  "scripts": {