@collabland/staking-contracts
Version:
Staking contracts supported by Collab.Land
19 lines (18 loc) • 548 B
TypeScript
import { BigNumber } from 'ethers';
import { BaseStakingContractAdapter, StakingAsset } from '../staking.js';
export declare class Meltdown03ContractAdapter extends BaseStakingContractAdapter {
/**
* The contract address
*/
contractAddress: string;
/**
* Assets that can be staked to this contract
*/
supportedAssets: StakingAsset[];
/**
* Get staked token ids for the given owner
* @param owner - Owner address
* @returns
*/
getStakedTokenIds(owner: string): Promise<BigNumber[]>;
}