Skip to content

Commit

Permalink
fix: force lower-case hex
Browse files Browse the repository at this point in the history
  • Loading branch information
avimak committed Nov 15, 2023
1 parent 8a0f459 commit 3817dd5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion repository/ekubo/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"0x031e8a7ab6a6a556548ac85cbb8b5f56e8905696e9f13e9a858142b8ee0cc221"
],
"mainnet-alpha": [
"0x00000005dd3D2F4429AF886cD1a3b08289DBcEa99A294197E9eB43b0e0325b4b"
"0x00000005dd3d2f4429af886cd1a3b08289dbcea99a294197e9eb43b0e0325b4b"
]
}
},
Expand Down
4 changes: 2 additions & 2 deletions schemas/types.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@
"type": "array",
"items": {
"type": "string",
"pattern": "^0x[0-9a-fA-F]{1,64}$"
"pattern": "^0x[0-9a-f]{1,64}$"
}
},
"goerli-alpha": {
"type": "array",
"items": {
"type": "string",
"pattern": "^0x[0-9a-fA-F]{1,64}$"
"pattern": "^0x[0-9a-f]{1,64}$"
}
}
},
Expand Down

0 comments on commit 3817dd5

Please sign in to comment.