Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

typo fix and added property to schema object #173

Merged
merged 3 commits into from
Nov 29, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions api/starknet_api_openrpc.json
Original file line number Diff line number Diff line change
Expand Up @@ -1403,7 +1403,7 @@
},
"l1_gas_price": {
"title": "L1 gas price",
"descritpion": "The price of l1 gas in the block",
"description": "The price of l1 gas in the block",
"$ref": "#/components/schemas/RESOURCE_PRICE"
},
"starknet_version": {
Expand Down Expand Up @@ -1445,7 +1445,7 @@
},
"l1_gas_price": {
"title": "L1 gas price",
"descritpion": "The price of l1 gas in the block",
"description": "The price of l1 gas in the block",
"$ref": "#/components/schemas/RESOURCE_PRICE"
},
"starknet_version": {
Expand Down Expand Up @@ -2227,6 +2227,7 @@
"DEPLOY_ACCOUNT_TXN_V1": {
"title": "Deploy account transaction",
"description": "Deploys an account contract, charges fee from the pre-funded account addresses",
"type": "object",
"properties": {
"type": {
"title": "Deploy account",
Expand Down Expand Up @@ -2290,6 +2291,7 @@
"DEPLOY_ACCOUNT_TXN_V3": {
"title": "Deploy account transaction",
"description": "Deploys an account contract, charges fee from the pre-funded account addresses",
"type": "object",
"properties": {
"type": {
"title": "Deploy account",
Expand Down Expand Up @@ -2429,6 +2431,7 @@
"INVOKE_TXN_V0": {
"title": "Invoke transaction V0",
"description": "invokes a specific function in the desired contract (not necessarily an account)",
"type": "object",
"properties": {
"type": {
"title": "Type",
Expand Down Expand Up @@ -3658,7 +3661,7 @@
"type": "object",
"properties": {
"amount": {
"title": "Amunt",
"title": "Amount",
"description": "amount paid",
"$ref": "#/components/schemas/FELT"
},
Expand Down