Skip to content

Commit 99d1049

Browse files
author
Sentio Bot
committed
chore: update
1 parent 7915870 commit 99d1049

8 files changed

+0
-170
lines changed

doc/index.html

Lines changed: 0 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -3970,10 +3970,6 @@
39703970
"required" : [ "simulation" ],
39713971
"type" : "object",
39723972
"properties" : {
3973-
"chainSpec" : {
3974-
"type" : "object",
3975-
"properties" : { }
3976-
},
39773973
"simulation" : {
39783974
"$ref" : "#/components/schemas/solidity_service.Simulation"
39793975
}
@@ -4004,10 +4000,6 @@
40044000
"required" : [ "simulations" ],
40054001
"type" : "object",
40064002
"properties" : {
4007-
"chainSpec" : {
4008-
"type" : "object",
4009-
"properties" : { }
4010-
},
40114003
"simulations" : {
40124004
"type" : "array",
40134005
"description" : "For blockNumber, transactionIndex, networkId, stateOverrides and blockOverrides fields, only the first simulation takes effect.",
@@ -4043,10 +4035,6 @@
40434035
"required" : [ "simulations" ],
40444036
"type" : "object",
40454037
"properties" : {
4046-
"chainSpec" : {
4047-
"type" : "object",
4048-
"properties" : { }
4049-
},
40504038
"simulations" : {
40514039
"type" : "array",
40524040
"description" : "For blockNumber, transactionIndex, networkId, stateOverrides and blockOverrides fields, only the first simulation takes effect.",
@@ -4082,10 +4070,6 @@
40824070
"required" : [ "simulation" ],
40834071
"type" : "object",
40844072
"properties" : {
4085-
"chainSpec" : {
4086-
"type" : "object",
4087-
"properties" : { }
4088-
},
40894073
"simulation" : {
40904074
"$ref" : "#/components/schemas/solidity_service.Simulation"
40914075
}
@@ -4215,20 +4199,6 @@
42154199
}
42164200
}
42174201
}
4218-
};
4219-
defs["solidity_service.TxIdentifier"] = {
4220-
"type" : "object",
4221-
"properties" : {
4222-
"txHash" : {
4223-
"type" : "string"
4224-
},
4225-
"simulationId" : {
4226-
"type" : "string"
4227-
},
4228-
"bundleId" : {
4229-
"type" : "string"
4230-
}
4231-
}
42324202
};
42334203
defs["solidity_service.UpdateForkResponse"] = {
42344204
"type" : "object",

openapi.json

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -5523,9 +5523,6 @@
55235523
}
55245524
},
55255525
"properties": {
5526-
"chainSpec": {
5527-
"type": "object"
5528-
},
55295526
"simulation": {
55305527
"$ref": "#/definitions/solidity_service.Simulation"
55315528
}
@@ -5562,9 +5559,6 @@
55625559
]
55635560
},
55645561
"properties": {
5565-
"chainSpec": {
5566-
"type": "object"
5567-
},
55685562
"simulations": {
55695563
"type": "array",
55705564
"items": {
@@ -5606,9 +5600,6 @@
56065600
]
56075601
},
56085602
"properties": {
5609-
"chainSpec": {
5610-
"type": "object"
5611-
},
56125603
"simulations": {
56135604
"type": "array",
56145605
"items": {
@@ -5646,9 +5637,6 @@
56465637
}
56475638
},
56485639
"properties": {
5649-
"chainSpec": {
5650-
"type": "object"
5651-
},
56525640
"simulation": {
56535641
"$ref": "#/definitions/solidity_service.Simulation"
56545642
}
@@ -5762,20 +5750,6 @@
57625750
}
57635751
}
57645752
},
5765-
"solidity_service.TxIdentifier": {
5766-
"type": "object",
5767-
"properties": {
5768-
"txHash": {
5769-
"type": "string"
5770-
},
5771-
"simulationId": {
5772-
"type": "string"
5773-
},
5774-
"bundleId": {
5775-
"type": "string"
5776-
}
5777-
}
5778-
},
57795753
"solidity_service.UpdateForkResponse": {
57805754
"type": "object",
57815755
"properties": {

src/models/SolidityServiceSolidityAPIServiceSimulateTransactionBody.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,6 @@ import {
2727
* @interface SolidityServiceSolidityAPIServiceSimulateTransactionBody
2828
*/
2929
export interface SolidityServiceSolidityAPIServiceSimulateTransactionBody {
30-
/**
31-
*
32-
* @type {object}
33-
* @memberof SolidityServiceSolidityAPIServiceSimulateTransactionBody
34-
*/
35-
chainSpec?: object;
3630
/**
3731
*
3832
* @type {SolidityServiceSimulation}
@@ -59,7 +53,6 @@ export function SolidityServiceSolidityAPIServiceSimulateTransactionBodyFromJSON
5953
}
6054
return {
6155

62-
'chainSpec': json['chainSpec'] == null ? undefined : json['chainSpec'],
6356
'simulation': SolidityServiceSimulationFromJSON(json['simulation']),
6457
};
6558
}
@@ -75,7 +68,6 @@ export function SolidityServiceSolidityAPIServiceSimulateTransactionBodyFromJSON
7568

7669
return {
7770

78-
'chainSpec': value['chainSpec'],
7971
'simulation': SolidityServiceSimulationToJSON(value['simulation']),
8072
};
8173
}

src/models/SolidityServiceSolidityAPIServiceSimulateTransactionBundleBody.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,6 @@ import {
2727
* @interface SolidityServiceSolidityAPIServiceSimulateTransactionBundleBody
2828
*/
2929
export interface SolidityServiceSolidityAPIServiceSimulateTransactionBundleBody {
30-
/**
31-
*
32-
* @type {object}
33-
* @memberof SolidityServiceSolidityAPIServiceSimulateTransactionBundleBody
34-
*/
35-
chainSpec?: object;
3630
/**
3731
* For blockNumber, transactionIndex, networkId, stateOverrides and blockOverrides fields, only the first simulation takes effect.
3832
* @type {Array<SolidityServiceSimulation>}
@@ -59,7 +53,6 @@ export function SolidityServiceSolidityAPIServiceSimulateTransactionBundleBodyFr
5953
}
6054
return {
6155

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

7669
return {
7770

78-
'chainSpec': value['chainSpec'],
7971
'simulations': ((value['simulations'] as Array<any>).map(SolidityServiceSimulationToJSON)),
8072
};
8173
}

src/models/SolidityServiceSolidityAPIServiceSimulateTransactionBundleByForkBody.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,6 @@ import {
2727
* @interface SolidityServiceSolidityAPIServiceSimulateTransactionBundleByForkBody
2828
*/
2929
export interface SolidityServiceSolidityAPIServiceSimulateTransactionBundleByForkBody {
30-
/**
31-
*
32-
* @type {object}
33-
* @memberof SolidityServiceSolidityAPIServiceSimulateTransactionBundleByForkBody
34-
*/
35-
chainSpec?: object;
3630
/**
3731
* For blockNumber, transactionIndex, networkId, stateOverrides and blockOverrides fields, only the first simulation takes effect.
3832
* @type {Array<SolidityServiceSimulation>}
@@ -59,7 +53,6 @@ export function SolidityServiceSolidityAPIServiceSimulateTransactionBundleByFork
5953
}
6054
return {
6155

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

7669
return {
7770

78-
'chainSpec': value['chainSpec'],
7971
'simulations': ((value['simulations'] as Array<any>).map(SolidityServiceSimulationToJSON)),
8072
};
8173
}

src/models/SolidityServiceSolidityAPIServiceSimulateTransactionByForkBody.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,6 @@ import {
2727
* @interface SolidityServiceSolidityAPIServiceSimulateTransactionByForkBody
2828
*/
2929
export interface SolidityServiceSolidityAPIServiceSimulateTransactionByForkBody {
30-
/**
31-
*
32-
* @type {object}
33-
* @memberof SolidityServiceSolidityAPIServiceSimulateTransactionByForkBody
34-
*/
35-
chainSpec?: object;
3630
/**
3731
*
3832
* @type {SolidityServiceSimulation}
@@ -59,7 +53,6 @@ export function SolidityServiceSolidityAPIServiceSimulateTransactionByForkBodyFr
5953
}
6054
return {
6155

62-
'chainSpec': json['chainSpec'] == null ? undefined : json['chainSpec'],
6356
'simulation': SolidityServiceSimulationFromJSON(json['simulation']),
6457
};
6558
}
@@ -75,7 +68,6 @@ export function SolidityServiceSolidityAPIServiceSimulateTransactionByForkBodyFr
7568

7669
return {
7770

78-
'chainSpec': value['chainSpec'],
7971
'simulation': SolidityServiceSimulationToJSON(value['simulation']),
8072
};
8173
}

src/models/SolidityServiceTxIdentifier.ts

Lines changed: 0 additions & 81 deletions
This file was deleted.

src/models/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,6 @@ export * from './SolidityServiceSourceSpec.js';
182182
export * from './SolidityServiceSpecializations.js';
183183
export * from './SolidityServiceStateOverride.js';
184184
export * from './SolidityServiceStorageSummaryResult.js';
185-
export * from './SolidityServiceTxIdentifier.js';
186185
export * from './SolidityServiceUpdateForkResponse.js';
187186
export * from './TxindexEvmRawTransaction.js';
188187
export * from './TxindexEvmSearchTransactionsResponse.js';

0 commit comments

Comments
 (0)