Skip to content

damononliu/evt-lib

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

46 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

EVT-LIB

Full spec: https://neps.newtonproject.org/neps/nep-53/

Library for EVT development.

  • Standard implementation of EVT
  • Example contracts for using EVT
  • Factory for EVT industry application

Overview

Installation

$ npm install @newton-protocol/evt-lib

Usage

Use evt-base

  1. EVT
// SPDX-License-Identifier: GPLv3
pragma solidity ^0.8.4;

import "@newton-protocol/evt-lib/contracts/evt-base/EVT.sol";

contract MyToken is EVT {
    constructor() EVT("MyToken", "MT0") {
    }
}
  1. EVTA
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.4;

import "@newton-protocol/evt-lib/contracts/evt-base/EVTA.sol";

contract MyEVTA is EVTA {
    constructor() EVTA("SimpleEVTA", "EVTA") {}

    function safeMint(address to, uint256 quantity) public {
        _safeMint(to, quantity);
    }
}

Extensions

  • EVTGlobalVariable
import "@newton-protocol/evt-lib/contracts/evt-base/extensions/EVTGlobalVariable.sol";

Run evt-examples

  1. Install dependencies

    # you shoule install node. see https://nodejs.org/en/
    npm install
  2. deploy & compile contract with hardhat

    # compile contracts
    npx hardhat compile
    
    # run local network, get test address
    npx hardhat node
    
    # deploy contract
    npx hardhat run --network localhost scripts/deploy-hello-evt.ts
    # you can get Transaction hash, Contract address, 
    # From address, Gas used etc. in your terminal console
    
    # you can also get accounts by run tasks
    npx hardhat run tasks/accounts.ts
  3. run test script for helloEVT.sol

    # run test script
    npx hardhat test test/test-hello-evt.ts

License

EVT is released under the GPLv3 License.

About

Library for EVT development

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Languages

  • Solidity 92.9%
  • TypeScript 7.1%