New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@unielon/coin-dogecoin

Package Overview
Dependencies
Maintainers
0
Versions
46
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@unielon/coin-dogecoin - npm Package Compare versions

Comparing version 1.0.1 to 1.0.2

1

dist/inscribedrc.d.ts

@@ -8,2 +8,3 @@ /// <reference types="node" />

revealAddr: string;
receiveAddr?: string;
repeat: number;

@@ -10,0 +11,0 @@ };

@@ -87,2 +87,3 @@ "use strict";

let body = JSON.parse(inscriptionDataList[i].body);
let receiveAddr = inscriptionDataList[i].receiveAddr || '';
let repeats = 1;

@@ -92,3 +93,12 @@ if (body.p == drc20P && opMint == body.op) {

}
tx.addOutput(inscriptionTxCtxData.revealPkScript, defaultRevealOutValue * repeats);
if (receiveAddr) {
const receiveAddrList = receiveAddr.split(',');
receiveAddrList.map(item => {
const changePkScript = bitcoin.address.toOutputScript(item, network);
tx.addOutput(changePkScript, defaultRevealOutValue * repeats);
});
}
else {
tx.addOutput(inscriptionTxCtxData.revealPkScript, defaultRevealOutValue * repeats);
}
const emptySignature = Buffer.alloc(71);

@@ -95,0 +105,0 @@ const inscriptionBuilder = [];

2

package.json
{
"name": "@unielon/coin-dogecoin",
"version": "1.0.1",
"version": "1.0.2",
"description": "",

@@ -5,0 +5,0 @@ "main": "./dist/index.js",

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc