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 ec97b02 commit 1e6fe7f
Show file tree
Hide file tree
Showing 8 changed files with 259 additions and 937 deletions.
828 changes: 163 additions & 665 deletions doc/index.html

Large diffs are not rendered by default.

194 changes: 45 additions & 149 deletions openapi.json

Large diffs are not rendered by default.

152 changes: 38 additions & 114 deletions src/apis/DebugAndSimulationApi.ts

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export interface SolidityServiceSolidityAPIServiceSimulateTransactionBody {
* @type {SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpec}
* @memberof SolidityServiceSolidityAPIServiceSimulateTransactionBody
*/
chainSpec?: SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpec;
chainSpec: SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpec;
/**
*
* @type {SolidityServiceSimulation}
Expand All @@ -52,6 +52,7 @@ export interface SolidityServiceSolidityAPIServiceSimulateTransactionBody {
* Check if a given object implements the SolidityServiceSolidityAPIServiceSimulateTransactionBody interface.
*/
export function instanceOfSolidityServiceSolidityAPIServiceSimulateTransactionBody(value: object): value is SolidityServiceSolidityAPIServiceSimulateTransactionBody {
if (!('chainSpec' in value) || value['chainSpec'] === undefined) return false;
if (!('simulation' in value) || value['simulation'] === undefined) return false;
return true;
}
Expand All @@ -66,7 +67,7 @@ export function SolidityServiceSolidityAPIServiceSimulateTransactionBodyFromJSON
}
return {

'chainSpec': json['chainSpec'] == null ? undefined : SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpecFromJSON(json['chainSpec']),
'chainSpec': SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpecFromJSON(json['chainSpec']),
'simulation': SolidityServiceSimulationFromJSON(json['simulation']),
};
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export interface SolidityServiceSolidityAPIServiceSimulateTransactionBundleBody
* @type {SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpec}
* @memberof SolidityServiceSolidityAPIServiceSimulateTransactionBundleBody
*/
chainSpec?: SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpec;
chainSpec: SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpec;
/**
* For blockNumber, transactionIndex, networkId, stateOverrides and blockOverrides fields, only the first simulation takes effect.
* @type {Array<SolidityServiceSimulation>}
Expand All @@ -52,6 +52,7 @@ export interface SolidityServiceSolidityAPIServiceSimulateTransactionBundleBody
* Check if a given object implements the SolidityServiceSolidityAPIServiceSimulateTransactionBundleBody interface.
*/
export function instanceOfSolidityServiceSolidityAPIServiceSimulateTransactionBundleBody(value: object): value is SolidityServiceSolidityAPIServiceSimulateTransactionBundleBody {
if (!('chainSpec' in value) || value['chainSpec'] === undefined) return false;
if (!('simulations' in value) || value['simulations'] === undefined) return false;
return true;
}
Expand All @@ -66,7 +67,7 @@ export function SolidityServiceSolidityAPIServiceSimulateTransactionBundleBodyFr
}
return {

'chainSpec': json['chainSpec'] == null ? undefined : SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpecFromJSON(json['chainSpec']),
'chainSpec': SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpecFromJSON(json['chainSpec']),
'simulations': ((json['simulations'] as Array<any>).map(SolidityServiceSimulationFromJSON)),
};
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export interface SolidityServiceSolidityAPIServiceSimulateTransactionBundleByFor
* @type {SolidityServiceSolidityAPIServiceSimulateTransactionBundleByForkBodyChainSpec}
* @memberof SolidityServiceSolidityAPIServiceSimulateTransactionBundleByForkBody
*/
chainSpec?: SolidityServiceSolidityAPIServiceSimulateTransactionBundleByForkBodyChainSpec;
chainSpec: SolidityServiceSolidityAPIServiceSimulateTransactionBundleByForkBodyChainSpec;
/**
* For blockNumber, transactionIndex, networkId, stateOverrides and blockOverrides fields, only the first simulation takes effect.
* @type {Array<SolidityServiceSimulation>}
Expand All @@ -52,6 +52,7 @@ export interface SolidityServiceSolidityAPIServiceSimulateTransactionBundleByFor
* Check if a given object implements the SolidityServiceSolidityAPIServiceSimulateTransactionBundleByForkBody interface.
*/
export function instanceOfSolidityServiceSolidityAPIServiceSimulateTransactionBundleByForkBody(value: object): value is SolidityServiceSolidityAPIServiceSimulateTransactionBundleByForkBody {
if (!('chainSpec' in value) || value['chainSpec'] === undefined) return false;
if (!('simulations' in value) || value['simulations'] === undefined) return false;
return true;
}
Expand All @@ -66,7 +67,7 @@ export function SolidityServiceSolidityAPIServiceSimulateTransactionBundleByFork
}
return {

'chainSpec': json['chainSpec'] == null ? undefined : SolidityServiceSolidityAPIServiceSimulateTransactionBundleByForkBodyChainSpecFromJSON(json['chainSpec']),
'chainSpec': SolidityServiceSolidityAPIServiceSimulateTransactionBundleByForkBodyChainSpecFromJSON(json['chainSpec']),
'simulations': ((json['simulations'] as Array<any>).map(SolidityServiceSimulationFromJSON)),
};
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export interface SolidityServiceSolidityAPIServiceSimulateTransactionByForkBody
* @type {SolidityServiceSolidityAPIServiceSimulateTransactionBundleByForkBodyChainSpec}
* @memberof SolidityServiceSolidityAPIServiceSimulateTransactionByForkBody
*/
chainSpec?: SolidityServiceSolidityAPIServiceSimulateTransactionBundleByForkBodyChainSpec;
chainSpec: SolidityServiceSolidityAPIServiceSimulateTransactionBundleByForkBodyChainSpec;
/**
*
* @type {SolidityServiceSimulation}
Expand All @@ -52,6 +52,7 @@ export interface SolidityServiceSolidityAPIServiceSimulateTransactionByForkBody
* Check if a given object implements the SolidityServiceSolidityAPIServiceSimulateTransactionByForkBody interface.
*/
export function instanceOfSolidityServiceSolidityAPIServiceSimulateTransactionByForkBody(value: object): value is SolidityServiceSolidityAPIServiceSimulateTransactionByForkBody {
if (!('chainSpec' in value) || value['chainSpec'] === undefined) return false;
if (!('simulation' in value) || value['simulation'] === undefined) return false;
return true;
}
Expand All @@ -66,7 +67,7 @@ export function SolidityServiceSolidityAPIServiceSimulateTransactionByForkBodyFr
}
return {

'chainSpec': json['chainSpec'] == null ? undefined : SolidityServiceSolidityAPIServiceSimulateTransactionBundleByForkBodyChainSpecFromJSON(json['chainSpec']),
'chainSpec': SolidityServiceSolidityAPIServiceSimulateTransactionBundleByForkBodyChainSpecFromJSON(json['chainSpec']),
'simulation': SolidityServiceSimulationFromJSON(json['simulation']),
};
}
Expand Down
2 changes: 1 addition & 1 deletion src/models/SolidityServiceTxIdentifier.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import { mapValues } from '../runtime.js';
*/
export interface SolidityServiceTxIdentifier {
/**
* One of txHash, simulationId, bundleId is required.
*
* @type {string}
* @memberof SolidityServiceTxIdentifier
*/
Expand Down

0 comments on commit 1e6fe7f

Please sign in to comment.