Interface IStackingContract

This interface represents the WBTC contract. IWBTCContract

Contracts

interface IStackingContract {
    claim(): Promise<BaseContractProperties>;
    rewardPool(): Promise<BaseContractProperties>;
    stake(amount: bigint): Promise<BaseContractProperties>;
    stakedAmount(address: string): Promise<BaseContractProperties>;
    stakedReward(address: string): Promise<BaseContractProperties>;
    totalStaked(): Promise<BaseContractProperties>;
    unstake(): Promise<BaseContractProperties>;
}

Methods