Aptos · Schema

DelegatedVoterLimitsRequest

A higher-limits request backed by a stake pool the fee payer is the delegated voter of.

BlockchainWeb3MoveLayer 1CryptocurrencyNFTSmart ContractsDeFiTransactionsAccountsGraphQLgRPC

Properties

Name Type Description
pool_address object
multipliers object
View JSON Schema on GitHub

JSON Schema

DelegatedVoterLimitsRequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api-evangelist.github.io/aptos/json-schema/DelegatedVoterLimitsRequest.json",
  "title": "DelegatedVoterLimitsRequest",
  "type": "object",
  "description": "A higher-limits request backed by a stake pool the fee payer is the\ndelegated voter of.",
  "required": [
    "pool_address",
    "multipliers"
  ],
  "properties": {
    "pool_address": {
      "$ref": "#/components/schemas/Address"
    },
    "multipliers": {
      "$ref": "#/components/schemas/RequestedMultipliers"
    }
  }
}