Skip to content

Commit

Permalink
chore: update
Browse files Browse the repository at this point in the history
  • Loading branch information
Sentio Bot committed Dec 17, 2024
1 parent d1f52e7 commit 3e1850f
Show file tree
Hide file tree
Showing 12 changed files with 1,015 additions and 0 deletions.
491 changes: 491 additions & 0 deletions doc/index.html

Large diffs are not rendered by default.

108 changes: 108 additions & 0 deletions openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -1471,6 +1471,32 @@
]
}
},
"/api/v1/solidity/estimated_gas_price": {
"get": {
"summary": "Estimate gas price",
"operationId": "GetEstimatedGasPrice",
"responses": {
"200": {
"description": "A successful response.",
"schema": {
"$ref": "#/definitions/solidity_service.GetEstimatedGasPriceResponse"
}
}
},
"parameters": [
{
"name": "chainId",
"description": "Current support chain id: 1",
"in": "query",
"required": false,
"type": "string"
}
],
"tags": [
"Debug and Simulation"
]
}
},
"/api/v1/solidity/{owner}/{slug}/fork": {
"get": {
"summary": "List all forks",
Expand Down Expand Up @@ -5862,6 +5888,34 @@
}
}
},
"solidity_service.BlockPrice": {
"type": "object",
"properties": {
"blockNumber": {
"type": "integer",
"format": "int32"
},
"estimatedTransactionCount": {
"type": "integer",
"format": "int32"
},
"baseFeePerGas": {
"type": "number",
"format": "double"
},
"blobBaseFeePerGas": {
"type": "number",
"format": "double"
},
"estimatedPrices": {
"type": "array",
"items": {
"type": "object",
"$ref": "#/definitions/solidity_service.EstimatedPrice"
}
}
}
},
"solidity_service.ChainIdentifier": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -5927,6 +5981,27 @@
}
}
},
"solidity_service.EstimatedPrice": {
"type": "object",
"properties": {
"confidence": {
"type": "integer",
"format": "int32"
},
"price": {
"type": "number",
"format": "double"
},
"maxPriorityFeePerGas": {
"type": "number",
"format": "double"
},
"maxFeePerGas": {
"type": "number",
"format": "double"
}
}
},
"solidity_service.ExternalFork": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -6031,6 +6106,39 @@
],
"default": "MANAGED"
},
"solidity_service.GetEstimatedGasPriceResponse": {
"type": "object",
"properties": {
"system": {
"type": "string"
},
"network": {
"type": "string"
},
"unit": {
"type": "string"
},
"maxPrice": {
"type": "number",
"format": "double"
},
"currentBlockNumber": {
"type": "integer",
"format": "int32"
},
"msSinceLastBlock": {
"type": "integer",
"format": "int32"
},
"blockPrices": {
"type": "array",
"items": {
"type": "object",
"$ref": "#/definitions/solidity_service.BlockPrice"
}
}
}
},
"solidity_service.GetForkInfoResponse": {
"type": "object",
"properties": {
Expand Down
53 changes: 53 additions & 0 deletions src/DebugAndSimulationApi.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

66 changes: 66 additions & 0 deletions src/apis/DebugAndSimulationApi.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions src/models/ObjectSerializer.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 3e1850f

Please sign in to comment.