Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: updating types #37

Merged
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
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
Loading