-
Notifications
You must be signed in to change notification settings - Fork 14
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
[Cardano] - Load CBOR created with eternl wallet on preprod #20
Comments
Your transaction encoded the inputs in the body using a set instead of a list. Some packages use a set to encode transaction inputs, but this is not standard for Cardano transactions, which typically use lists. To fix this issue for your current transaction, you can change the template type from I will check further details to confirm if sets are supported by the Cardano standard. If they are, I will implement support for decoding them in a future update. |
@studiowebux now cardano transaction can be deserialize inputs as |
Hello,
I was wondering if it is possible to load a cbor from a wallet. (My end goal is to use Deno + CSL on the backend)
I tested this cbor encoded payload:
But was unable to load it using
ADATransaction.fromCborBytes()
I have tested multiple things, but the recurrent issue are these two :
Test 1
Input:
Test 2
Versions:
Do you know what could cause that issue ?
I also tried with a cbor created with CSL with deno, same issue occured.
Thanks !
The text was updated successfully, but these errors were encountered: