Skip to content
Merged
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
6 changes: 3 additions & 3 deletions modules/express/src/typedRoutes/api/v2/coinSignTx.ts
Original file line number Diff line number Diff line change
Expand Up @@ -174,11 +174,11 @@ export const HalfSignedAccountTransactionResponse = t.type({
halfSigned: t.partial({
// Generic account-based coin fields
/** Transaction in hex format (used by most account coins) */
txHex: optional(t.string),
txHex: t.string,
/** Transaction payload (used by some account coins) */
payload: optional(t.string),
payload: t.string,
/** Transaction in base64 format (used by some account coins) */
txBase64: optional(t.string),
txBase64: t.string,

// Additional EVM-specific fields (superset)
/** Transaction recipients (EVM) */
Expand Down