pub trait IssueRuntimeApi<Block, AccountId, H256, IssueRequest>: Core<Block>where
    Block: Block,
    AccountId: Codec,
    H256: Codec,
    IssueRequest: Codec,{
    // Provided methods
    fn get_issue_requests(
        &self,
        __runtime_api_at_param__: <Block as Block>::Hash,
        account_id: AccountId
    ) -> Result<Vec<H256, Global>, ApiError> { ... }
    fn get_vault_issue_requests(
        &self,
        __runtime_api_at_param__: <Block as Block>::Hash,
        vault_id: AccountId
    ) -> Result<Vec<H256, Global>, ApiError> { ... }
}

Provided Methods§

source

fn get_issue_requests( &self, __runtime_api_at_param__: <Block as Block>::Hash, account_id: AccountId ) -> Result<Vec<H256, Global>, ApiError>

Get all issue requests for a particular account

source

fn get_vault_issue_requests( &self, __runtime_api_at_param__: <Block as Block>::Hash, vault_id: AccountId ) -> Result<Vec<H256, Global>, ApiError>

Get all issue requests for a particular vault

Trait Implementations§

source§

impl<Block, AccountId, H256, IssueRequest> RuntimeApiInfo for dyn IssueApi<Block, AccountId, H256, IssueRequest> + 'staticwhere Block: Block,

source§

const ID: [u8; 8] = [202u8, 243u8, 155u8, 151u8, 154u8, 104u8, 128u8, 189u8]

The identifier of the runtime api.
source§

const VERSION: u32 = 1u32

The version of the runtime api.

Implementors§