UNPKG

@collabland/staking-contracts

Version:
25 lines (24 loc) 668 B
import { BigNumber } from 'ethers'; import { BaseStakingContractAdapter, StakingAsset } from '../staking.js'; export declare class LuckyNFTStakingContractAdapter extends BaseStakingContractAdapter { private contract; /** * The contract address */ contractAddress: string; /** * The chain the assets exist on */ chainId: number; /** * Assets that can be staked to this contract */ supportedAssets: StakingAsset[]; constructor(); /** * Get staked token ids for the given owner * @param owner - Owner address * @returns */ getStakedTokenIds(owner: string): Promise<BigNumber[]>; }