@collabland/staking-contracts
Version:
Staking contracts supported by Collab.Land
11 lines (10 loc) • 443 B
TypeScript
import { BigNumber } from 'ethers';
import { BaseStakingContractAdapter, StakingAsset } from '../staking.js';
export declare class DogsUnchainedStakingContractAdapter extends BaseStakingContractAdapter {
contractAddress: string;
infoAddress: string;
supportedAssets: StakingAsset[];
supplies: Record<string, number>;
private getOwnedAssets;
getStakedTokenIds(owner: string, assetType?: string): Promise<BigNumber[]>;
}