@helios-lang/ledger-conway
Advanced tools
Comparing version 0.2.7 to 0.2.8
{ | ||
"name": "@helios-lang/ledger-conway", | ||
"version": "0.2.7", | ||
"version": "0.2.8", | ||
"description": "Cardano ledger types for Conway era", | ||
@@ -37,10 +37,10 @@ "type": "module", | ||
"dependencies": { | ||
"@helios-lang/cbor": "^0.1.21", | ||
"@helios-lang/codec-utils": "^0.1.35", | ||
"@helios-lang/crypto": "^0.1.14", | ||
"@helios-lang/ledger-alonzo": "^0.1.5", | ||
"@helios-lang/ledger-babbage": "^0.3.8", | ||
"@helios-lang/ledger-shelley": "^0.1.4", | ||
"@helios-lang/type-utils": "^0.1.23", | ||
"@helios-lang/uplc": "^0.4.13" | ||
"@helios-lang/cbor": "^0.2.1", | ||
"@helios-lang/codec-utils": "^0.2.1", | ||
"@helios-lang/crypto": "^0.1.17", | ||
"@helios-lang/ledger-alonzo": "^0.1.6", | ||
"@helios-lang/ledger-babbage": "^0.3.9", | ||
"@helios-lang/ledger-shelley": "^0.1.5", | ||
"@helios-lang/type-utils": "^0.1.25", | ||
"@helios-lang/uplc": "^0.6.1" | ||
}, | ||
@@ -47,0 +47,0 @@ "scripts": { |
@@ -5,3 +5,3 @@ import { Tx as BabbageTx, TxInput } from "@helios-lang/ledger-babbage" | ||
/** | ||
* @typedef {import("@helios-lang/codec-utils").ByteArrayLike} ByteArrayLike | ||
* @typedef {import("@helios-lang/codec-utils").BytesLike} BytesLike | ||
* @typedef {import("@helios-lang/uplc").UplcData} UplcData | ||
@@ -14,3 +14,3 @@ * @typedef {import("../params/index.js").NetworkParams} NetworkParams | ||
* Deserialize a CBOR encoded Cardano transaction (input is either an array of bytes, or a hex string). | ||
* @param {ByteArrayLike} bytes | ||
* @param {BytesLike} bytes | ||
* @returns {Tx} | ||
@@ -17,0 +17,0 @@ */ |
@@ -8,3 +8,3 @@ /** | ||
/** | ||
* @typedef {import("@helios-lang/codec-utils").ByteArrayLike} ByteArrayLike | ||
* @typedef {import("@helios-lang/codec-utils").BytesLike} BytesLike | ||
* @typedef {import("@helios-lang/uplc").UplcData} UplcData | ||
@@ -16,6 +16,6 @@ * @typedef {import("../params/index.js").NetworkParams} NetworkParams | ||
* Deserialize a CBOR encoded Cardano transaction (input is either an array of bytes, or a hex string). | ||
* @param {ByteArrayLike} bytes | ||
* @param {BytesLike} bytes | ||
* @returns {Tx} | ||
*/ | ||
static fromCbor(bytes: ByteArrayLike): Tx; | ||
static fromCbor(bytes: BytesLike): Tx; | ||
/** | ||
@@ -28,3 +28,3 @@ * @override | ||
} | ||
export type ByteArrayLike = import("@helios-lang/codec-utils").ByteArrayLike; | ||
export type BytesLike = import("@helios-lang/codec-utils").BytesLike; | ||
export type UplcData = import("@helios-lang/uplc").UplcData; | ||
@@ -31,0 +31,0 @@ export type NetworkParams = import("../params/index.js").NetworkParams; |
Sorry, the diff of this file is not supported yet
46295
- Removed@helios-lang/cbor@0.1.22(transitive)
- Removed@helios-lang/codec-utils@0.1.36(transitive)
- Removed@helios-lang/compiler-utils@0.1.63(transitive)
- Removed@helios-lang/uplc@0.4.16(transitive)
Updated@helios-lang/cbor@^0.2.1
Updated@helios-lang/crypto@^0.1.17
Updated@helios-lang/uplc@^0.6.1