Ethcode docs
  • Introduction
  • Installation
    • How to install?
  • Configurations
    • Extension Settings
    • Set transaction gas strategy
  • How to Use?
    • Account
    • Initialize Ethcode
    • Compiling contracts
    • Add ABI into Ethcode
    • Deploy contract to network
    • Calling contracts
    • Create rental NFT
  • API Documentation
    • Getting started with extension API
    • wallet
    • contract
    • provider
    • events
    • status
  • Help and support
    • Support
Powered by GitBook
On this page
  1. How to Use?

Create rental NFT

PreviousCalling contractsNextGetting started with extension API

Last updated 2 years ago

Smart-contract standards such as ERC20, ERC721, and ERC1155, which are quite old and popular, are often searched for by developers. but it is difficult to find resources for new standards like rental NFT standard ERC4907. The ERC4907 smart contract can be created using EthCode in less than ten seconds by using EthCode.

  1. Ethcode: Create new ERC4907 contract - command to create rental NFT contract ERC4907 using Ethcode.

2. Name your ERC4907 contract file.

3. Three solidity files will be created in your contracts folder of the working directory.

i. <fileName>.sol

ii. ERC4907.sol

iii. IERC4907.sol

Create new ERC4907 contract command
Name your ERC4907 contact
ERC4907 files