Skip to content

Commit

Permalink
refactor: blueprint_id is nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
andreabadesso committed Jan 29, 2025
1 parent 5ba5526 commit a6f68cf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import { NanoContractAction } from '@hathor/wallet-lib/lib/nano_contracts/types'

const sendNanoContractSchema = z.object({
method: z.string().min(1),
blueprint_id: z.string(),
blueprint_id: z.string().nullable(),
nc_id: z.string().nullable(),
actions: z.array(z.custom<NanoContractAction>()),
args: z.array(z.unknown()).default([]),
Expand Down

0 comments on commit a6f68cf

Please sign in to comment.