We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents de4eddd + d67c409 commit 89ed696Copy full SHA for 89ed696
modules/express/src/typedRoutes/api/v2/coinSignTx.ts
@@ -174,11 +174,11 @@ export const HalfSignedAccountTransactionResponse = t.type({
174
halfSigned: t.partial({
175
// Generic account-based coin fields
176
/** Transaction in hex format (used by most account coins) */
177
- txHex: optional(t.string),
+ txHex: t.string,
178
/** Transaction payload (used by some account coins) */
179
- payload: optional(t.string),
+ payload: t.string,
180
/** Transaction in base64 format (used by some account coins) */
181
- txBase64: optional(t.string),
+ txBase64: t.string,
182
183
// Additional EVM-specific fields (superset)
184
/** Transaction recipients (EVM) */
0 commit comments