pub trait ToPayload {
// Required methods
fn to_payload(&self) -> Result<Vec<u8>, Error>;
fn content_type(&self) -> Content;
fn derivation_paths(&self) -> Result<Vec<DerivationPath>, Error>;
fn keys(&self) -> Result<Vec<PublicKey>, Error>;
}