Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cardano-rpc/proto/utxorpc/v1alpha/cardano/cardano.proto
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ package utxorpc.v1alpha.cardano;
// Represents a transaction output in the Cardano blockchain.
message TxOutput {
bytes address = 1; // Address receiving the output.
uint64 coin = 2; // Amount of ADA in the output.
uint64 coin = 2 [jstype = JS_STRING]; // Amount of ADA in the output.
repeated MultiAsset assets = 3; // Additional native (non-ADA) assets in the output.
Datum datum = 4; // Plutus data associated with the output.
Script script = 5; // Script associated with the output.
Expand Down
Loading