Trait AbstractSignerForCreate
Source pub trait AbstractSignerForCreate {
// Required methods
fn address(&self) -> Address;
fn sign_typed_create_proxy<'life0, 'life1, 'life2, 'life3, 'life4, 'async_trait>(
&'life0 self,
safe_factory: &'life1 str,
chain_id: u64,
payment_token: &'life2 str,
payment: &'life3 str,
payment_receiver: &'life4 str,
) -> Pin<Box<dyn Future<Output = Result<String>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
'life3: 'async_trait,
'life4: 'async_trait;
}