Variable GOVERNANCE_PRECOMPILE_ABIConst

GOVERNANCE_PRECOMPILE_ABI: readonly [
    {
        inputs: readonly [
            { internalType: "uint64"; name: "proposalID"; type: "uint64" },
        ];
        name: "deposit";
        outputs: readonly [
            { internalType: "bool"; name: "success"; type: "bool" },
        ];
        stateMutability: "payable";
        type: "function";
    },
    {
        inputs: readonly [
            { internalType: "uint64"; name: "proposalID"; type: "uint64" },
            { internalType: "int32"; name: "option"; type: "int32" },
        ];
        name: "vote";
        outputs: readonly [
            { internalType: "bool"; name: "success"; type: "bool" },
        ];
        stateMutability: "nonpayable";
        type: "function";
    },
] = ...

The ABI for the Governance precompile contract.