UNPKG

@collabland/staking-contracts

Version:
14 lines (13 loc) 461 B
import { BigNumber } from 'ethers'; import { BaseStakingContractAdapter, StakingAsset } from '../staking.js'; export declare class ReplicantXStakingContractAdapter extends BaseStakingContractAdapter { /** * The contract address */ contractAddress: string; /** * Assets that can be staked to this contract */ supportedAssets: StakingAsset[]; getStakedTokenBalance(owner: string, assetName?: string): Promise<BigNumber>; }