@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) • 509 B
text/typescript
import abi from '../../abi/sylvester.v1';
import { NETWORK_POLYGON_MAINNET } from '../consts';
import { Deployment, RenftContractType, SylvesterVersion } from '../types';
export const DEPLOYMENT_SYLVESTER_POLYGON_MAINNET_V1: Deployment<
RenftContractType.SYLVESTER,
SylvesterVersion.V1
> = {
abi,
contractAddress: '0x4e52B73Aa28b7FF84d88eA3A90C0668f46043450',
contractType: RenftContractType.SYLVESTER,
network: NETWORK_POLYGON_MAINNET,
startBlock: 36825974,
version: SylvesterVersion.V1,
};