gaadroo
Version:
NFP-minting protocol
13 lines (11 loc) • 790 B
JavaScript
import {btcAddress, ltcAddress, dogeAddress} from "./src/address.js";
console.log(btcAddress);
console.log(ltcAddress);
console.log(dogeAddress);
import {artist,product,piece} from "./src/minting.js";
// const txHexArtist = artist("debitAddress", "debitPassword", "artistAddress", "name", "url", "desc", "founder", "LTC");
// const txHexProduct = product("artistAddress", "artistPassword", "productAddress", "item", "size", "weight", "usage", "desc", "color1", "c2", "c3", "c4", "material1", "m2", "m3", "m4", "supply", "LTC");
// const txHexPiece = piece("productAddress", "productPassword", "pieceAddress", "artistRegTX", "productRegTX", "unixStartTime", "unixLifeTime", "minCost", "itemNumber", "LTC");
// txHexArtist.then(function(result) {
// console.log(result)
// })