@openocean.finance/wallet 0.0.6 → 0.0.7
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.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { EnumChains, EnumWalletName, EnumWalletType } from "../types";
|
|
2
2
|
import BaseWallet from "./BaseWallet";
|
|
3
3
|
import Web3 from 'web3';
|
|
4
|
-
declare class
|
|
4
|
+
declare class CoinbaseWallet extends BaseWallet {
|
|
5
5
|
name: EnumWalletName;
|
|
6
6
|
icon: any;
|
|
7
7
|
supportChains: EnumChains[];
|
|
@@ -13,4 +13,4 @@ declare class Coinbase extends BaseWallet {
|
|
|
13
13
|
*/
|
|
14
14
|
requestConnect(chainId?: number): Promise<string>;
|
|
15
15
|
}
|
|
16
|
-
export default
|
|
16
|
+
export default CoinbaseWallet;
|
package/lib/index.d.ts
CHANGED
|
@@ -23,7 +23,7 @@ import Coin98 from "./Wallets/Coin98";
|
|
|
23
23
|
import OKExWallet from "./Wallets/OKExWallet";
|
|
24
24
|
import Phantom from "./Wallets/Phantom";
|
|
25
25
|
import TerraStation from './Wallets/TerraStation';
|
|
26
|
-
import
|
|
26
|
+
import CoinbaseWallet from "./Wallets/CoinbaseWallet";
|
|
27
27
|
import { EnumChains } from "./types";
|
|
28
28
|
export default WalletManager;
|
|
29
|
-
export { WalletManager, MetaMask, BscWallet, Cyano, TronLink, EnumChains, Sollet, SolletIo, OntoMobile, WalletConnect, MathWallet, OntoWallet, SafePalWallet, ImTokenWallet, TokenPocket, TrustWallet, Coin98, Phantom, OKExWallet, TerraStation,
|
|
29
|
+
export { WalletManager, MetaMask, BscWallet, Cyano, TronLink, EnumChains, Sollet, SolletIo, OntoMobile, WalletConnect, MathWallet, OntoWallet, SafePalWallet, ImTokenWallet, TokenPocket, TrustWallet, Coin98, Phantom, OKExWallet, TerraStation, CoinbaseWallet };
|