This is a complete implementation of the ERC-223 fungible token standard for the Ethereum blockchain. This is an open source project build with Truffle framework.
The purpose of this project is the construction of a crypto token that will be used within the ecosystem of applications created within the European project Bloomen.
Since this is a Truffle project, you will find all tokens in contracts/
directory.
- NodeJS 9.0+ recommended.
- Windows, Linux or Mac OS X.
This is an NPM module for Truffle framework. In order to use it as a dependency in your Javascript project, you must install it through the npm
command:
$ npm install
In order to facilitate the use of the token, an npm package has been created that must be incorporated into the project. This package contains the .json files with references to the contracts deployed on the Alastria Blockchain Telsius network.
$ npm install bloomen-token --save
After this it will be necessary to adapt the application code to obtain the abi and the address of the smart contract that will allow us to interact with it.
$ cp .env.example .env
-- fill .env file with your configuration
Let's compile the contract:
$ npm start development
You can se a new instance of the Bloomen Token on the build folder.
See LICENSE for details.