referrerpolicy=no-referrer-when-downgrade
pub trait TransactionPaymentCallApi<Block: BlockT, Balance, Call>: Core<Block>
where Balance: Codec + MaybeDisplay, Call: Codec,
{ // Provided methods fn query_call_info( &self, __runtime_api_at_param__: <Block as BlockT>::Hash, call: Call, len: u32, ) -> Result<RuntimeDispatchInfo<Balance>, ApiError> { ... } fn query_call_fee_details( &self, __runtime_api_at_param__: <Block as BlockT>::Hash, call: Call, len: u32, ) -> Result<FeeDetails<Balance>, ApiError> { ... } fn query_weight_to_fee( &self, __runtime_api_at_param__: <Block as BlockT>::Hash, weight: Weight, ) -> Result<Balance, ApiError> { ... } fn query_length_to_fee( &self, __runtime_api_at_param__: <Block as BlockT>::Hash, length: u32, ) -> Result<Balance, ApiError> { ... } }

Provided Methods§

source

fn query_call_info( &self, __runtime_api_at_param__: <Block as BlockT>::Hash, call: Call, len: u32, ) -> Result<RuntimeDispatchInfo<Balance>, ApiError>

Query information of a dispatch class, weight, and fee of a given encoded Call.

source

fn query_call_fee_details( &self, __runtime_api_at_param__: <Block as BlockT>::Hash, call: Call, len: u32, ) -> Result<FeeDetails<Balance>, ApiError>

Query fee details of a given encoded Call.

source

fn query_weight_to_fee( &self, __runtime_api_at_param__: <Block as BlockT>::Hash, weight: Weight, ) -> Result<Balance, ApiError>

Query the output of the current WeightToFee given some input.

source

fn query_length_to_fee( &self, __runtime_api_at_param__: <Block as BlockT>::Hash, length: u32, ) -> Result<Balance, ApiError>

Query the output of the current LengthToFee given some input.

Trait Implementations§

source§

impl<Block: BlockT, Balance, Call> RuntimeApiInfo for dyn TransactionPaymentCallApi<Block, Balance, Call>

source§

const ID: [u8; 8] = _

The identifier of the runtime api.
source§

const VERSION: u32 = 3u32

The version of the runtime api.

Implementors§