pub trait SolanaSignMessageOutput: SolanaSignatureOutput {
// Required methods
fn signed_message(&self) -> Vec<u8> ⓘ;
fn signature_type(&self) -> Option<String>;
}
Required Methods§
Sourcefn signed_message(&self) -> Vec<u8> ⓘ
fn signed_message(&self) -> Vec<u8> ⓘ
Message bytes that were signed. The wallet may prefix or otherwise modify the message before signing it.
Sourcefn signature_type(&self) -> Option<String>
fn signature_type(&self) -> Option<String>
Optional type of the message signature produced. If not provided, the signature must be Ed25519.