-
-
Notifications
You must be signed in to change notification settings - Fork 8
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
[Endpoint Request] assets/{asset}/transactions #400
Comments
mgpai22
changed the title
[Endpoint Request]
[Endpoint Request] assets/{asset}/transactions
Nov 18, 2024
I am working on this enhancement. Below is the Blockfrost response format. Currently, we can return everything except "tx_index" We plan to add "tx_index" later, but may not be possible in the next release.
|
This will work for now, but `tx_index` is certainly needed!
…On Tue, Nov 26, 2024 at 9:53 AM Satya ***@***.***> wrote:
@mgpai22 <https://github.com/mgpai22>
I am working on this enhancement.
Below is the Blockfrost response format. Currently, we can return
everything except "*tx_index*"
Will that work for your current use case?
We plan to add "tx_index" later, but may not be possible in the next
release.
[
{
"tx_hash": "8788591983aa73981fc92d6cddbbe643959f5a784e84b8bee0db15823f575a5b",
"tx_index": 6,
"block_height": 69,
"block_time": 1635505891
}
]
—
Reply to this email directly, view it on GitHub
<#400 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/APIW5BQZNHDLPSXJDOT7YLD2CSDM3AVCNFSM6AAAAABSAHCAQ6VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDKMBRGAZDGMBWG4>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
satran004
added a commit
that referenced
this issue
Nov 27, 2024
… (db specific), refactor existing asset apis Implemented `findTransactionsByAsset` in `UtxoStorageReaderImpl`. Added H2 and PostgreSQL specific indexing script executions in `DBIndexService`. Introduced `AssetTransaction` domain class with necessary test cases and API updates, including deprecation warnings for old endpoints.
satran004
added a commit
that referenced
this issue
Nov 28, 2024
…int refactoring (#408) * fix: #399 Add serializer to convert amount from BigIn to String (#404) * Blockfrost Block by number/hash api Response Format Mismatch (#405) * fix: #402 Add next block info and confirmations to BlockDto Enhanced the BlockDto by adding next block hash and confirmation count. Adjusted the BlockController to populate these new fields. Included new API tests to verify the additional fields in the response. * Bump yaci version * fix: #399 Refactor 'amount' handling and add API test for UTxOs (#406) Refactor the 'amount' field to use the new 'Amount' class instead of 'Amt' across the transaction domain and service layers. Added a new API test to verify the UTXOs retrieval by transaction hash. * feat: #400 Add asset transaction support and enhance indexing scripts (db specific), refactor existing asset apis Implemented `findTransactionsByAsset` in `UtxoStorageReaderImpl`. Added H2 and PostgreSQL specific indexing script executions in `DBIndexService`. Introduced `AssetTransaction` domain class with necessary test cases and API updates, including deprecation warnings for old endpoints.
satran004
added a commit
that referenced
this issue
Nov 28, 2024
…int refactoring (#408) * fix: #399 Add serializer to convert amount from BigIn to String (#404) * Blockfrost Block by number/hash api Response Format Mismatch (#405) * fix: #402 Add next block info and confirmations to BlockDto Enhanced the BlockDto by adding next block hash and confirmation count. Adjusted the BlockController to populate these new fields. Included new API tests to verify the additional fields in the response. * Bump yaci version * fix: #399 Refactor 'amount' handling and add API test for UTxOs (#406) Refactor the 'amount' field to use the new 'Amount' class instead of 'Amt' across the transaction domain and service layers. Added a new API test to verify the UTXOs retrieval by transaction hash. * feat: #400 Add asset transaction support and enhance indexing scripts (db specific), refactor existing asset apis Implemented `findTransactionsByAsset` in `UtxoStorageReaderImpl`. Added H2 and PostgreSQL specific indexing script executions in `DBIndexService`. Introduced `AssetTransaction` domain class with necessary test cases and API updates, including deprecation warnings for old endpoints.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Please add this endpoint: https://docs.blockfrost.io/#tag/cardano--assets/GET/assets/{asset}/transactions
This will make it easy to grab utxo by singleton (a token where only one quantity exists)
Remarks from @satran004
The text was updated successfully, but these errors were encountered: