Socket
Socket
Sign inDemoInstall

@hyperionbt/helios

Package Overview
Dependencies
0
Maintainers
2
Versions
160
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.15.9 to 0.15.10

2

package.json
{
"name": "@hyperionbt/helios",
"type": "module",
"version": "0.15.9",
"version": "0.15.10",
"description": "Helios is a Domain Specific Language that compiles to Plutus-Core (i.e. Cardano on-chain validator scripts). Helios is a non-Haskell alternative to Plutus. With this library you can compile Helios scripts and build Cardano transactions, all you need to build 100% client-side dApps for Cardano.",

@@ -6,0 +6,0 @@ "main": "helios.js",

@@ -902,3 +902,3 @@ //@ts-check

utxos.push(new TxInput(
new TxOutputId({txId: this.id(), utxoId: 0}),
new TxOutputId(this.id(), 0),
new TxOutput(

@@ -926,3 +926,3 @@ this.#address,

return new TxInput(
new TxOutputId({txId: this.id(), utxoId: 0}),
new TxOutputId(this.id(), 0),
new TxOutput(

@@ -984,3 +984,3 @@ this.#address,

utxos.push(new TxInput(
new TxOutputId({txId: this.id(), utxoId: utxoId}),
new TxOutputId(this.id(), utxoId),
txOutput

@@ -987,0 +987,0 @@ ));

@@ -326,3 +326,3 @@ //@ts-check

return new TxInput(
new TxOutputId({txId: TxId.fromHex(obj.tx_hash), utxoId: BigInt(obj.output_index)}),
new TxOutputId(TxId.fromHex(obj.tx_hash), obj.output_index),
new TxOutput(

@@ -329,0 +329,0 @@ Address.fromBech32(obj.address),

@@ -265,3 +265,3 @@ //@ts-check

if (this.#getUtxosFallback) {
console.error("falling back to retrieving UTxOs through query layer");
console.log("falling back to retrieving UTxOs through query layer");
return this.#getUtxosFallback(await this.#wallet.usedAddresses);

@@ -268,0 +268,0 @@ } else {

@@ -14,3 +14,3 @@ {

"name": "@hyperionbt/helios",
"version": "0.15.9",
"version": "0.15.10",
"license": "BSD-3-Clause",

@@ -17,0 +17,0 @@ "devDependencies": {

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc