We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec8c531 commit 023868aCopy full SHA for 023868a
projects/helper/chain/cardano/blockfrost.js
@@ -59,6 +59,10 @@ async function addressesUtxosAssetAll(address, asset) {
59
return addresses
60
}
61
62
+async function getTxUtxos(tx_hash) {
63
+ const { data } = await axiosObj.get(`txs/${tx_hash}/utxos`)
64
+ return data
65
+}
66
67
async function getTxsRedeemers(utxo) {
68
const { data } = await axiosObj.get(`txs/${utxo}/redeemers`)
@@ -83,6 +87,7 @@ async function getTokensMinted(tokenId){
83
87
module.exports = {
84
88
getAssets,
85
89
getAddressesUTXOs,
90
+ getTxUtxos,
86
91
getTxsRedeemers,
92
getTxsMetadata,
93
assetsAddresses,
0 commit comments