Trait solana_remote_wallet::remote_wallet::RemoteWallet [−][src]
pub trait RemoteWallet { fn read_device(
&mut self,
dev_info: &DeviceInfo
) -> Result<RemoteWalletInfo, RemoteWalletError>; fn get_pubkey(
&self,
derivation_path: &DerivationPath,
confirm_key: bool
) -> Result<Pubkey, RemoteWalletError>; fn sign_message(
&self,
derivation_path: &DerivationPath,
data: &[u8]
) -> Result<Signature, RemoteWalletError>; fn name(&self) -> &str { ... } }
Expand description
RemoteWallet
trait
Required methods
fn read_device(
&mut self,
dev_info: &DeviceInfo
) -> Result<RemoteWalletInfo, RemoteWalletError>
[src]
fn read_device(
&mut self,
dev_info: &DeviceInfo
) -> Result<RemoteWalletInfo, RemoteWalletError>
[src]Parse device info and get device base pubkey
fn get_pubkey(
&self,
derivation_path: &DerivationPath,
confirm_key: bool
) -> Result<Pubkey, RemoteWalletError>
[src]
fn get_pubkey(
&self,
derivation_path: &DerivationPath,
confirm_key: bool
) -> Result<Pubkey, RemoteWalletError>
[src]Get solana pubkey from a RemoteWallet
fn sign_message(
&self,
derivation_path: &DerivationPath,
data: &[u8]
) -> Result<Signature, RemoteWalletError>
[src]
fn sign_message(
&self,
derivation_path: &DerivationPath,
data: &[u8]
) -> Result<Signature, RemoteWalletError>
[src]Sign transaction data with wallet managing pubkey at derivation path m/44’/501’/
Provided methods
Implementors
fn read_device(
&mut self,
dev_info: &DeviceInfo
) -> Result<RemoteWalletInfo, RemoteWalletError>
[src]fn get_pubkey(
&self,
derivation_path: &DerivationPath,
confirm_key: bool
) -> Result<Pubkey, RemoteWalletError>
[src]fn sign_message(
&self,
derivation_path: &DerivationPath,
data: &[u8]
) -> Result<Signature, RemoteWalletError>
[src]