UNPKG

@collabland/staking-contracts

Version:
20 lines (19 loc) 567 B
import { BigNumber } from 'ethers'; import { BaseStakingContractAdapter, StakingAsset } from '../staking.js'; export declare class MeltdownContractAdapter extends BaseStakingContractAdapter { /** * The contract address */ contractAddress: string; chainId: number; /** * 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[]>; }