Files
dungeons-and-dragons-nft/scripts/get-character.js
PatrickAlphaC 500db1656a updated readme
2020-10-28 00:14:24 -04:00

10 lines
326 B
JavaScript

const DungeonsAndDragons = artifacts.require('DungeonsAndDragonsCharacter')
module.exports = async callback => {
const dnd = await DungeonsAndDragons.deployed()
console.log('Let\'s get the overview of your character')
const overview = await dnd.characters(0)
console.log(overview)
callback(overview.tx)
}