@openocean.finance/wallet 1.10.24 → 1.10.26

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
@@ -548,6 +548,12 @@ var chainObj = {
548
548
  nativeCurrency: { name: "SUI", symbol: "SUI", decimals: 9, address: "0x2" },
549
549
  rpcUrls: []
550
550
  },
551
+ "bera": {
552
+ compiler: 'EVM',
553
+ chainName: "Berachain", chainId: 80094, blockExplorerUrl: "https://www.berachain.com/tx/", popularToken: ["BERA", "USDT", "USDC"],
554
+ nativeCurrency: { name: "Berachain BERA", symbol: "BERA", decimals: 18, address: "0x0000000000000000000000000000000000000000" },
555
+ rpcUrls: ["https://rpc.berachain.com"]
556
+ },
551
557
  };
552
558
  var Chains = /** @class */ (function () {
553
559
  function Chains() {
@@ -86,7 +86,7 @@ var BitgetWallet = /** @class */ (function (_super) {
86
86
  types_1.EnumChains.ZKSYNC,
87
87
  types_1.EnumChains.Linea,
88
88
  types_1.EnumChains.LineaTest,
89
- types_1.EnumChains.PolygonzkEVM
89
+ types_1.EnumChains.PolygonzkEVM,
90
90
  // EnumChains.Boba,
91
91
  // EnumChains.Moonriver,
92
92
  // EnumChains.Aurora,
@@ -116,6 +116,7 @@ var MetaMask = /** @class */ (function (_super) {
116
116
  types_1.EnumChains.ArbitrumSepolia,
117
117
  types_1.EnumChains.Gravity,
118
118
  types_1.EnumChains.ApeChain,
119
+ types_1.EnumChains.Bera,
119
120
  ];
120
121
  _this.type = types_1.EnumWalletType.Extension;
121
122
  _this.sdk = null;
@@ -97,6 +97,7 @@ var OKXWallet = /** @class */ (function (_super) {
97
97
  types_1.EnumChains.ArbitrumSepolia,
98
98
  types_1.EnumChains.Gravity,
99
99
  types_1.EnumChains.ApeChain,
100
+ types_1.EnumChains.Bera,
100
101
  ];
101
102
  _this.type = types_1.EnumWalletType.Extension;
102
103
  _this.sdk = null;
@@ -88,6 +88,7 @@ var RabbyWallet = /** @class */ (function (_super) {
88
88
  types_1.EnumChains.Rootstock,
89
89
  types_1.EnumChains.Gravity,
90
90
  types_1.EnumChains.ApeChain,
91
+ types_1.EnumChains.Bera,
91
92
  ];
92
93
  _this.type = types_1.EnumWalletType.Extension;
93
94
  _this.sdk = null;
@@ -107,6 +107,7 @@ var TrustWallet = /** @class */ (function (_super) {
107
107
  types_1.EnumChains.Rootstock,
108
108
  types_1.EnumChains.Gravity,
109
109
  types_1.EnumChains.ApeChain,
110
+ types_1.EnumChains.Bera,
110
111
  ];
111
112
  _this.type = types_1.EnumWalletType.Extension;
112
113
  _this.sdk = null;
@@ -116,6 +116,7 @@ var WalletConnect = /** @class */ (function (_super) {
116
116
  types_1.EnumChains.ArbitrumSepolia,
117
117
  types_1.EnumChains.Gravity,
118
118
  types_1.EnumChains.ApeChain,
119
+ types_1.EnumChains.Bera,
119
120
  ];
120
121
  _this.type = types_1.EnumWalletType.WalletConnect;
121
122
  _this.sdk = null;
package/lib/types.d.ts CHANGED
@@ -64,7 +64,8 @@ export declare enum EnumChains {
64
64
  ArbitrumSepolia = "arbitrum_sepolia",
65
65
  Gravity = "gravity",
66
66
  ApeChain = "ape",
67
- Sui = "sui"
67
+ Sui = "sui",
68
+ Bera = "bera"
68
69
  }
69
70
  export declare enum EnumWalletType {
70
71
  Extension = "Extension",
package/lib/types.js CHANGED
@@ -65,6 +65,7 @@ var EnumChains;
65
65
  EnumChains["Gravity"] = "gravity";
66
66
  EnumChains["ApeChain"] = "ape";
67
67
  EnumChains["Sui"] = "sui";
68
+ EnumChains["Bera"] = "bera";
68
69
  })(EnumChains || (exports.EnumChains = EnumChains = {}));
69
70
  var EnumWalletType;
70
71
  (function (EnumWalletType) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openocean.finance/wallet",
3
- "version": "1.10.24",
3
+ "version": "1.10.26",
4
4
  "description": "A multi-chain wallets manager",
5
5
  "main": "lib/index.js",
6
6
  "scripts": {