_getProposalDepositsByIdAndDepositor

Queries single deposit information based proposalID, depositAddr.

Parameters

  • proposal_id: STRING - The unique id of the proposal.
  • depositor: STRING - The deposit addresses from the proposals.
curl "https://cosmos-mainnet-archive.allthatnode.com:1317/cosmos/gov/v1beta1/proposals/804/deposits/cosmos196ax4vc0lwpxndu9dyhvca7jhxp70rmcfhxsrt" \
-H 'x-allthatnode-api-key: 8U3JLUhzIDg3GShvy9hkCCSYkLGc11kj'

Returns

  • OBJECT - Deposit information.
{
  "deposit": {
    "proposal_id": "string",
    "depositor": "string",
    "amount": [
      {
        "denom": "string",
        "amount": "string"
      }
    ]
  }
}

Try Yourself

Language
Click Try It! to start a request and see the response here!