@openocean.finance/wallet 0.4.35 → 0.4.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.
Files changed (58) hide show
  1. package/lib/Wallets/BaseWallet.d.ts +1 -0
  2. package/lib/Wallets/BitKeepWallet.d.ts +1 -0
  3. package/lib/Wallets/BitKeepWallet.js +1 -0
  4. package/lib/Wallets/BloctoWallet.d.ts +1 -0
  5. package/lib/Wallets/BloctoWallet.js +1 -0
  6. package/lib/Wallets/BraveWallet.d.ts +1 -0
  7. package/lib/Wallets/BraveWallet.js +1 -0
  8. package/lib/Wallets/BscWallet.d.ts +1 -0
  9. package/lib/Wallets/BscWallet.js +1 -0
  10. package/lib/Wallets/CloverWallet.d.ts +1 -0
  11. package/lib/Wallets/CloverWallet.js +1 -0
  12. package/lib/Wallets/Coin98.d.ts +1 -0
  13. package/lib/Wallets/Coin98.js +1 -0
  14. package/lib/Wallets/CoinbaseWallet.d.ts +1 -0
  15. package/lib/Wallets/CoinbaseWallet.js +1 -0
  16. package/lib/Wallets/CryptoCom.d.ts +1 -0
  17. package/lib/Wallets/CryptoCom.js +1 -0
  18. package/lib/Wallets/Cyano.d.ts +1 -0
  19. package/lib/Wallets/Cyano.js +1 -0
  20. package/lib/Wallets/ImTokenWallet.d.ts +1 -0
  21. package/lib/Wallets/ImTokenWallet.js +1 -0
  22. package/lib/Wallets/KeplrWallet.d.ts +1 -0
  23. package/lib/Wallets/KeplrWallet.js +1 -0
  24. package/lib/Wallets/MartianWallet.d.ts +1 -0
  25. package/lib/Wallets/MartianWallet.js +1 -0
  26. package/lib/Wallets/MathWallet.d.ts +1 -0
  27. package/lib/Wallets/MathWallet.js +1 -0
  28. package/lib/Wallets/MetaMask.d.ts +1 -0
  29. package/lib/Wallets/MetaMask.js +1 -0
  30. package/lib/Wallets/OKXWallet.d.ts +1 -0
  31. package/lib/Wallets/OKXWallet.js +1 -0
  32. package/lib/Wallets/OntoWallet.d.ts +1 -0
  33. package/lib/Wallets/OntoWallet.js +1 -0
  34. package/lib/Wallets/PetraWallet.d.ts +1 -0
  35. package/lib/Wallets/PetraWallet.js +1 -0
  36. package/lib/Wallets/Phantom.d.ts +1 -0
  37. package/lib/Wallets/Phantom.js +1 -0
  38. package/lib/Wallets/PontemWallet.d.ts +1 -0
  39. package/lib/Wallets/PontemWallet.js +1 -0
  40. package/lib/Wallets/SafePalWallet.d.ts +1 -0
  41. package/lib/Wallets/SafePalWallet.js +1 -0
  42. package/lib/Wallets/SlopeWallet.d.ts +1 -0
  43. package/lib/Wallets/SlopeWallet.js +1 -0
  44. package/lib/Wallets/SolflareWallet.d.ts +1 -0
  45. package/lib/Wallets/SolflareWallet.js +1 -0
  46. package/lib/Wallets/Sollet.d.ts +1 -0
  47. package/lib/Wallets/Sollet.js +1 -0
  48. package/lib/Wallets/TerraStation.d.ts +1 -0
  49. package/lib/Wallets/TerraStation.js +1 -0
  50. package/lib/Wallets/TokenPocket.d.ts +1 -0
  51. package/lib/Wallets/TokenPocket.js +1 -0
  52. package/lib/Wallets/TronLink.d.ts +1 -0
  53. package/lib/Wallets/TronLink.js +1 -0
  54. package/lib/Wallets/TrustWallet.d.ts +1 -0
  55. package/lib/Wallets/TrustWallet.js +1 -0
  56. package/lib/Wallets/XDeFiWallet.d.ts +1 -0
  57. package/lib/Wallets/XDeFiWallet.js +1 -0
  58. package/package.json +1 -1
@@ -13,6 +13,7 @@ declare abstract class BaseWallet {
13
13
  address?: string;
14
14
  chain?: EnumChains;
15
15
  chainId?: string | number;
16
+ installUrl?: string;
16
17
  requestConnect?(): Promise<string>;
17
18
  requestSolanaConnect?(): Promise<string>;
18
19
  requestTerraConnect?(): Promise<string>;
@@ -7,6 +7,7 @@ declare class BitKeepWallet extends BaseWallet {
7
7
  supportChains: EnumChains[];
8
8
  type: EnumWalletType;
9
9
  sdk: Web3 | null;
10
+ installUrl: string;
10
11
  /**
11
12
  * connect metamask and get wallet address
12
13
  * @param chainId specific chainId,throw error when not match
@@ -90,6 +90,7 @@ var BitKeepWallet = /** @class */ (function (_super) {
90
90
  ];
91
91
  _this.type = types_1.EnumWalletType.Extension;
92
92
  _this.sdk = null;
93
+ _this.installUrl = "https://chrome.google.com/webstore/detail/bitkeep-bitcoin-crypto-wa/jiidiaalihmmhddjgbnbgdfflelocpak";
93
94
  return _this;
94
95
  }
95
96
  /**
@@ -7,6 +7,7 @@ declare class BloctoWallet extends BaseWallet {
7
7
  supportChains: EnumChains[];
8
8
  type: EnumWalletType;
9
9
  sdk: Web3 | null;
10
+ installUrl: string;
10
11
  /**
11
12
  * connect metamask and get wallet address
12
13
  * @param chainId specific chainId,throw error when not match
@@ -105,6 +105,7 @@ var BloctoWallet = /** @class */ (function (_super) {
105
105
  ];
106
106
  _this.type = types_1.EnumWalletType.Mobile;
107
107
  _this.sdk = null;
108
+ _this.installUrl = "https://portto.com/download";
108
109
  return _this;
109
110
  }
110
111
  /**
@@ -7,6 +7,7 @@ declare class BraveWallet extends BaseWallet {
7
7
  supportChains: EnumChains[];
8
8
  type: EnumWalletType;
9
9
  sdk: Web3 | null;
10
+ installUrl: string;
10
11
  /**
11
12
  * connect metamask and get wallet address
12
13
  * @param chainId specific chainId,throw error when not match
@@ -92,6 +92,7 @@ var BraveWallet = /** @class */ (function (_super) {
92
92
  ];
93
93
  _this.type = types_1.EnumWalletType.Extension;
94
94
  _this.sdk = null;
95
+ _this.installUrl = "https://brave.com/wallet";
95
96
  return _this;
96
97
  }
97
98
  /**
@@ -7,6 +7,7 @@ declare class BscWallet extends BaseWallet {
7
7
  supportChains: EnumChains[];
8
8
  type: EnumWalletType;
9
9
  sdk: Web3 | null;
10
+ installUrl: string;
10
11
  /**
11
12
  * connect metamask and get wallet address
12
13
  * @param chainId specific chainId,throw error when not match
@@ -74,6 +74,7 @@ var BscWallet = /** @class */ (function (_super) {
74
74
  _this.supportChains = [types_1.EnumChains.BSC];
75
75
  _this.type = types_1.EnumWalletType.Extension;
76
76
  _this.sdk = null;
77
+ _this.installUrl = "https://chrome.google.com/webstore/detail/binance-wallet/fhbohimaelbohpjbbldcngcnapndodjp";
77
78
  return _this;
78
79
  }
79
80
  /**
@@ -6,6 +6,7 @@ declare class CloverWallet extends BaseWallet {
6
6
  supportChains: EnumChains[];
7
7
  type: EnumWalletType;
8
8
  sdk: any | null;
9
+ installUrl: string;
9
10
  /**
10
11
  * connect Clover and get wallet address
11
12
  * @param chainId specific chainId,throw error when not match
@@ -74,6 +74,7 @@ var CloverWallet = /** @class */ (function (_super) {
74
74
  _this.supportChains = [types_1.EnumChains.ETH, types_1.EnumChains.BSC, types_1.EnumChains.Polygon, types_1.EnumChains.OKEX, types_1.EnumChains.XDai, types_1.EnumChains.HECO, types_1.EnumChains.Fantom, types_1.EnumChains.Avalanche, types_1.EnumChains.Arbitrum, types_1.EnumChains.Optimism, types_1.EnumChains.Boba, types_1.EnumChains.Solana];
75
75
  _this.type = types_1.EnumWalletType.Extension;
76
76
  _this.sdk = null;
77
+ _this.installUrl = "https://chrome.google.com/webstore/detail/clv-wallet/nhnkbkgjikgcigadomkphalanndcapjk";
77
78
  return _this;
78
79
  }
79
80
  /**
@@ -6,6 +6,7 @@ declare class Coin98 extends BaseWallet {
6
6
  supportChains: EnumChains[];
7
7
  type: EnumWalletType;
8
8
  sdk: any | null;
9
+ installUrl: string;
9
10
  /**
10
11
  * connect TrustWallet and get wallet address
11
12
  * @param chainId specific chainId,throw error when not match
@@ -74,6 +74,7 @@ var Coin98 = /** @class */ (function (_super) {
74
74
  _this.supportChains = [types_1.EnumChains.ETH, types_1.EnumChains.BSC, types_1.EnumChains.Polygon, types_1.EnumChains.HECO, types_1.EnumChains.XDai, types_1.EnumChains.Fantom, types_1.EnumChains.Avalanche, types_1.EnumChains.Arbitrum, types_1.EnumChains.OKEX, types_1.EnumChains.Aurora];
75
75
  _this.type = types_1.EnumWalletType.Extension;
76
76
  _this.sdk = null;
77
+ _this.installUrl = "https://chrome.google.com/webstore/detail/coin98-wallet/aeachknmefphepccionboohckonoeemg";
77
78
  return _this;
78
79
  }
79
80
  /**
@@ -7,6 +7,7 @@ declare class CoinbaseWallet extends BaseWallet {
7
7
  supportChains: EnumChains[];
8
8
  type: EnumWalletType;
9
9
  sdk: Web3 | null;
10
+ installUrl: string;
10
11
  /**
11
12
  * connect Coinbase and get wallet address
12
13
  * @param chainId specific chainId,throw error when not match
@@ -74,6 +74,7 @@ var CoinbaseWallet = /** @class */ (function (_super) {
74
74
  _this.supportChains = [types_1.EnumChains.ETH, types_1.EnumChains.BSC, types_1.EnumChains.Polygon, types_1.EnumChains.XDai, types_1.EnumChains.Fantom, types_1.EnumChains.Avalanche, types_1.EnumChains.Arbitrum, types_1.EnumChains.Optimism];
75
75
  _this.type = types_1.EnumWalletType.Extension;
76
76
  _this.sdk = null;
77
+ _this.installUrl = "https://chrome.google.com/webstore/detail/coinbase-wallet-extension/hnfanknocfeofbddgcijnmhnfnkdnaad";
77
78
  return _this;
78
79
  }
79
80
  /**
@@ -7,6 +7,7 @@ declare class CryptoCom extends BaseWallet {
7
7
  supportChains: EnumChains[];
8
8
  type: EnumWalletType;
9
9
  sdk: Web3 | null;
10
+ installUrl: string;
10
11
  /**
11
12
  * connect Coinbase and get wallet address
12
13
  * @param chainId specific chainId,throw error when not match
@@ -74,6 +74,7 @@ var CryptoCom = /** @class */ (function (_super) {
74
74
  _this.supportChains = [types_1.EnumChains.Cronos];
75
75
  _this.type = types_1.EnumWalletType.Extension;
76
76
  _this.sdk = null;
77
+ _this.installUrl = "https://crypto.com/defi-wallet";
77
78
  return _this;
78
79
  }
79
80
  /**
@@ -13,6 +13,7 @@ declare class Cyano extends BaseWallet {
13
13
  supportChains: EnumChains[];
14
14
  type: EnumWalletType;
15
15
  sdk: typeof client | null;
16
+ installUrl: string;
16
17
  requestConnect(chainId?: string): Promise<string>;
17
18
  }
18
19
  export default Cyano;
@@ -74,6 +74,7 @@ var Cyano = /** @class */ (function (_super) {
74
74
  _this.supportChains = [types_1.EnumChains.ONT];
75
75
  _this.type = types_1.EnumWalletType.Extension;
76
76
  _this.sdk = null;
77
+ _this.installUrl = "https://chrome.google.com/webstore/detail/cyano-wallet/dkdedlpgdmmkkfjabffeganieamfklkm";
77
78
  return _this;
78
79
  }
79
80
  Cyano.prototype.requestConnect = function (chainId) {
@@ -7,6 +7,7 @@ declare class ImTokenWallet extends BaseWallet {
7
7
  supportChains: EnumChains[];
8
8
  type: EnumWalletType;
9
9
  sdk: Web3 | null;
10
+ installUrl: string;
10
11
  /**
11
12
  * connect ImTokenWallet and get wallet address
12
13
  * @param chainId specific chainId,throw error when not match
@@ -74,6 +74,7 @@ var ImTokenWallet = /** @class */ (function (_super) {
74
74
  _this.supportChains = [types_1.EnumChains.ETH, types_1.EnumChains.BSC, types_1.EnumChains.Polygon, types_1.EnumChains.OKEX, types_1.EnumChains.XDai, types_1.EnumChains.HECO, types_1.EnumChains.Fantom, types_1.EnumChains.Avalanche];
75
75
  _this.type = types_1.EnumWalletType.Mobile;
76
76
  _this.sdk = null;
77
+ _this.installUrl = "https://token.im/download";
77
78
  return _this;
78
79
  }
79
80
  /**
@@ -6,6 +6,7 @@ declare class KeplrWallet extends BaseWallet {
6
6
  supportChains: EnumChains[];
7
7
  type: EnumWalletType;
8
8
  sdk: any;
9
+ installUrl: string;
9
10
  /**
10
11
  * connect metamask and get wallet address
11
12
  * @param chainId specific chainId,throw error when not match
@@ -75,6 +75,7 @@ var KeplrWallet = /** @class */ (function (_super) {
75
75
  _this.supportChains = [types_1.EnumChains.Osmosis, types_1.EnumChains.Sifchain];
76
76
  _this.type = types_1.EnumWalletType.Web;
77
77
  _this.sdk = null;
78
+ _this.installUrl = "https://chrome.google.com/webstore/detail/keplr/dmkamcknogkgcdfhhbddcghachkejeap";
78
79
  return _this;
79
80
  }
80
81
  /**
@@ -7,6 +7,7 @@ declare class MartianWallet extends BaseWallet {
7
7
  supportChains: EnumChains[];
8
8
  type: EnumWalletType;
9
9
  sdk: Web3 | null;
10
+ installUrl: string;
10
11
  /**
11
12
  * connect metamask and get wallet address
12
13
  */
@@ -73,6 +73,7 @@ var MartianWallet = /** @class */ (function (_super) {
73
73
  _this.supportChains = [types_1.EnumChains.Aptos];
74
74
  _this.type = types_1.EnumWalletType.Extension;
75
75
  _this.sdk = null;
76
+ _this.installUrl = "https://chrome.google.com/webstore/detail/martian-aptos-wallet/efbglgofoippbgcjepnhiblaibcnclgk";
76
77
  return _this;
77
78
  }
78
79
  /**
@@ -7,6 +7,7 @@ declare class MathWallet extends BaseWallet {
7
7
  supportChains: EnumChains[];
8
8
  type: EnumWalletType;
9
9
  sdk: Web3 | null;
10
+ installUrl: string;
10
11
  /**
11
12
  * connect MathWallet and get wallet address
12
13
  * @param chainId specific chainId,throw error when not match
@@ -74,6 +74,7 @@ var MathWallet = /** @class */ (function (_super) {
74
74
  _this.supportChains = [types_1.EnumChains.ETH, types_1.EnumChains.BSC, types_1.EnumChains.HECO, types_1.EnumChains.Fantom, types_1.EnumChains.OKEX, types_1.EnumChains.XDai, types_1.EnumChains.Arbitrum, types_1.EnumChains.Optimism];
75
75
  _this.type = types_1.EnumWalletType.Extension;
76
76
  _this.sdk = null;
77
+ _this.installUrl = "https://chrome.google.com/webstore/detail/math-wallet/afbcbjpbpfadlkmhmclhkeeodmamcflc";
77
78
  return _this;
78
79
  }
79
80
  /**
@@ -7,6 +7,7 @@ declare class MetaMask extends BaseWallet {
7
7
  supportChains: EnumChains[];
8
8
  type: EnumWalletType;
9
9
  sdk: Web3 | null;
10
+ installUrl: string;
10
11
  /**
11
12
  * connect metamask and get wallet address
12
13
  * @param chainId specific chainId,throw error when not match
@@ -93,6 +93,7 @@ var MetaMask = /** @class */ (function (_super) {
93
93
  ];
94
94
  _this.type = types_1.EnumWalletType.Extension;
95
95
  _this.sdk = null;
96
+ _this.installUrl = "https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn";
96
97
  return _this;
97
98
  }
98
99
  /**
@@ -7,6 +7,7 @@ declare class OKXWallet extends BaseWallet {
7
7
  supportChains: EnumChains[];
8
8
  type: EnumWalletType;
9
9
  sdk: Web3 | null;
10
+ installUrl: string;
10
11
  /**
11
12
  * connect TrustWallet and get wallet address
12
13
  * @param chainId specific chainId,throw error when not match
@@ -87,6 +87,7 @@ var OKXWallet = /** @class */ (function (_super) {
87
87
  ];
88
88
  _this.type = types_1.EnumWalletType.Extension;
89
89
  _this.sdk = null;
90
+ _this.installUrl = "https://chrome.google.com/webstore/detail/okx-wallet/mcohilncbfahbmgdjkbpemcciiolgcge";
90
91
  return _this;
91
92
  }
92
93
  /**
@@ -7,6 +7,7 @@ declare class OntoWallet extends BaseWallet {
7
7
  supportChains: EnumChains[];
8
8
  type: EnumWalletType;
9
9
  sdk: Web3 | null;
10
+ installUrl: string;
10
11
  /**
11
12
  * connect OntoWallet and get wallet address
12
13
  * @param chainId specific chainId,throw error when not match
@@ -74,6 +74,7 @@ var OntoWallet = /** @class */ (function (_super) {
74
74
  _this.supportChains = [types_1.EnumChains.ETH, types_1.EnumChains.BSC, types_1.EnumChains.OKEX, types_1.EnumChains.Polygon, types_1.EnumChains.HECO, types_1.EnumChains.Arbitrum, types_1.EnumChains.Avalanche];
75
75
  _this.type = types_1.EnumWalletType.Extension;
76
76
  _this.sdk = null;
77
+ _this.installUrl = "https://chrome.google.com/webstore/detail/onto-wallet/ifckdpamphokdglkkdomedpdegcjhjdp";
77
78
  return _this;
78
79
  }
79
80
  /**
@@ -7,6 +7,7 @@ declare class PetraWallet extends BaseWallet {
7
7
  supportChains: EnumChains[];
8
8
  type: EnumWalletType;
9
9
  sdk: Web3 | null;
10
+ installUrl: string;
10
11
  /**
11
12
  * connect metamask and get wallet address
12
13
  */
@@ -73,6 +73,7 @@ var PetraWallet = /** @class */ (function (_super) {
73
73
  _this.supportChains = [types_1.EnumChains.Aptos];
74
74
  _this.type = types_1.EnumWalletType.Extension;
75
75
  _this.sdk = null;
76
+ _this.installUrl = "https://chrome.google.com/webstore/detail/petra-aptos-wallet/ejjladinnckdgjemekebdpeokbikhfci";
76
77
  return _this;
77
78
  }
78
79
  /**
@@ -6,6 +6,7 @@ declare class Phantom extends BaseWallet {
6
6
  supportChains: EnumChains[];
7
7
  type: EnumWalletType;
8
8
  sdk: any;
9
+ installUrl: string;
9
10
  /**
10
11
  * connect metamask and get wallet address
11
12
  * @param chainId specific chainId,throw error when not match
@@ -37,6 +37,7 @@ var Phantom = /** @class */ (function (_super) {
37
37
  _this.supportChains = [types_1.EnumChains.Solana];
38
38
  _this.type = types_1.EnumWalletType.Extension;
39
39
  _this.sdk = null;
40
+ _this.installUrl = "https://chrome.google.com/webstore/detail/phantom/bfnaelmomeimhlpmgjnjophhpkkoljpa";
40
41
  return _this;
41
42
  }
42
43
  /**
@@ -7,6 +7,7 @@ declare class PontemWallet extends BaseWallet {
7
7
  supportChains: EnumChains[];
8
8
  type: EnumWalletType;
9
9
  sdk: Web3 | null;
10
+ installUrl: string;
10
11
  /**
11
12
  * connect metamask and get wallet address
12
13
  */
@@ -73,6 +73,7 @@ var PontemWallet = /** @class */ (function (_super) {
73
73
  _this.supportChains = [types_1.EnumChains.Aptos];
74
74
  _this.type = types_1.EnumWalletType.Extension;
75
75
  _this.sdk = null;
76
+ _this.installUrl = "https://chrome.google.com/webstore/detail/pontem-aptos-wallet/phkbamefinggmakgklpkljjmgibohnba";
76
77
  return _this;
77
78
  }
78
79
  /**
@@ -7,6 +7,7 @@ declare class SafePalWallet extends BaseWallet {
7
7
  supportChains: EnumChains[];
8
8
  type: EnumWalletType;
9
9
  sdk: Web3 | null;
10
+ installUrl: string;
10
11
  /**
11
12
  * connect SafePalWallet and get wallet address
12
13
  * @param chainId specific chainId,throw error when not match
@@ -89,6 +89,7 @@ var SafePalWallet = /** @class */ (function (_super) {
89
89
  ];
90
90
  _this.type = types_1.EnumWalletType.Extension;
91
91
  _this.sdk = null;
92
+ _this.installUrl = "https://chrome.google.com/webstore/detail/safepal-extension-wallet/lgmpcpglpngdoalbgeoldeajfclnhafa";
92
93
  return _this;
93
94
  }
94
95
  /**
@@ -6,6 +6,7 @@ declare class SlopeWallet extends BaseWallet {
6
6
  supportChains: EnumChains[];
7
7
  type: EnumWalletType;
8
8
  sdk: any;
9
+ installUrl: string;
9
10
  /**
10
11
  * connect metamask and get wallet address
11
12
  * @param chainId specific chainId,throw error when not match
@@ -73,6 +73,7 @@ var SlopeWallet = /** @class */ (function (_super) {
73
73
  _this.supportChains = [types_1.EnumChains.Solana];
74
74
  _this.type = types_1.EnumWalletType.Extension;
75
75
  _this.sdk = null;
76
+ _this.installUrl = "https://chrome.google.com/webstore/detail/slope-wallet/pocmplpaccanhmnllbbkpgfliimjljgo";
76
77
  return _this;
77
78
  }
78
79
  /**
@@ -6,6 +6,7 @@ declare class SolflareWallet extends BaseWallet {
6
6
  supportChains: EnumChains[];
7
7
  type: EnumWalletType;
8
8
  sdk: any;
9
+ installUrl: string;
9
10
  /**
10
11
  * connect metamask and get wallet address
11
12
  * @param chainId specific chainId,throw error when not match
@@ -73,6 +73,7 @@ var SolflareWallet = /** @class */ (function (_super) {
73
73
  _this.supportChains = [types_1.EnumChains.Solana];
74
74
  _this.type = types_1.EnumWalletType.Extension;
75
75
  _this.sdk = null;
76
+ _this.installUrl = "https://chrome.google.com/webstore/detail/solflare-wallet/bhhhlbepdkbapadjdnnojkbgioiodbic";
76
77
  return _this;
77
78
  }
78
79
  /**
@@ -6,6 +6,7 @@ declare class Sollet extends BaseWallet {
6
6
  supportChains: EnumChains[];
7
7
  type: EnumWalletType;
8
8
  sdk: any;
9
+ installUrl: string;
9
10
  /**
10
11
  * connect metamask and get wallet address
11
12
  * @param chainId specific chainId,throw error when not match
@@ -39,6 +39,7 @@ var Sollet = /** @class */ (function (_super) {
39
39
  _this.supportChains = [types_1.EnumChains.Solana];
40
40
  _this.type = types_1.EnumWalletType.Extension;
41
41
  _this.sdk = null;
42
+ _this.installUrl = "https://chrome.google.com/webstore/detail/sollet/fhmfendgdocmcbmfikdcogofphimnkno";
42
43
  return _this;
43
44
  }
44
45
  /**
@@ -6,6 +6,7 @@ declare class TerraStation extends BaseWallet {
6
6
  supportChains: EnumChains[];
7
7
  type: EnumWalletType;
8
8
  sdk: any;
9
+ installUrl: string;
9
10
  /**
10
11
  * connect metamask and get wallet address
11
12
  * @param chainId specific chainId,throw error when not match
@@ -39,6 +39,7 @@ var TerraStation = /** @class */ (function (_super) {
39
39
  _this.supportChains = [types_1.EnumChains.Terra];
40
40
  _this.type = types_1.EnumWalletType.Extension;
41
41
  _this.sdk = null;
42
+ _this.installUrl = "https://chrome.google.com/webstore/detail/terra-station-wallet/aiifbnbfobpmeekipheeijimdpnlpgpp";
42
43
  return _this;
43
44
  }
44
45
  /**
@@ -7,6 +7,7 @@ declare class TokenPocket extends BaseWallet {
7
7
  supportChains: EnumChains[];
8
8
  type: EnumWalletType;
9
9
  sdk: Web3 | null;
10
+ installUrl: string;
10
11
  /**
11
12
  * connect TokenPocket and get wallet address
12
13
  * @param chainId specific chainId,throw error when not match
@@ -74,6 +74,7 @@ var TokenPocket = /** @class */ (function (_super) {
74
74
  _this.supportChains = [types_1.EnumChains.BSC, types_1.EnumChains.Polygon, types_1.EnumChains.OKEX, types_1.EnumChains.XDai, types_1.EnumChains.HECO, types_1.EnumChains.Fantom, types_1.EnumChains.Avalanche];
75
75
  _this.type = types_1.EnumWalletType.Extension;
76
76
  _this.sdk = null;
77
+ _this.installUrl = "https://chrome.google.com/webstore/detail/tokenpocket/mfgccjchihfkkindfppnaooecgfneiii";
77
78
  return _this;
78
79
  }
79
80
  /**
@@ -7,6 +7,7 @@ declare class TronLink extends BaseWallet {
7
7
  supportChains: EnumChains[];
8
8
  type: EnumWalletType;
9
9
  sdk: Web3 | null;
10
+ installUrl: string;
10
11
  /**
11
12
  * connect metamask and get wallet address
12
13
  */
@@ -73,6 +73,7 @@ var TronLink = /** @class */ (function (_super) {
73
73
  _this.supportChains = [types_1.EnumChains.TRON];
74
74
  _this.type = types_1.EnumWalletType.Extension;
75
75
  _this.sdk = null;
76
+ _this.installUrl = "https://chrome.google.com/webstore/detail/tronlink/ibnejdfjmmkpcnlpebklmnkoeoihofec";
76
77
  return _this;
77
78
  }
78
79
  /**
@@ -7,6 +7,7 @@ declare class TrustWallet extends BaseWallet {
7
7
  supportChains: EnumChains[];
8
8
  type: EnumWalletType;
9
9
  sdk: Web3 | null;
10
+ installUrl: string;
10
11
  /**
11
12
  * connect TrustWallet and get wallet address
12
13
  * @param chainId specific chainId,throw error when not match
@@ -89,6 +89,7 @@ var TrustWallet = /** @class */ (function (_super) {
89
89
  ];
90
90
  _this.type = types_1.EnumWalletType.Extension;
91
91
  _this.sdk = null;
92
+ _this.installUrl = "https://chrome.google.com/webstore/detail/trust-wallet/egjidjbpglichdcondbcbdnbeeppgdph";
92
93
  return _this;
93
94
  }
94
95
  /**
@@ -6,6 +6,7 @@ declare class XDEFIWallet extends BaseWallet {
6
6
  supportChains: EnumChains[];
7
7
  type: EnumWalletType;
8
8
  sdk: any | null;
9
+ installUrl: string;
9
10
  /**
10
11
  * connect XDeFi and get wallet address
11
12
  * @param chainId specific chainId,throw error when not match
@@ -76,6 +76,7 @@ var XDEFIWallet = /** @class */ (function (_super) {
76
76
  _this.supportChains = [types_1.EnumChains.ETH, types_1.EnumChains.BSC, types_1.EnumChains.Polygon, types_1.EnumChains.Terra];
77
77
  _this.type = types_1.EnumWalletType.Extension;
78
78
  _this.sdk = null;
79
+ _this.installUrl = "https://chrome.google.com/webstore/detail/trust-wallet/egjidjbpglichdcondbcbdnbeeppgdph";
79
80
  return _this;
80
81
  }
81
82
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openocean.finance/wallet",
3
- "version": "0.4.35",
3
+ "version": "0.4.36",
4
4
  "description": "A multi-chain wallets manager",
5
5
  "main": "lib/index.js",
6
6
  "scripts": {