Skip to content

Commit

Permalink
add >0 constraint to builtins
Browse files Browse the repository at this point in the history
  • Loading branch information
ArielElp committed Nov 12, 2023
1 parent 88f71e0 commit 274656b
Showing 1 changed file with 36 additions and 9 deletions.
45 changes: 36 additions & 9 deletions api/starknet_api_openrpc.json
Original file line number Diff line number Diff line change
Expand Up @@ -3738,47 +3738,74 @@
"steps": {
"title": "Steps",
"description": "The number of Cairo steps used",
"type": "integer"
"type": "integer",
"not": {
"const": 0
}
},
"memory_holes": {
"title": "Memory holes",
"description": "The number of unused memory cells (each cell is roughly equivalent to a step)",
"type": "integer"
"type": "integer",
"not": {
"const": 0
}
},
"range_check_builtin_applications": {
"title": "Range check applications",
"description": "The number of RANGE_CHECK builtin instances",
"type": "integer"
"type": "integer",
"not": {
"const": 0
}
},
"pedersen_builtin_applications": {
"title": "Pedersen applications",
"description": "The number of Pedersen builtin instances",
"type": "integer"
"type": "integer",
"not": {
"const": 0
}
},
"poseidon_builtin_applications": {
"title": "Poseidon applications",
"description": "The number of Poseidon builtin instances",
"type": "integer"
"type": "integer",
"not": {
"const": 0
}
},
"ec_op_builtin_applications": {
"title": "EC_OP applications",
"description": "the number of EC_OP builtin instances",
"type": "integer"
"type": "integer",
"not": {
"const": 0
}
},
"ecdsa_builtin_applications": {
"title": "ECDSA applications",
"description": "the number of ECDSA builtin instances",
"type": "integer"
"type": "integer",
"not": {
"const": 0
}
},
"bitwise_builtin_applications": {
"title": "BITWISE applications",
"description": "the number of BITWISE builtin instances",
"type": "integer"
"type": "integer",
"not": {
"const": 0
}
},
"keccak_builtin_applications": {
"title": "Keccak applications",
"description": "The number of KECCAK builtin instances",
"type": "integer"
"type": "integer",
"not": {
"const": 0
}
}
},
"required": [
Expand Down

0 comments on commit 274656b

Please sign in to comment.