Skip to content

Commit

Permalink
fix: schema for curse_type
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelcr committed Jun 29, 2023
1 parent eaa6d7b commit 72d43c6
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -46,7 +46,7 @@ export const BitcoinCursedInscriptionRevealedSchema = Type.Object({
ordinal_block_height: Type.Integer(),
ordinal_offset: Type.Integer(),
satpoint_post_inscription: Type.String(),
curse_type: Type.String(),
curse_type: Nullable(Type.Union([Type.String(), Type.Object({ tag: Type.Number() })])),
});
export type BitcoinCursedInscriptionRevealed = Static<
typeof BitcoinCursedInscriptionRevealedSchema
Expand Down

0 comments on commit 72d43c6

Please sign in to comment.