Trait sov_rollup_interface::da::BlobTransactionTrait
source · pub trait BlobTransactionTrait: Serialize + DeserializeOwned {
type Data: Buf;
type Address: AddressTrait;
// Required methods
fn sender(&self) -> Self::Address;
fn data(&self) -> Self::Data;
}
Expand description
A transaction on a data availability layer, including the address of the sender.