Skip to content

Commit

Permalink
fix: allow null inscriber_address on reveal
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelcr committed Jul 6, 2023
1 parent 9a989a4 commit c3f80ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/chainhook/schemas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const InscriptionRevealedSchema = Type.Object({
inscription_fee: Type.Integer(),
inscription_id: Type.String(),
inscription_output_value: Type.Integer(),
inscriber_address: Type.String(),
inscriber_address: Nullable(Type.String()),
ordinal_number: Type.Integer(),
ordinal_block_height: Type.Integer(),
ordinal_offset: Type.Integer(),
Expand Down

0 comments on commit c3f80ef

Please sign in to comment.