Skip to content

Commit

Permalink
fix: add enum
Browse files Browse the repository at this point in the history
  • Loading branch information
devdanco committed Aug 23, 2023
1 parent 07e4115 commit ceed1a9
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,12 @@ export const mTypes = {
seed: "ShufflingSeed",
count: "BlockNumber"
},
NumberOrHex: "u128",
Balance: "u128",
NumberOrHex: {
_enum: {
Number: "u64",
Hex: "U256"
}
},
VestingInfo: {
locked: "Balance",
perBlock: "Balance",
Expand Down

0 comments on commit ceed1a9

Please sign in to comment.