Skip to content

Commit

Permalink
chore: removed unexported types
Browse files Browse the repository at this point in the history
  • Loading branch information
gentlementlegen committed Apr 10, 2024
1 parent 047e0be commit dd60945
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/handlers/permit-type.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,6 @@ const erc20PermitT = T.Object({
networkId: T.Number(),
});

export type Erc20Permit = StaticDecode<typeof erc20PermitT>;

const erc721PermitT = T.Object({
type: T.Literal("erc721-permit"),
permit: T.Object({
Expand Down Expand Up @@ -69,8 +67,6 @@ const erc721PermitT = T.Object({
}),
});

export type Erc721Permit = StaticDecode<typeof erc721PermitT>;

export const claimTxT = T.Union([erc20PermitT, erc721PermitT]);

export type RewardPermit = StaticDecode<typeof claimTxT>;

0 comments on commit dd60945

Please sign in to comment.