post https://api.uniblock.dev/uni/v1/json-rpc#109
Returns the getTxFee info of the node by chain id.
Description
Get the fees of the network.
Signature:
info.getTxFee() ->
{
txFee: uint64,
createAssetTxFee: uint64,
createSubnetTxFee: uint64,
transformSubnetTxFee: uint64,
createBlockchainTxFee: uint64,
addPrimaryNetworkValidatorFee: uint64,
addPrimaryNetworkDelegatorFee: uint64,
addSubnetValidatorFee: uint64,
addSubnetDelegatorFee: uint64
}
txFee
is the default fee for making transactions.createAssetTxFee
is the fee for creating a new asset.createSubnetTxFee
is the fee for creating a new Subnet.transformSubnetTxFee
is the fee for converting a PoA Subnet into a PoS Subnet.createBlockchainTxFee
is the fee for creating a new blockchain.addPrimaryNetworkValidatorFee
is the fee for adding a new primary network validator.addPrimaryNetworkDelegatorFee
is the fee for adding a new primary network delegator.addSubnetValidatorFee
is the fee for adding a new Subnet validator.addSubnetDelegatorFee
is the fee for adding a new Subnet delegator.
All fees are denominated in nAVAX.