Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 0 additions & 26 deletions .changeset/yummy-shoes-double.md

This file was deleted.

8 changes: 8 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# docs

## 0.0.15

### Patch Changes

- Updated dependencies [[`7905507`](https://github.com/IntersectMBO/evolution-sdk/commit/79055076ab31214dc4c7462553484e9c2bcaf22c)]:
- @evolution-sdk/evolution@0.3.8
- @evolution-sdk/devnet@1.1.8

## 0.0.14

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "docs",
"version": "0.0.14",
"version": "0.0.15",
"private": true,
"type": "module",
"scripts": {
Expand Down
7 changes: 7 additions & 0 deletions packages/evolution-devnet/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @evolution-sdk/devnet

## 1.1.8

### Patch Changes

- Updated dependencies [[`7905507`](https://github.com/IntersectMBO/evolution-sdk/commit/79055076ab31214dc4c7462553484e9c2bcaf22c)]:
- @evolution-sdk/evolution@0.3.8

## 1.1.7

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/evolution-devnet/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@evolution-sdk/devnet",
"version": "1.1.7",
"version": "1.1.8",
"description": "Local Cardano devnet for testing and development with Docker",
"type": "module",
"main": "./dist/index.js",
Expand Down
28 changes: 28 additions & 0 deletions packages/evolution/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
# @evolution-sdk/evolution

## 0.3.8

### Patch Changes

- [#113](https://github.com/IntersectMBO/evolution-sdk/pull/113) [`7905507`](https://github.com/IntersectMBO/evolution-sdk/commit/79055076ab31214dc4c7462553484e9c2bcaf22c) Thanks [@solidsnakedev](https://github.com/solidsnakedev)! - Add `attachMetadata()` operation to TransactionBuilder for attaching transaction metadata according to CIP-10 standard.

**Changes:**
- Added `attachMetadata()` method to attach metadata with custom labels
- Metadata labels are now bigint (unbounded positive integers) supporting CIP-20 messages (label 674) and custom labels
- Automatic computation of auxiliaryDataHash in transaction body when metadata is present
- Proper fee calculation accounting for auxiliary data size
- TransactionMetadatum refactored to simple union type: `string | bigint | Uint8Array | Map | Array`
- Added `NonNegativeInteger` schema to Numeric module for unbounded non-negative integers

**Example:**

```typescript
await client
.newTx()
.attachMetadata({
label: 674n, // CIP-20 message label
metadata: "Hello Cardano!"
})
.payToAddress({ address, assets })
.build()
.then((tx) => tx.sign().submit())
```

## 0.3.7

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/evolution/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@evolution-sdk/evolution",
"version": "0.3.7",
"version": "0.3.8",
"description": "A modern TypeScript SDK for Cardano blockchain development",
"type": "module",
"main": "./dist/index.js",
Expand Down