UNPKG

@renft/sdk

Version:

**ReNFT** is a multi-chain highly gas-optimised NFT rental protocol and platform that can be whitelabel integrated into any project to enable collateral-free in-house renting, lending, and reward share (scholarship automation).

9 lines (8 loc) 760 B
import { Contract } from '@ethersproject/contracts'; import { EVMNetworkType } from '../../../core'; import { WhoopiV0LendFunction, WhoopiV0PayFunction, WhoopiV0RentFunction, WhoopiV0StopLendingFunction, WhoopiV0StopRentFunction } from './types'; export declare const createWhoopiV0LendThunk: (contract: Contract, network: EVMNetworkType) => WhoopiV0LendFunction; export declare const createWhoopiV0RentThunk: (contract: Contract) => WhoopiV0RentFunction; export declare const createWhoopiV0StopRentThunk: (contract: Contract) => WhoopiV0StopRentFunction; export declare const createWhoopiV0StopLendingThunk: (contract: Contract) => WhoopiV0StopLendingFunction; export declare const createWhoopiV0PayThunk: (contract: Contract) => WhoopiV0PayFunction;