We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
ITxBuildArgs
In ITxBuildArgs
currently some interfaces do not support native js types, and strictly require classes
one example is ITxBuildInput
ITxBuildInput
where the utxo field is of type IUTxO.
utxo
IUTxO
This looks good at first, but in reality the definition of IUTxO in cardano-ledger-ts uses ITxOut for the resolved field.
ITxOut
resolved
And the definition of ITxOut uses either Hash32 class or Data (from plutus-data)
Hash32
Data
in this case we should add support for strings and Uint8Array.
Uint8Array
Many other cases going through ITxBuildArgs
The text was updated successfully, but these errors were encountered:
bakon11
No branches or pull requests
In
ITxBuildArgs
currently some interfaces do not support native js types, and strictly require classes
one example is
ITxBuildInput
where the
utxo
field is of typeIUTxO
.This looks good at first, but in reality the definition of
IUTxO
in cardano-ledger-ts usesITxOut
for theresolved
field.And the definition of
ITxOut
uses eitherHash32
class orData
(from plutus-data)in this case we should add support for strings and
Uint8Array
.Many other cases going through
ITxBuildArgs
The text was updated successfully, but these errors were encountered: