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

Change StarkNet to Starknet in JSON RPC #171

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
20 changes: 10 additions & 10 deletions api/starknet_api_openrpc.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"openrpc": "1.0.0-rc1",
"info": {
"version": "0.6.0",
"title": "StarkNet Node API",
"title": "Starknet Node API",
"license": {}
},
"servers": [],
Expand Down Expand Up @@ -560,7 +560,7 @@
},
{
"name": "starknet_call",
"summary": "call a starknet function without creating a StarkNet transaction",
"summary": "call a starknet function without creating a Starknet transaction",
"description": "Calls a function in a contract and returns the return value. Using this call will not create a transaction; hence, will not change the state",
"params": [
{
Expand Down Expand Up @@ -611,7 +611,7 @@
},
{
"name": "starknet_estimateFee",
"summary": "estimate the fee for of StarkNet transactions",
"summary": "estimate the fee for of Starknet transactions",
"description": "estimates the resources required by transactions when applyed on a given state",
"params": [
{
Expand Down Expand Up @@ -764,7 +764,7 @@
},
{
"name": "starknet_chainId",
"summary": "Return the currently configured StarkNet chain id",
"summary": "Return the currently configured Starknet chain id",
"params": [],
"result": {
"name": "result",
Expand Down Expand Up @@ -974,7 +974,7 @@
},
"EVENT": {
"title": "Event",
"description": "A StarkNet event",
"description": "A Starknet event",
"allOf": [
{
"title": "Event emitter",
Expand Down Expand Up @@ -1163,7 +1163,7 @@
},
"CHAIN_ID": {
"title": "Chain id",
"description": "StarkNet chain id, given in hex representation.",
"description": "Starknet chain id, given in hex representation.",
"type": "string",
"pattern": "^0x[a-fA-F0-9]+$"
},
Expand Down Expand Up @@ -1339,7 +1339,7 @@
},
"TXN_HASH": {
"$ref": "#/components/schemas/FELT",
"description": "The transaction hash, as assigned in StarkNet",
"description": "The transaction hash, as assigned in Starknet",
"title": "Transaction hash"
},
"FELT": {
Expand Down Expand Up @@ -1443,7 +1443,7 @@
},
"sequencer_address": {
"title": "Sequencer address",
"description": "The StarkNet identity of the sequencer submitting this block",
"description": "The Starknet identity of the sequencer submitting this block",
"$ref": "#/components/schemas/FELT"
},
"l1_gas_price": {
Expand Down Expand Up @@ -1485,7 +1485,7 @@
},
"sequencer_address": {
"title": "Sequencer address",
"description": "The StarkNet identity of the sequencer submitting this block",
"description": "The Starknet identity of the sequencer submitting this block",
"$ref": "#/components/schemas/FELT"
},
"l1_gas_price": {
Expand Down Expand Up @@ -3384,7 +3384,7 @@
},
"DEPRECATED_CONTRACT_CLASS": {
"title": "Deprecated contract class",
"description": "The definition of a StarkNet contract class",
"description": "The definition of a Starknet contract class",
"type": "object",
"properties": {
"program": {
Expand Down