Skip to content

Commit

Permalink
chore: update
Browse files Browse the repository at this point in the history
  • Loading branch information
Sentio Bot committed Nov 8, 2024
1 parent 7915870 commit 99d1049
Show file tree
Hide file tree
Showing 8 changed files with 0 additions and 170 deletions.
30 changes: 0 additions & 30 deletions doc/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3970,10 +3970,6 @@
"required" : [ "simulation" ],
"type" : "object",
"properties" : {
"chainSpec" : {
"type" : "object",
"properties" : { }
},
"simulation" : {
"$ref" : "#/components/schemas/solidity_service.Simulation"
}
Expand Down Expand Up @@ -4004,10 +4000,6 @@
"required" : [ "simulations" ],
"type" : "object",
"properties" : {
"chainSpec" : {
"type" : "object",
"properties" : { }
},
"simulations" : {
"type" : "array",
"description" : "For blockNumber, transactionIndex, networkId, stateOverrides and blockOverrides fields, only the first simulation takes effect.",
Expand Down Expand Up @@ -4043,10 +4035,6 @@
"required" : [ "simulations" ],
"type" : "object",
"properties" : {
"chainSpec" : {
"type" : "object",
"properties" : { }
},
"simulations" : {
"type" : "array",
"description" : "For blockNumber, transactionIndex, networkId, stateOverrides and blockOverrides fields, only the first simulation takes effect.",
Expand Down Expand Up @@ -4082,10 +4070,6 @@
"required" : [ "simulation" ],
"type" : "object",
"properties" : {
"chainSpec" : {
"type" : "object",
"properties" : { }
},
"simulation" : {
"$ref" : "#/components/schemas/solidity_service.Simulation"
}
Expand Down Expand Up @@ -4215,20 +4199,6 @@
}
}
}
};
defs["solidity_service.TxIdentifier"] = {
"type" : "object",
"properties" : {
"txHash" : {
"type" : "string"
},
"simulationId" : {
"type" : "string"
},
"bundleId" : {
"type" : "string"
}
}
};
defs["solidity_service.UpdateForkResponse"] = {
"type" : "object",
Expand Down
26 changes: 0 additions & 26 deletions openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -5523,9 +5523,6 @@
}
},
"properties": {
"chainSpec": {
"type": "object"
},
"simulation": {
"$ref": "#/definitions/solidity_service.Simulation"
}
Expand Down Expand Up @@ -5562,9 +5559,6 @@
]
},
"properties": {
"chainSpec": {
"type": "object"
},
"simulations": {
"type": "array",
"items": {
Expand Down Expand Up @@ -5606,9 +5600,6 @@
]
},
"properties": {
"chainSpec": {
"type": "object"
},
"simulations": {
"type": "array",
"items": {
Expand Down Expand Up @@ -5646,9 +5637,6 @@
}
},
"properties": {
"chainSpec": {
"type": "object"
},
"simulation": {
"$ref": "#/definitions/solidity_service.Simulation"
}
Expand Down Expand Up @@ -5762,20 +5750,6 @@
}
}
},
"solidity_service.TxIdentifier": {
"type": "object",
"properties": {
"txHash": {
"type": "string"
},
"simulationId": {
"type": "string"
},
"bundleId": {
"type": "string"
}
}
},
"solidity_service.UpdateForkResponse": {
"type": "object",
"properties": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,6 @@ import {
* @interface SolidityServiceSolidityAPIServiceSimulateTransactionBody
*/
export interface SolidityServiceSolidityAPIServiceSimulateTransactionBody {
/**
*
* @type {object}
* @memberof SolidityServiceSolidityAPIServiceSimulateTransactionBody
*/
chainSpec?: object;
/**
*
* @type {SolidityServiceSimulation}
Expand All @@ -59,7 +53,6 @@ export function SolidityServiceSolidityAPIServiceSimulateTransactionBodyFromJSON
}
return {

'chainSpec': json['chainSpec'] == null ? undefined : json['chainSpec'],
'simulation': SolidityServiceSimulationFromJSON(json['simulation']),
};
}
Expand All @@ -75,7 +68,6 @@ export function SolidityServiceSolidityAPIServiceSimulateTransactionBodyFromJSON

return {

'chainSpec': value['chainSpec'],
'simulation': SolidityServiceSimulationToJSON(value['simulation']),
};
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,6 @@ import {
* @interface SolidityServiceSolidityAPIServiceSimulateTransactionBundleBody
*/
export interface SolidityServiceSolidityAPIServiceSimulateTransactionBundleBody {
/**
*
* @type {object}
* @memberof SolidityServiceSolidityAPIServiceSimulateTransactionBundleBody
*/
chainSpec?: object;
/**
* For blockNumber, transactionIndex, networkId, stateOverrides and blockOverrides fields, only the first simulation takes effect.
* @type {Array<SolidityServiceSimulation>}
Expand All @@ -59,7 +53,6 @@ export function SolidityServiceSolidityAPIServiceSimulateTransactionBundleBodyFr
}
return {

'chainSpec': json['chainSpec'] == null ? undefined : json['chainSpec'],
'simulations': ((json['simulations'] as Array<any>).map(SolidityServiceSimulationFromJSON)),
};
}
Expand All @@ -75,7 +68,6 @@ export function SolidityServiceSolidityAPIServiceSimulateTransactionBundleBodyFr

return {

'chainSpec': value['chainSpec'],
'simulations': ((value['simulations'] as Array<any>).map(SolidityServiceSimulationToJSON)),
};
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,6 @@ import {
* @interface SolidityServiceSolidityAPIServiceSimulateTransactionBundleByForkBody
*/
export interface SolidityServiceSolidityAPIServiceSimulateTransactionBundleByForkBody {
/**
*
* @type {object}
* @memberof SolidityServiceSolidityAPIServiceSimulateTransactionBundleByForkBody
*/
chainSpec?: object;
/**
* For blockNumber, transactionIndex, networkId, stateOverrides and blockOverrides fields, only the first simulation takes effect.
* @type {Array<SolidityServiceSimulation>}
Expand All @@ -59,7 +53,6 @@ export function SolidityServiceSolidityAPIServiceSimulateTransactionBundleByFork
}
return {

'chainSpec': json['chainSpec'] == null ? undefined : json['chainSpec'],
'simulations': ((json['simulations'] as Array<any>).map(SolidityServiceSimulationFromJSON)),
};
}
Expand All @@ -75,7 +68,6 @@ export function SolidityServiceSolidityAPIServiceSimulateTransactionBundleByFork

return {

'chainSpec': value['chainSpec'],
'simulations': ((value['simulations'] as Array<any>).map(SolidityServiceSimulationToJSON)),
};
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,6 @@ import {
* @interface SolidityServiceSolidityAPIServiceSimulateTransactionByForkBody
*/
export interface SolidityServiceSolidityAPIServiceSimulateTransactionByForkBody {
/**
*
* @type {object}
* @memberof SolidityServiceSolidityAPIServiceSimulateTransactionByForkBody
*/
chainSpec?: object;
/**
*
* @type {SolidityServiceSimulation}
Expand All @@ -59,7 +53,6 @@ export function SolidityServiceSolidityAPIServiceSimulateTransactionByForkBodyFr
}
return {

'chainSpec': json['chainSpec'] == null ? undefined : json['chainSpec'],
'simulation': SolidityServiceSimulationFromJSON(json['simulation']),
};
}
Expand All @@ -75,7 +68,6 @@ export function SolidityServiceSolidityAPIServiceSimulateTransactionByForkBodyFr

return {

'chainSpec': value['chainSpec'],
'simulation': SolidityServiceSimulationToJSON(value['simulation']),
};
}
Expand Down
81 changes: 0 additions & 81 deletions src/models/SolidityServiceTxIdentifier.ts

This file was deleted.

1 change: 0 additions & 1 deletion src/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,6 @@ export * from './SolidityServiceSourceSpec.js';
export * from './SolidityServiceSpecializations.js';
export * from './SolidityServiceStateOverride.js';
export * from './SolidityServiceStorageSummaryResult.js';
export * from './SolidityServiceTxIdentifier.js';
export * from './SolidityServiceUpdateForkResponse.js';
export * from './TxindexEvmRawTransaction.js';
export * from './TxindexEvmSearchTransactionsResponse.js';
Expand Down

0 comments on commit 99d1049

Please sign in to comment.