OPNet
    Preparing search index...

    Interface IStackingContract

    This interface represents the WBTC contract. IWBTCContract

    Contracts

    interface IStackingContract {
        claim(): Promise<
            CallResult<{}, OPNetEvent<ContractDecodedObjectResult>[]>,
        >;
        rewardPool(): Promise<
            CallResult<
                { reward: bigint },
                OPNetEvent<ContractDecodedObjectResult>[],
            >,
        >;
        stake(
            amount: bigint,
        ): Promise<CallResult<{}, OPNetEvent<ContractDecodedObjectResult>[]>>;
        stakedAmount(
            address: Address,
        ): Promise<
            CallResult<
                { amount: bigint },
                OPNetEvent<ContractDecodedObjectResult>[],
            >,
        >;
        stakedReward(
            address: Address,
        ): Promise<
            CallResult<
                { amount: bigint },
                OPNetEvent<ContractDecodedObjectResult>[],
            >,
        >;
        totalStaked(): Promise<
            CallResult<
                { total: bigint },
                OPNetEvent<ContractDecodedObjectResult>[],
            >,
        >;
        unstake(): Promise<
            CallResult<{}, OPNetEvent<ContractDecodedObjectResult>[]>,
        >;
    }
    Index

    Methods