/cosmos/gov/v1beta1/proposals

Proposals queries all proposals based on given status.

Parameters:

None

Example:

// Request
curl -X GET -H 'Content-Type: application/json' https://froopyland.blockpi.network/lcd/v1/<your-api-key>/cosmos/gov/v1beta1/proposalsnt/v1beta1/blocks/latest

// Result
{
    "pagination": {
        "next_key": null,
        "total": "3"
    },
    "proposals": [
        {
            "content": {
                "@type": "/cosmos.params.v1beta1.ParameterChangeProposal",
                "changes": [
                    {
                        "key": "EnableCall",
                        "subspace": "evm",
                        "value": "true"
                    }
                ],
                "description": "This proposal is for setting the EVM module's enable_call toggle to true enabling evm.Call.",
                "title": "Param update: Set EVM Call to true"
            },
            "deposit_end_time": "2023-09-01T12:08:01.600913105Z",
            "final_tally_result": {
                "abstain": "0",
                "no": "0",
                "no_with_veto": "0",
                "yes": "2902646357780117254332533"
            },
            "proposal_id": "1",
            "status": "PROPOSAL_STATUS_PASSED",
            "submit_time": "2023-08-30T12:08:01.600913105Z",
            "total_deposit": [
                {
                    "amount": "100101000000000000000000",
                    "denom": "udym"
                }
            ],
            "voting_end_time": "2023-09-01T13:03:08.545822437Z",
            "voting_start_time": "2023-08-30T13:03:08.545822437Z"
        },
        {
            "content": {
                "@type": "/cosmos.params.v1beta1.ParameterChangeProposal",
                "changes": [
                    {
                        "key": "BlockParams",
                        "subspace": "baseapp",
                        "value": "{\n                \"max_gas\": \"40000000\"\n            }"
                    }
                ],
                "description": "Setting max_gas in the consensus_params",
                "title": "Param update: max gas to support EVM txs"
            },
            "deposit_end_time": "2023-09-06T12:55:02.511100558Z",
            "final_tally_result": {
                "abstain": "0",
                "no": "0",
                "no_with_veto": "0",
                "yes": "3202196359083048213937793"
            },
            "proposal_id": "2",
            "status": "PROPOSAL_STATUS_PASSED",
            "submit_time": "2023-09-04T12:55:02.511100558Z",
            "total_deposit": [
                {
                    "amount": "100000000000000000000000",
                    "denom": "udym"
                }
            ],
            "voting_end_time": "2023-09-06T12:55:02.511100558Z",
            "voting_start_time": "2023-09-04T12:55:02.511100558Z"
        },
        {
            "content": {
                "@type": "/cosmos.upgrade.v1beta1.SoftwareUpgradeProposal",
                "description": "Upgrade the hub to v2",
                "plan": {
                    "height": "1651535",
                    "info": "",
                    "name": "v2",
                    "time": "0001-01-01T00:00:00Z",
                    "upgraded_client_state": null
                },
                "title": "Upgrade to v2"
            },
            "deposit_end_time": "2023-12-09T14:58:46.983792122Z",
            "final_tally_result": {
                "abstain": "0",
                "no": "0",
                "no_with_veto": "0",
                "yes": "9167466245784903022906958"
            },
            "proposal_id": "3",
            "status": "PROPOSAL_STATUS_PASSED",
            "submit_time": "2023-12-07T14:58:46.983792122Z",
            "total_deposit": [
                {
                    "amount": "999100000000000000000000",
                    "denom": "udym"
                }
            ],
            "voting_end_time": "2023-12-09T15:08:38.504419906Z",
            "voting_start_time": "2023-12-07T15:08:38.504419906Z"
        }
    ]
}

Last updated