@openocean.finance/wallet 1.9.2 → 1.9.3
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 +8 -0
- package/lib/TryWalletConnect/index.d.ts +0 -1
- package/lib/Wallets/CoinbaseWallet.js +2 -1
- package/lib/Wallets/CompassWallet.js +2 -1
- package/lib/Wallets/MetaMask.js +2 -1
- package/lib/Wallets/OKXWallet.js +2 -1
- package/lib/Wallets/WalletConnect.js +2 -1
- package/lib/types.d.ts +2 -1
- package/lib/types.js +1 -0
- package/package.json +1 -1
package/lib/Chains.js
CHANGED
|
@@ -465,6 +465,14 @@ var chainObj = {
|
|
|
465
465
|
popularToken: ["BTC"],
|
|
466
466
|
rpcUrls: []
|
|
467
467
|
},
|
|
468
|
+
"arbitrum_sepolia": {
|
|
469
|
+
compiler: 'EVM',
|
|
470
|
+
chainName: "Arbitrum Sepolia",
|
|
471
|
+
chainId: 421614,
|
|
472
|
+
blockExplorerUrl: "https://sepolia-explorer.arbitrum.io/tx/",
|
|
473
|
+
nativeCurrency: { name: "ETH", symbol: "ETH", decimals: 18, address: "0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE" },
|
|
474
|
+
rpcUrls: ["https://arbitrum-sepolia.blockpi.network/v1/rpc/public"]
|
|
475
|
+
},
|
|
468
476
|
};
|
|
469
477
|
var Chains = /** @class */ (function () {
|
|
470
478
|
function Chains() {
|
|
@@ -89,7 +89,8 @@ var CoinbaseWallet = /** @class */ (function (_super) {
|
|
|
89
89
|
types_1.EnumChains.Manta,
|
|
90
90
|
types_1.EnumChains.Mode,
|
|
91
91
|
types_1.EnumChains.Rootstock,
|
|
92
|
-
types_1.EnumChains.Sei
|
|
92
|
+
types_1.EnumChains.Sei,
|
|
93
|
+
types_1.EnumChains.ArbitrumSepolia,
|
|
93
94
|
];
|
|
94
95
|
_this.type = types_1.EnumWalletType.Extension;
|
|
95
96
|
_this.sdk = null;
|
|
@@ -81,7 +81,8 @@ var CompassWallet = /** @class */ (function (_super) {
|
|
|
81
81
|
types_1.EnumChains.Arbitrum,
|
|
82
82
|
types_1.EnumChains.Optimism,
|
|
83
83
|
types_1.EnumChains.Metis,
|
|
84
|
-
types_1.EnumChains.Sei
|
|
84
|
+
types_1.EnumChains.Sei,
|
|
85
|
+
types_1.EnumChains.ArbitrumSepolia,
|
|
85
86
|
];
|
|
86
87
|
_this.type = types_1.EnumWalletType.Extension;
|
|
87
88
|
_this.sdk = null;
|
package/lib/Wallets/MetaMask.js
CHANGED
|
@@ -111,7 +111,8 @@ var MetaMask = /** @class */ (function (_super) {
|
|
|
111
111
|
types_1.EnumChains.PulseChain,
|
|
112
112
|
types_1.EnumChains.MerlinChain,
|
|
113
113
|
types_1.EnumChains.Rootstock,
|
|
114
|
-
types_1.EnumChains.Sei
|
|
114
|
+
types_1.EnumChains.Sei,
|
|
115
|
+
types_1.EnumChains.ArbitrumSepolia,
|
|
115
116
|
];
|
|
116
117
|
_this.type = types_1.EnumWalletType.Extension;
|
|
117
118
|
_this.sdk = null;
|
package/lib/Wallets/OKXWallet.js
CHANGED
|
@@ -92,7 +92,8 @@ var OKXWallet = /** @class */ (function (_super) {
|
|
|
92
92
|
types_1.EnumChains.X1,
|
|
93
93
|
types_1.EnumChains.Mode,
|
|
94
94
|
types_1.EnumChains.Rootstock,
|
|
95
|
-
types_1.EnumChains.Sei
|
|
95
|
+
types_1.EnumChains.Sei,
|
|
96
|
+
types_1.EnumChains.ArbitrumSepolia,
|
|
96
97
|
];
|
|
97
98
|
_this.type = types_1.EnumWalletType.Extension;
|
|
98
99
|
_this.sdk = null;
|
|
@@ -107,7 +107,8 @@ var WalletConnect = /** @class */ (function (_super) {
|
|
|
107
107
|
types_1.EnumChains.PulseChain,
|
|
108
108
|
types_1.EnumChains.MerlinChain,
|
|
109
109
|
types_1.EnumChains.Rootstock,
|
|
110
|
-
types_1.EnumChains.Sei
|
|
110
|
+
types_1.EnumChains.Sei,
|
|
111
|
+
types_1.EnumChains.ArbitrumSepolia,
|
|
111
112
|
];
|
|
112
113
|
_this.type = types_1.EnumWalletType.WalletConnect;
|
|
113
114
|
_this.sdk = null;
|
package/lib/types.d.ts
CHANGED
package/lib/types.js
CHANGED
|
@@ -60,6 +60,7 @@ var EnumChains;
|
|
|
60
60
|
EnumChains["Rootstock"] = "rootstock";
|
|
61
61
|
EnumChains["Sei"] = "sei";
|
|
62
62
|
EnumChains["Btc"] = "btc";
|
|
63
|
+
EnumChains["ArbitrumSepolia"] = "arbitrum_sepolia";
|
|
63
64
|
})(EnumChains = exports.EnumChains || (exports.EnumChains = {}));
|
|
64
65
|
var EnumWalletType;
|
|
65
66
|
(function (EnumWalletType) {
|