@goat-sdk/plugin-rugcheck
Version:
<div align="center"> <a href="https://github.com/goat-sdk/goat">
13 lines (10 loc) • 318 B
TypeScript
import { PluginBase, Chain } from '@goat-sdk/core';
declare class RugCheckPlugin extends PluginBase {
constructor();
supportsChain(chain: Chain): boolean;
}
/**
* Factory function to create a new RugCheck plugin instance
*/
declare function rugcheck(): RugCheckPlugin;
export { RugCheckPlugin, rugcheck };