Development requires truffle
cd impl
npm i
Also install a local Ethereum testnet provider. We recommend Ganache.
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)
}
}