MetaGovernor https://docs.hazbase.com/en/smart-contracts/contracts/meta-governor/ SMART CONTRACTS ← Contract catalog MetaGovernor Finalize governance decisions across multiple voting chambers. Overview Contract catalog Choose by use case Permissions & operations Governance MetaGovernor .sol @hazbase/kit @ 0.9.0 Role and use Use when economic stake and another participant voting system need separate chambers. Integration considerations Configure chamber connections and permissions, then aggregate results with finalize. Align aggregation with proposal rules. Key SDK operations These operations are exposed by MetaGovernorHelper in @hazbase/kit@0.9.0. The signatures below are type definitions; see the SDK reference for parameter structures and the complete interface. typescript import { MetaGovernorHelper } from '@hazbase/kit' ; propose typescript 1 2 3 4 5 6 7 8 9 async propose ( p : ProposalTypeKey | number , targets : readonly Address [ ] , values : readonly ( bigint | number ) [ ] , calldatas : readonly ethers . BytesLike [ ] , desc : string , startTs : bigint | number , endTs : bigint | number ) : Promise < bigint > getEconVotes typescript async getEconVotes ( account : Address , timepoint : bigint | number ) : Promise < bigint > getSocVotes typescript async getSocVotes ( account : Address , timepoint : bigint | number ) : Promise < bigint > finalize typescript async finalize ( id : bigint | number ) : Promise < TransactionReceipt > View parameters, return types and all methods Related contracts GenericGovernor Connect proposals, votes and execution in a governance workflow. TimelockController Schedule approved operations with an execution delay. Put it into practice Community & governance See the data model, processing sequence and SDK code for an application-level implementation. Read the implementation pattern Specification and source The Solidity source is pinned to the revision below. Match it with the SDK version and your network’s implementation address and ABI. governor-meta/contracts/MetaGovernor.sol Source revision : b53a5b5 ← Back to the contract catalog Permissions & operations