@helios-lang/ledger
Advanced tools
Comparing version 0.1.9 to 0.1.10
@@ -6,2 +6,3 @@ { | ||
"declarationMap": true, | ||
"declarationDir": "./types", | ||
"skipLibCheck": true, | ||
@@ -8,0 +9,0 @@ "noImplicitThis": true, |
{ | ||
"name": "@helios-lang/ledger", | ||
"version": "0.1.9", | ||
"version": "0.1.10", | ||
"description": "Ledger types (eg. for building transactions)", | ||
"main": "src/index.js", | ||
"types": "types/index.d.ts", | ||
"type": "module", | ||
@@ -12,3 +13,2 @@ "scripts": { | ||
"prebuild": "npm run clean && npx tsc -p jsconfig.json --noEmit false --emitDeclarationOnly", | ||
"prepare": "npm run build", | ||
"prettify": "npx prettier . --write", | ||
@@ -28,7 +28,7 @@ "test": "npm run test:pretty && npm run test:types && npm run test:suite", | ||
"dependencies": { | ||
"@helios-lang/cbor": "^0.1.13", | ||
"@helios-lang/codec-utils": "^0.1.24", | ||
"@helios-lang/cbor": "^0.1.15", | ||
"@helios-lang/codec-utils": "^0.1.26", | ||
"@helios-lang/crypto": "^0.1.2", | ||
"@helios-lang/type-utils": "^0.1.5", | ||
"@helios-lang/uplc": "^0.1.12" | ||
"@helios-lang/type-utils": "^0.1.6", | ||
"@helios-lang/uplc": "^0.1.21" | ||
}, | ||
@@ -35,0 +35,0 @@ "prettier": { |
@@ -1,2 +0,26 @@ | ||
# tx | ||
Tx building classes and functions | ||
# Ledger | ||
Types and classes needed for the mainnet ledger: | ||
* Address | ||
* AssetClass | ||
* Block | ||
* DCert | ||
* Hashes | ||
* PoolParameters | ||
* PoolRelay | ||
* TimeRange | ||
* Tx | ||
* TxInput | ||
* TxOutput | ||
* Value | ||
* etc. | ||
Eras: | ||
1. Byron | ||
2. Shelley | ||
3. Allegra | ||
4. Mary | ||
5. Alonzo | ||
6. Babbage | ||
7. Conway |
@@ -1,5 +0,7 @@ | ||
export * from "./hashes/index.js" | ||
export * from "./money/index.js" | ||
export * from "./pool/index.js" | ||
export * from "./time/index.js" | ||
export * from "./tx/index.js" | ||
export * as byron from "./byron/index.js" | ||
export * as shelley from "./shelley/index.js" | ||
export * as allegra from "./allegra/index.js" | ||
export * as mary from "./mary/index.js" | ||
export * as alonzo from "./alonzo/index.js" | ||
export * from "./babbage/index.js" | ||
export * as conway from "./conway/index.js" |
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
AI-detected potential code anomaly
Supply chain riskAI has identified unusual behaviors that may pose a security risk.
Found 1 instance in 1 package
606773
316
17871
27
2
1
Updated@helios-lang/cbor@^0.1.15
Updated@helios-lang/uplc@^0.1.21