@goat-sdk/plugin-mode-governance
Version:
<div align="center"> <a href="https://github.com/goat-sdk/goat">
11 lines (8 loc) • 357 B
text/typescript
import { PluginBase, Chain } from '@goat-sdk/core';
import { EVMWalletClient } from '@goat-sdk/wallet-evm';
declare class ModeGovernancePlugin extends PluginBase<EVMWalletClient> {
constructor();
supportsChain: (chain: Chain) => boolean;
}
declare const modeGovernance: () => ModeGovernancePlugin;
export { ModeGovernancePlugin, modeGovernance };