Skip to content

Commit

Permalink
bump cardano-js-sdk
Browse files Browse the repository at this point in the history
  • Loading branch information
micahkendall committed Sep 29, 2024
1 parent 588c7c3 commit 7d03538
Show file tree
Hide file tree
Showing 6 changed files with 388 additions and 761 deletions.
6 changes: 6 additions & 0 deletions .changeset/new-books-crash.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@blaze-cardano/core": patch
"@blaze-cardano/tx": patch
---

bump cardano-js-sdk
2 changes: 1 addition & 1 deletion examples/send-lovelace/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"send": "tsx index.ts"
},
"dependencies": {
"@blaze-cardano/sdk": "^0.0.1"
"@blaze-cardano/sdk": "workspace:*"
},
"devDependencies": {
"tsx": "^4.9.4"
Expand Down
20 changes: 10 additions & 10 deletions packages/blaze-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,22 +21,22 @@
"devDependencies": {
"@blaze-cardano/eslint-config": "workspace:*",
"@blaze-cardano/tsconfig": "workspace:*",
"eslint": "^8.57.0",
"terser": "^5.31.3",
"tsup": "^8.2.3",
"typescript": "^5.5.4"
"eslint": "^8.57.1",
"terser": "^5.34.1",
"tsup": "^8.3.0",
"typescript": "^5.6.2"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@cardano-sdk/core": "^0.35.4",
"@cardano-sdk/crypto": "^0.1.28",
"@cardano-sdk/util": "^0.15.4",
"@noble/curves": "^1.4.2",
"@cardano-sdk/core": "^0.40.1",
"@cardano-sdk/crypto": "^0.1.30",
"@cardano-sdk/util": "^0.15.5",
"@noble/curves": "^1.6.0",
"@noble/ed25519": "^2.1.0",
"@noble/hashes": "^1.4.0",
"@scure/bip39": "^1.3.0",
"@noble/hashes": "^1.5.0",
"@scure/bip39": "^1.4.0",
"blakejs": "^1.2.1"
}
}
3 changes: 0 additions & 3 deletions packages/blaze-core/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,6 @@ export type TokenMap = C.Cardano.TokenMap;
export const Transaction = C.Serialization.Transaction;
export type Transaction = C.Serialization.Transaction;

export const TxCBOR = C.TxCBOR;
export type TxCBOR = C.TxCBOR;

export const TransactionId = C.Cardano.TransactionId;
export type TransactionId = C.Cardano.TransactionId;

Expand Down
2 changes: 1 addition & 1 deletion packages/blaze-tx/src/tx.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1421,7 +1421,7 @@ export class TxBuilder {
const collateralValue = this.body
.collateral()!
.values()
.reduce((acc, input) => {
.reduce((acc: Value, input: TransactionInput) => {
const utxo = scope.find(
(x) =>
x.input().transactionId() === input.transactionId() &&
Expand Down
Loading

0 comments on commit 7d03538

Please sign in to comment.