@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).
16 lines (14 loc) • 502 B
text/typescript
import abi from '../../abi/resolver.v1';
import { NETWORK_POLYGON_MAINNET } from '../consts';
import { Deployment, RenftContractType, ResolverVersion } from '../types';
export const DEPLOYMENT_RESOLVER_POLYGON_MAINNET_V1: Deployment<
RenftContractType.RESOLVER,
ResolverVersion.V1
> = {
abi,
contractAddress: '0x3ddC85bB768A11B0125f4ee71CfeA54e54653366',
contractType: RenftContractType.RESOLVER,
network: NETWORK_POLYGON_MAINNET,
startBlock: 36825213,
version: ResolverVersion.V1,
};