pub trait MetamaskSignatureRuntimeApi<Block: BlockT>: Core<Block> {
    // Provided method
    fn get_eip712_sign_data(
        &self,
        __runtime_api_at_param__: <Block as BlockT>::Hash,
        call: Vec<u8>
    ) -> Result<String, ApiError> { ... }
}

Provided Methods§

source

fn get_eip712_sign_data( &self, __runtime_api_at_param__: <Block as BlockT>::Hash, call: Vec<u8> ) -> Result<String, ApiError>

Trait Implementations§

source§

impl<Block: BlockT> RuntimeApiInfo for dyn MetamaskSignatureRuntimeApi<Block>

source§

const ID: [u8; 8] = _

The identifier of the runtime api.
source§

const VERSION: u32 = 1u32

The version of the runtime api.

Implementors§