eip-2135

Work directory for EIP 2135

Stars
3

EIP-2135 Consumable Interface Working Repository

Development

Development requires truffle

Setup

cd impl
npm i

Also install a local Ethereum testnet provider. We recommend Ganache.

Run Tests

cd impl
npx truffle test

You will need to start an instance of Ethereum testnet. Ganache provides it with a default endpoint, port and network Id. You will need to make sure it matches the truffle.config.js

{
    test: {
      host: "127.0.0.1",     // Localhost (default: none)
      port: 7545,            // Standard Ethereum port (default: none)
      network_id: "5777",       // Any network (default: none)
    }
}