Skip to content

Commit

Permalink
Merge pull request #37 from SIDANWhatever/hotfix/updating-res-type-as…
Browse files Browse the repository at this point in the history
…set-txs

fix: updating types
  • Loading branch information
Vardominator authored Feb 10, 2024
2 parents fd5bb33 + aaa2065 commit bd7b344
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@maestro-org/typescript-sdk",
"version": "1.4.1",
"version": "1.4.2",
"description": "TypeScript SDK for the Maestro Dapp Platform",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down Expand Up @@ -49,4 +49,4 @@
"yarn eslint --fix"
]
}
}
}
10 changes: 5 additions & 5 deletions src/api/type.ts
Original file line number Diff line number Diff line change
Expand Up @@ -438,17 +438,17 @@ export interface AssetStandards {
*/
export interface AssetTx {
/**
* The height of the block which included the transaction
* Absolute slot of the block which includes the transaction
* @type {number}
* @memberof AssetTx
*/
block_height: number;
slot: number;
/**
* Epoch in which the transaction occurred
* @type {number}
* UTC timestamp of the block which includes the transaction
* @type {string}
* @memberof AssetTx
*/
epoch_no: number;
timestamp: string;
/**
* Transaction hash
* @type {string}
Expand Down

0 comments on commit bd7b344

Please sign in to comment.