Skip to content

Commit

Permalink
show burning using reference inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
paweljakubas committed Sep 7, 2023
1 parent 4b83dca commit af3d73a
Showing 1 changed file with 39 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1294,6 +1294,45 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do
(`shouldBe` tokens')
]

let payloadBurn = Json [json|{
"mint_burn": [{
"policy_id": #{toText policyId'},
"reference_input": #{toJSON refInp},
"asset_name": #{toText tokenName'},
"operation":
{ "burn" :
{ "quantity": 1000
}
}
}]
}|]

rTxBurn <- request @(ApiConstructTransaction n) ctx
(Link.createUnsignedTransaction @'Shelley wa) Default payloadBurn
verify rTxBurn
[ expectResponseCode HTTP.status202
]
let (ApiSerialisedTransaction apiTxBurn _) = getFromResponse #transaction rTxBurn

signedTxBurn <- signTx ctx wa apiTxBurn [ expectResponseCode HTTP.status202 ]

submittedTxBurn <- submitTxWithWid ctx wa signedTxBurn
verify submittedTxBurn
[ expectSuccess
, expectResponseCode HTTP.status202
]

eventually "wallet does not hold minted assets anymore" $ do
rWal <- request @ApiWallet ctx
(Link.getWallet @'Shelley wa) Default Empty
verify rWal
[ expectSuccess
, expectField (#assets . #available . #getApiT)
(`shouldBe` TokenMap.empty)
, expectField (#assets . #total . #getApiT)
(`shouldBe` TokenMap.empty)
]

it "TRANS_NEW_VALIDITY_INTERVAL_01a - \
\Validity interval with second" $
\ctx -> runResourceT $ do
Expand Down

0 comments on commit af3d73a

Please sign in to comment.