DCIPs/assets/eip-4675
David E. Perez Negron R 58b766a923 Adding EIPs website fork with some Gem Updates 2023-04-05 10:02:54 -06:00
..
contracts Adding EIPs website fork with some Gem Updates 2023-04-05 10:02:54 -06:00
src/deploy Adding EIPs website fork with some Gem Updates 2023-04-05 10:02:54 -06:00
test Adding EIPs website fork with some Gem Updates 2023-04-05 10:02:54 -06:00
.gitignore Adding EIPs website fork with some Gem Updates 2023-04-05 10:02:54 -06:00
.solcover.js Adding EIPs website fork with some Gem Updates 2023-04-05 10:02:54 -06:00
README.md Adding EIPs website fork with some Gem Updates 2023-04-05 10:02:54 -06:00
hardhat.config.ts Adding EIPs website fork with some Gem Updates 2023-04-05 10:02:54 -06:00
package.json Adding EIPs website fork with some Gem Updates 2023-04-05 10:02:54 -06:00
tsconfig.json Adding EIPs website fork with some Gem Updates 2023-04-05 10:02:54 -06:00

README.md

Multi-Fractional Non-Fungible Token

Solidity Implementation of Multi-Fractional Non-Fungible Token.

Problem Trying to solve

Before, ERC20 Token contract should be deployed every time when fractionalizing a specific NFT.

To solve this problem, this standard proposes a token standard to cover multiple fractionalized nft in a contract without having to deploy each time.

Issue : https://github.com/ethereum/EIPs/issues/4674

PR : https://github.com/ethereum/EIPs/pull/4675

How to use

contracts/
        helper/
        interface/
        math/
        MFNFT.sol
        NFT.sol
        ERC20Token.sol

Contracts

MFNFT.sol : Multi-Fractional Non-Fungible Token Contract

NFT.sol : Non-Fungible Token Contract

ERC20Token.sol : Sample ERC-20 Token Contract

helper/Verifier.sol : Contract that verifies the ownership of NFT before fractionalization

math/SafeMath.sol : Openzeppelin SafeMath Library

interface/IERC20.sol : ERC-20 Token Interface

interface/IERC721.sol : ERC-721 Token Interface

interface/IMFNFT : MFNFT Token Interface

Install & Test

Installation

npm install

Test

npx hardhat test

Coverage

npx hardhat coverage