pub trait SignedTransactionBuilder: ExtrinsicCall {
type Address;
type Signature;
type Extension;
// Required method
fn new_signed_transaction(
call: Self::Call,
signed: Self::Address,
signature: Self::Signature,
tx_ext: Self::Extension,
) -> Self;
}
Expand description
Interface for types capable of constructing a signed transaction.
Required Associated Types§
Required Methods§
Object Safety§
This trait is not object safe.