Skip to content

Commit

Permalink
Add version, type, and contract_address_salt to deploy transaction (#30)
Browse files Browse the repository at this point in the history
* Add version, type, and contract_address_salt to deploy transaction
  • Loading branch information
anatgstarkware authored Jul 24, 2022
1 parent 038a007 commit e89f9de
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion api/starknet_api_openrpc.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"openrpc": "1.0.0-rc1",
"info": {
"version": "0.30.0",
"version": "0.31.0",
"title": "StarkNet Node API",
"license": {}
},
Expand Down Expand Up @@ -1196,10 +1196,21 @@
"description": "The hash of the deployed contract's class",
"$ref": "#/components/schemas/FELT"
},
"version": {
"description": "Version of the transaction scheme",
"$ref": "#/components/schemas/NUM_AS_HEX"
},
"type": {
"$ref": "#/components/schemas/TXN_TYPE"
},
"contract_address": {
"description": "The address of the deployed contract",
"$ref": "#/components/schemas/FELT"
},
"contract_address_salt": {
"description": "The salt for the address of the deployed contract",
"$ref": "#/components/schemas/FELT"
},
"constructor_calldata": {
"type": "array",
"description": "The parameters passed to the constructor",
Expand Down

0 comments on commit e89f9de

Please sign in to comment.