npm i
cd truffle
npm i
npx ganache-cli
npx truffle migrate
npm i
npx ganache-cli
npx truffle migrate
npx truffle console
let t = await NFT.deployed()
t.mint()
let m = await Market.deployed()
t.approve(m.address, <id>)
m.listToken(t.address, <id>, <price>)
m.getListing(<id>)