Skip to content

Commit

Permalink
Fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
alessandrokonrad committed Jan 29, 2025
1 parent c3ebcdb commit 29dada9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"nodeModulesDir": "none",

"name": "@spacebudz/lucid",
"version": "0.20.1",
"version": "0.20.2",
"license": "MIT",
"exports": {
".": "./mod.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/utils/merkle_tree.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Haskell implementation: https://github.com/input-output-hk/hydra-poc/blob/master/plutus-merkle-tree/src/Plutus/MerkleTree.hs
// TODO: get rid of async sha256
import { concat, equals } from "jsr:@std/bytes";
import { concat, equals } from "jsr:@std/bytes@1.0.4";
import { toHex } from "./utils.ts";

type MerkleNode = {
Expand Down
2 changes: 1 addition & 1 deletion src/utils/utils.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { decodeHex, encodeHex } from "jsr:@std/encoding/hex";
import { decodeHex, encodeHex } from "jsr:@std/encoding@1.0.5/hex";
import {
Addresses,
type Assets,
Expand Down

0 comments on commit 29dada9

Please sign in to comment.