Skip to content

Commit

Permalink
fix bug in schema of STORAGE_KEY
Browse files Browse the repository at this point in the history
  • Loading branch information
ShahakShama committed Dec 20, 2023
1 parent 6e0d2ce commit 786f565
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions api/starknet_api_openrpc.json
Original file line number Diff line number Diff line change
Expand Up @@ -1287,8 +1287,8 @@
"type": "string",
"title": "Storage key",
"$comment": "A storage key, represented as a string of hex digits",
"description": "A storage key. Represented as up to 62 hex digits, 3 bits, and 5 leading zeroes.",
"pattern": "^0x0[0-7]{1}[a-fA-F0-9]{0,62}$"
"description": "A storage key. Represented as up to 251 bits which is 62 hex digits and 3 bits.",
"pattern": "^0x(0|[a-fA-F1-9][a-fA-F0-9]{0,61}|[1-7]{1}[a-fA-F0-9]{62})"
},
"ETH_ADDRESS": {
"title": "Ethereum address",
Expand Down Expand Up @@ -3942,4 +3942,4 @@
}
}
}
}
}

0 comments on commit 786f565

Please sign in to comment.