Skip to content

Commit

Permalink
Fix PriorityLevel Enum (#84)
Browse files Browse the repository at this point in the history
  • Loading branch information
0xIchigo authored May 20, 2024
1 parent 2a50e1c commit 38ae711
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/types/enums.ts
Original file line number Diff line number Diff line change
Expand Up @@ -572,13 +572,13 @@ export enum MintApiAuthority {
}

export enum PriorityLevel {
NONE = "NONE",
LOW = "LOW",
MEDIUM = "MEDIUM",
HIGH = "HIGH",
VERY_HIGH = "VERY_HIGH",
UNSAFE_MAX = "UNSAFE_MAX",
DEFAULT = "DEFAULT",
MIN = "Min",
LOW = "Low",
MEDIUM = "Medium",
HIGH = "High",
VERY_HIGH = "VeryHigh",
UNSAFE_MAX = "UnsafeMax",
DEFAULT = "Default",
}

export enum UiTransactionEncoding {
Expand Down

0 comments on commit 38ae711

Please sign in to comment.