@chainflip/rpc 2.2.0-alpha.6 → 2.2.0-alpha.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/parsers.cjs CHANGED
@@ -339,11 +339,12 @@ const requestSwapParameterEncoding = zod.z.discriminatedUnion("chain", [
339
339
  }),
340
340
  evmBrokerRequestSwapParameterEncoding.extend({ chain: zod.z.literal("Ethereum") }),
341
341
  evmBrokerRequestSwapParameterEncoding.extend({ chain: zod.z.literal("Arbitrum") }),
342
- evmBrokerRequestSwapParameterEncoding.extend({
342
+ zod.z.object({
343
343
  chain: zod.z.literal("Tron"),
344
344
  to: tronAddress,
345
345
  calldata: zod.z.string(),
346
- note: hexString
346
+ note: hexString,
347
+ source_token_address: tronAddress.optional()
347
348
  }),
348
349
  zod.z.object({
349
350
  chain: zod.z.literal("Solana"),