This repo contains all the smart contracts related to the Stone Real Estate Tokenization plateform.
Open your terminal and run :
$ npm irun :
$ truffle developOpen another terminal and run :
$ truffle testTo install Ganache globally, run :
$ npm install ganache --globalOnce installed globally, you can start ganache right from your command line :
ganacheThen open the truffle-config.js file, look for :
development: {
host: "127.0.0.1", // Localhost (default: none)
port: 9545, // 9545 for truffle develop // 8545 Standard Ethereum port (default: none)
network_id: "*", // Any network (default: none)
},replace with :
development: {
host: "127.0.0.1", // Localhost (default: none)
port: 8545, // 9545 for truffle develop // 8545 Standard Ethereum port (default: none)
network_id: "*", // Any network (default: none)
},Open another terminal and run :
$ truffle test