You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/**
* walletImport returns the private key of an address in the wallet.
* @param keyInfo
*/
public async walletImport(keyInfo: KeyInfo): Promise<string> {
const ret = await this.conn.request({ method: 'Filecoin.WalletImport', params: [keyInfo] });
return ret as string;
}
walletImport should Import a private and returns the address of the private key I assume?
walletImport should Import a private and returns the address of the private key I assume?
filecoin.js/src/providers/wallet/HttpJsonRpcWalletProvider.ts
Line 93 in 3a8311f
The text was updated successfully, but these errors were encountered: