UNPKG

atomicals-js

Version:
165 lines (164 loc) 7.27 kB
"use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { return m[k]; } }; } Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { Object.defineProperty(o, "default", { enumerable: true, value: v }); }) : function(o, v) { o["default"] = v; }); var __importStar = (this && this.__importStar) || function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); __setModuleDefault(result, mod); return result; }; var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; Object.defineProperty(exports, "__esModule", { value: true }); exports.SetContainerDmintInteractiveCommand = exports.validateDmint = void 0; const ecc = __importStar(require("tiny-secp256k1")); const bitcoin = require('bitcoinjs-lib'); bitcoin.initEccLib(ecc); const bitcoinjs_lib_1 = require("bitcoinjs-lib"); const command_helpers_1 = require("./command-helpers"); const atomical_format_helpers_1 = require("../utils/atomical-format-helpers"); const atomical_operation_builder_1 = require("../utils/atomical-operation-builder"); const address_helpers_1 = require("../utils/address-helpers"); const tinysecp = require('tiny-secp256k1'); (0, bitcoinjs_lib_1.initEccLib)(tinysecp); function validateDmint(obj) { if (!obj) { throw `Invalid manifest.`; } const dmint = obj.dmint; if (!dmint) { throw `Invalid manifest: No 'dmint' field.`; } const items = dmint.items; if (!items) { throw `Invalid items count: ${items}.`; } for (const { o, p, bitworkc, bitworkr } of dmint.rules) { try { new RegExp(p); } catch (e) { throw `Invalid rule pattern: ${p}.\n${e}`; } if (o === undefined && bitworkc === undefined && bitworkr === undefined) { throw `Invalid rule (${p}): No fields specified.`; } if (o !== undefined) { if (Object.keys(o).length === 0) { throw `Invalid rule (${p}) output: No script specified.`; } for (const entry of Object.entries(o)) { const script = entry[0]; try { (0, address_helpers_1.detectScriptToAddressType)(script); } catch (e) { throw `Invalid rule (${p}) output script [${script}]: ${e}`; } const { v, id } = entry[1]; if (typeof v !== 'number' || !v || v <= 0) { throw `Invalid rule (${p}) output value: Invalid amount (${v}).`; } if (id !== undefined && !(0, atomical_format_helpers_1.isAtomicalId)(id)) { throw `Invalid rule (${p}) output id: Invalid Atomical ID (${id}).`; } } } if (bitworkc !== undefined && !(0, atomical_format_helpers_1.isValidBitworkString)(bitworkc)) { throw `Invalid rule (${p}) bitworkc: Invalid bitwork string (${bitworkc}).`; } if (bitworkr !== undefined && !(0, atomical_format_helpers_1.isValidBitworkString)(bitworkr)) { throw `Invalid rule (${p}) bitworkr: Invalid bitwork string (${bitworkr}).`; } } const mh = dmint.mint_height; if (mh === 0) { return true; } if (mh !== undefined) { if (isNaN(mh)) { throw `Invalid mint height: NaN.`; } if (mh < 0 || mh > 10000000) { throw `Invalid mint height: Should between 0 and 10000000.`; } return true; } return false; } exports.validateDmint = validateDmint; class SetContainerDmintInteractiveCommand { constructor(electrumApi, options, containerName, filename, owner, funding) { this.electrumApi = electrumApi; this.options = options; this.containerName = containerName; this.filename = filename; this.owner = owner; this.funding = funding; } run() { return __awaiter(this, void 0, void 0, function* () { (0, command_helpers_1.logBanner)(`Set Container Data Interactive`); // Attach any default data let filesData = yield (0, command_helpers_1.readJsonFileAsCompleteDataObjectEncodeAtomicalIds)(this.filename, false); if (!validateDmint(filesData)) { throw new Error('Invalid dmint'); } const { atomicalInfo, locationInfo, inputUtxoPartial } = yield (0, command_helpers_1.getAndCheckAtomicalInfo)(this.electrumApi, this.containerName, this.owner.address, 'NFT', 'container'); const atomicalBuilder = new atomical_operation_builder_1.AtomicalOperationBuilder({ electrumApi: this.electrumApi, rbf: this.options.rbf, satsbyte: this.options.satsbyte, address: this.owner.address, disableMiningChalk: this.options.disableMiningChalk, opType: 'mod', nftOptions: { satsoutput: this.options.satsoutput }, meta: this.options.meta, ctx: this.options.ctx, init: this.options.init, }); yield atomicalBuilder.setData(filesData); // Attach any requested bitwork if (this.options.bitworkc) { atomicalBuilder.setBitworkCommit(this.options.bitworkc); } // Add the atomical to update atomicalBuilder.addInputUtxo(inputUtxoPartial, this.owner.WIF); // The receiver output atomicalBuilder.addOutput({ address: this.owner.address, value: this.options.satsoutput || 1000 // todo: determine how to auto detect the total input and set it to that }); const result = yield atomicalBuilder.start(this.funding.WIF); return { success: true, data: result }; }); } } exports.SetContainerDmintInteractiveCommand = SetContainerDmintInteractiveCommand;