@openocean.finance/wallet 0.2.8 → 0.3.2

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.
@@ -10,6 +10,6 @@ declare class KeplrWallet extends BaseWallet {
10
10
  * connect metamask and get wallet address
11
11
  * @param chainId specific chainId,throw error when not match
12
12
  */
13
- requestCosmosConnect(chainId?: string): Promise<string>;
13
+ requestCosmosConnect(customRegistry: any, customAminoTypes: any, endpoint: string, apiUrl: string, chainId?: string): Promise<string>;
14
14
  }
15
15
  export default KeplrWallet;
@@ -7,10 +7,12 @@ declare class TrustWallet extends BaseWallet {
7
7
  supportChains: EnumChains[];
8
8
  type: EnumWalletType;
9
9
  sdk: Web3 | null;
10
+ infuraId?: string;
10
11
  /**
11
- * connect TrustWallet and get wallet address
12
+ * connect metamask and get wallet address
12
13
  * @param chainId specific chainId,throw error when not match
14
+ * @param config
13
15
  */
14
- requestConnect(chainId?: number): Promise<string>;
16
+ requestConnect(chainId?: number, config?: any): Promise<string>;
15
17
  }
16
18
  export default TrustWallet;