Skip to content

Commit

Permalink
Merge pull request #142 from starkware-libs/fix_broadcast_declare_v1
Browse files Browse the repository at this point in the history
add missing fields to broadcasted_declare_txn_v1 (#142)
  • Loading branch information
ArielElp authored Oct 9, 2023
2 parents 8e2fc2c + cf9dee9 commit f172acd
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions api/starknet_api_openrpc.json
Original file line number Diff line number Diff line change
Expand Up @@ -1875,6 +1875,11 @@
"DECLARE"
]
},
"sender_address": {
"title": "Sender address",
"description": "The address of the account contract sending the declaration transaction",
"$ref": "#/components/schemas/ADDRESS"
},
"max_fee": {
"title": "Max fee",
"$ref": "#/components/schemas/FELT",
Expand All @@ -1889,6 +1894,10 @@
"title": "Signature",
"$ref": "#/components/schemas/SIGNATURE"
},
"nonce": {
"title": "Nonce",
"$ref": "#/components/schemas/FELT"
},
"contract_class": {
"title": "Contract class",
"description": "The class to be declared",
Expand All @@ -1897,9 +1906,11 @@
},
"required": [
"type",
"sender_address",
"max_fee",
"version",
"signature",
"nonce",
"contract_class"
]
}
Expand Down

0 comments on commit f172acd

Please sign in to comment.