npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@rentero/rangers-sdk

v0.1.1

Published

Rentero Protocol SDK For Rangers Chain

Downloads

1

Readme

Rangers-SDK

Rentero Protocol SDK For Rangers Chain, allowing application developers easily query renter's NFTs info and use Rentero Protocol.

Installation

yarn add @rentero/rangers-sdk

Usage

SDK supports both Rangers Mainnet and Testnet: NETWORKS.testnet, NETWORKS.mainnet

import { RangersNFT, NETWORKS } from '@rentero/rangers-sdk'

const renterAddress = '0x2595c561b52b95ae4bacb5bc4ad28c810607f88f'
const lenderAddress = '0x576687d59d191a9b20110fb3e126dbf27d8e42e0'
const contractAddress = '0x6f71dd919192eedc50cd40177b5f7de51aa30d3c'
const tokenId =
  '485281096889408167811558965277831548813758404452706290381094039604503'

const rangersNFT = new RangersNFT(NETWORKS.testnet)

const result1 = await rangersNFT.getRentInfoById(contractAddress, tokenId)

const result2 = await rangersNFT.getRentNFTsByAddress(renterAddress, {
  pageSize: 10,
  pageNumber: 3,
})

const result3 = await rangersNFT.getLendNFTsByAddress(lenderAddress, {
  sortBy: 'leaseDay',
  sortWay: 'desc',
})

const result4 = await rangersNFT.getAllNFTsInMarket()

const result5 = await rangersNFT.getOperateRecord(contractAddress, tokenId)

APIs

Rangers SDK mainly divide into two part: RangersNFT and Rangers.

  • RangersNFT class contains query rental NFT info from thegraph data, such as expires time, renting NFTs, lending NFTs, etc.

  • Rangers class contains Rentero Protocol core functions, such as lending、rending、redemption.


1. RangersNFT

Pass in the blockchain network and NFT contracts (Optional), instantiate the object.

  • network: mainnet | testnet
  • targetContracts: query the renting and lending info of specific contracts, otherwise return all info of all contracts in market
new RangersNFT(network: NETWORKS, targetContracts?: string[])

1.1 getRentNFTsByAddress

Query all lease NFTs under the renter address

interface RentListParams {
  pageSize?: number,
  pageNumber?: number,
  sortBy?: 'rentPerDay' | 'leaseDay',
  sortWay?: 'asc' | "desc"
}
const getRentNFTsByAddress: ( renterAddress: string, pageParams?: RentListParams) => Promise<any>

1.2 getRentInfoById

Query the rent NFT info of the specified NFT

const getRentInfoById: (contractAddress: string, nftId: string) => Promise<any>

Example result:

{
  "lease": {
    "daysPerPeriod": "1",
    "deposit": "330000000000000000",
    "erc20Address": "0x55b4c4ee5e4c2db29177cb919572e5127a302963",
    "expires": "1670403336",
    "id": "0x6f71dd919192eedc50cd40177b5f7de51aa30d3c-485281096889408167811558965277831548813758404452706290381094039604503",
    "lender": "0x431b4ca18e269fc7e1f5af49b9f4e2af683f6207",
    "maxRentalDays": "365",
    "minRentalDays": "1",
    "nftAddress": "0x6f71dd919192eedc50cd40177b5f7de51aa30d3c",
    "paidExpires": "1670057736",
    "rentPerDay": "330000000000000000",
    "renter": "0x2595c561b52b95ae4bacb5bc4ad28c810607f88f",
    "start": "1667811336",
    "tokenId": "485281096889408167811558965277831548813758404452706290381094039604503",
    "whitelist": "0x0000000000000000000000000000000000000000"
  }
}

TIP: If the expires time is greater than the current time, it is in the rental state, otherwise it is in the market listing state.

1.3 getLendNFTsByAddress

Query lend NFTs list by lender address

interface LendListParams {
  pageSize?: number,
  pageNumber?: number,
  sortBy?: 'rentPerDay' | 'leaseDay',
  sortWay?: 'asc' | "desc"
}
const getLendNFTsByAddress: (lendAddress: string, pageParams?: LendListParams) => Promise<any>

1.4 getAllNFTsInMarket

Query all NFTs in Market by the passed NFT Collections

interface AllMarketNFTParams {
  pageSize?: number,
  pageNumber?: number,
  sortBy?: 'rentPerDay' | 'leaseDay',
  sortWay?: 'asc' | "desc"
}
const getAllNFTsInMarket(pageParams?: AllMarketNFTParams) => Promise<any>

1.5 getOperateRecord

Query NFT operation records for specific tokenId

const getOperateRecord(contractAddress: string, tokenId: string) => Promise<any>

2 Rangers

Rangers class contains Rentero protocol core functions, user could lend、rent、redeem、return, etc by Rangers instance.

new Rangers(signer: Signer, config: RangersConfig)

Params

  • signer: ethers.Signer
    • sign messages and transactions and send signed transactions to network to execute state changing operations. more details
  • config: {targetChain: NETWORKS, marketMode: 'installment', marketAddress?: string}
    • targetChain: current support chain 'mainnet' | 'testnet'
    • marketMode (optional): current only support installment
    • marketAddress (optional): specify market contract address to override the above configuration
// example used in dapp
const { data: signer } = useSigner()

const rangers = useMemo(() => {
  if (!signer) return

  return new Rangers(signer, {
    targetChain: NETWORKS.testnet,
    marketMode: 'installment',
  })
}, [signer])

full usage example see demo

2.1 lendNFT

lend user NFT to market

Rangers.lendNFT(nftAddress: string, tokenId: string, erc20Address: string, whitelist: string, deposit: BigNumber, dailyPrice: BigNumber, paymentCycle: number, minRentalDays: number, maxRentalDays: number) => Promise<any>

Params

  • nftAddress: string
    • lend NFT Collection address
  • tokenId: string
    • NFT token id
  • erc20Address: string
    • payment token contract address
  • whitelist: string
    • whitelist address, only whitelist user could rent this NFT, only support one whitelist address, if don't need whitelist, please pass zero address: 0x0000000000000000000000000000000000000000
  • deposit: ethers.BigNumber
    • the deposit amount of lend NFT
  • dailyPrice: ethers.BigNumber
    • the daily price of renting NFT
  • paymentCycle: number
    • payment cycle for renting NFT
  • minRentalDays: number
    • min rental days of current NFT (Min suuport value: 1)
  • maxRentalDays: number
    • max rental days of current NFT (Max support value: 65535)
const result = await rangers?.lendNFT(
  NFT_ADDRESS,
  '573',
  '0x304af20ef7a8497aeed4a4a6ba4601988d5b11f6',
  '0x0000000000000000000000000000000000000000',
  ethers.utils.parseUnits('1.2', 18),
  ethers.utils.parseUnits('1.2', 18),
  3,
  1,
  365
)
console.log(result)

2.2 reLendNFT

update lend NFT order info in market. (Can only be called when listing not rented)

Rangers.reLendNFT(nftAddress: string, tokenId: string, erc20Address: string, whitelist: string, deposit: BigNumber, dailyPrice: BigNumber, paymentCycle: number, minRentalDays: number, maxRentalDays: number) => Promise<any>

Params

Same to lendNFT params

const result = await rangers?.reLendNFT(
  NFT_ADDRESS,
  '573',
  '0x304af20ef7a8497aeed4a4a6ba4601988d5b11f6',
  '0x0000000000000000000000000000000000000000',
  ethers.utils.parseUnits('2.4', 18),
  ethers.utils.parseUnits('2.4', 18),
  5,
  1,
  365
)
console.log(result)

2.3 rentNFT

rent specific NFT in market

Rangers.rentNFT(contractAddress: string, tokenId: string, rentDays: number) => Promise<any>

Params

  • contractAddress: string
    • NFT contract address
  • tokenId: string
    • NFT token ID
  • rentDays: number
    • rent days (Min:1 ~ Max:65535)
const NFT_ADDRESS = '0x317caEc5AFd5d43B205683318eC35ed8B063d131'
const TOKEN_ID = '574'
const result = await rangers?.rentNFT(NFT_ADDRESS, TOKEN_ID, 10)
console.log(result)

Tips: before rent NFT successfully, renter should approve pay token to the market contract.

2.4 earlyReturn

renter early return rented NFT

Rangers.earlyReturn(contractAddress: string, tokenId: string) => Promise<any>

Params

  • contractAddress: string
    • NFT contract address
  • tokenId: string
    • NFT token ID
const NFT_ADDRESS = '0x317caEc5AFd5d43B205683318eC35ed8B063d131'
const TOKEN_ID = '575'
const result = await rangers?.earlyReturn(NFT_ADDRESS, TOKEN_ID)
console.log(result)

2.5 redeemNFT

lender early redeem NFT

Rangers.redeemNFT(contractAddress: string, tokenId: string) => Promise<any>

Params

  • contractAddress: string
    • NFT contract address
  • tokenId: string
    • NFT token ID
const NFT_ADDRESS = '0x317caEc5AFd5d43B205683318eC35ed8B063d131'
const TOKEN_ID = '573'
const result = await rangers?.redeemNFT(NFT_ADDRESS, TOKEN_ID)
console.log(result)