In this chapter, we will build ERC-1404—a Simple Restricted Token Standard (SRTS). We will utilize extendable standard code provided by https://erc1404.org/ to start our security token development based on the ERC-1404 standard. Here are the steps to start our security token development:
- Run the following command to download the project template:
git clone https://github.com/PacktPublishing/Security-Tokens-and-Stablecoins-Quick-Start-Guide.git
- Navigate to the simple-restricted-token project folder; you should see the following prebuild project structure:
- Install node libraries on the project root folder:
npm install
This will install project node dependencies.
- Update the truffle.js file configuration.
Since our Ganache runs on port 8545, we need to update the truffle.js file configuration to connect to the Ganache server...