@sentio/api 1.0.2-rc.17 → 1.0.2-rc.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/apis/DebugAndSimulationApi.d.ts +168 -19
- package/dist/src/apis/DebugAndSimulationApi.js +424 -43
- package/dist/src/apis/DebugAndSimulationApi.js.map +1 -1
- package/dist/src/apis/DefaultApi.d.ts +31 -0
- package/dist/src/apis/DefaultApi.js +54 -0
- package/dist/src/apis/DefaultApi.js.map +1 -0
- package/dist/src/apis/ForksApi.d.ts +84 -0
- package/dist/src/apis/ForksApi.js +211 -0
- package/dist/src/apis/ForksApi.js.map +1 -0
- package/dist/src/apis/index.d.ts +2 -0
- package/dist/src/apis/index.js +2 -0
- package/dist/src/apis/index.js.map +1 -1
- package/dist/src/models/SolidityServiceBaseChainConfig.d.ts +3 -2
- package/dist/src/models/SolidityServiceBaseChainConfig.js +3 -2
- package/dist/src/models/SolidityServiceBaseChainConfig.js.map +1 -1
- package/dist/src/models/SolidityServiceCreateForkResponse.d.ts +33 -0
- package/dist/src/models/SolidityServiceCreateForkResponse.js +43 -0
- package/dist/src/models/SolidityServiceCreateForkResponse.js.map +1 -0
- package/dist/src/models/SolidityServiceExternalFork.d.ts +39 -0
- package/dist/src/models/SolidityServiceExternalFork.js +45 -0
- package/dist/src/models/SolidityServiceExternalFork.js.map +1 -0
- package/dist/src/models/SolidityServiceFork.d.ts +77 -0
- package/dist/src/models/SolidityServiceFork.js +59 -0
- package/dist/src/models/SolidityServiceFork.js.map +1 -0
- package/dist/src/models/SolidityServiceForkServiceCreateForkBody.d.ts +33 -0
- package/dist/src/models/SolidityServiceForkServiceCreateForkBody.js +45 -0
- package/dist/src/models/SolidityServiceForkServiceCreateForkBody.js.map +1 -0
- package/dist/src/models/SolidityServiceForkServiceUpdateForkBody.d.ts +33 -0
- package/dist/src/models/SolidityServiceForkServiceUpdateForkBody.js +45 -0
- package/dist/src/models/SolidityServiceForkServiceUpdateForkBody.js.map +1 -0
- package/dist/src/models/SolidityServiceForkType.d.ts +25 -0
- package/dist/src/models/SolidityServiceForkType.js +44 -0
- package/dist/src/models/SolidityServiceForkType.js.map +1 -0
- package/dist/src/models/SolidityServiceGetForkInfoResponse.d.ts +70 -0
- package/dist/src/models/SolidityServiceGetForkInfoResponse.js +56 -0
- package/dist/src/models/SolidityServiceGetForkInfoResponse.js.map +1 -0
- package/dist/src/models/SolidityServiceGetForkResponse.d.ts +33 -0
- package/dist/src/models/SolidityServiceGetForkResponse.js +43 -0
- package/dist/src/models/SolidityServiceGetForkResponse.js.map +1 -0
- package/dist/src/models/SolidityServiceListForksResponse.d.ts +33 -0
- package/dist/src/models/SolidityServiceListForksResponse.js +43 -0
- package/dist/src/models/SolidityServiceListForksResponse.js.map +1 -0
- package/dist/src/models/SolidityServiceManagedFork.d.ts +45 -0
- package/dist/src/models/SolidityServiceManagedFork.js +47 -0
- package/dist/src/models/SolidityServiceManagedFork.js.map +1 -0
- package/dist/src/models/SolidityServiceNodeEnvironment.d.ts +50 -0
- package/dist/src/models/SolidityServiceNodeEnvironment.js +48 -0
- package/dist/src/models/SolidityServiceNodeEnvironment.js.map +1 -0
- package/dist/src/models/SolidityServiceNodeForkConfig.d.ts +44 -0
- package/dist/src/models/SolidityServiceNodeForkConfig.js +46 -0
- package/dist/src/models/SolidityServiceNodeForkConfig.js.map +1 -0
- package/dist/src/models/SolidityServiceSolidityAPIServiceSimulateTransactionBody.d.ts +40 -0
- package/dist/src/models/SolidityServiceSolidityAPIServiceSimulateTransactionBody.js +48 -0
- package/dist/src/models/SolidityServiceSolidityAPIServiceSimulateTransactionBody.js.map +1 -0
- package/dist/src/models/SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpec.d.ts +32 -0
- package/dist/src/models/SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpec.js +42 -0
- package/dist/src/models/SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpec.js.map +1 -0
- package/dist/src/models/SolidityServiceSolidityAPIServiceSimulateTransactionBundleBody.d.ts +40 -0
- package/dist/src/models/SolidityServiceSolidityAPIServiceSimulateTransactionBundleBody.js +48 -0
- package/dist/src/models/SolidityServiceSolidityAPIServiceSimulateTransactionBundleBody.js.map +1 -0
- package/dist/src/models/SolidityServiceSourceFetcherType.d.ts +26 -0
- package/dist/src/models/SolidityServiceSourceFetcherType.js +45 -0
- package/dist/src/models/SolidityServiceSourceFetcherType.js.map +1 -0
- package/dist/src/models/SolidityServiceUpdateForkResponse.d.ts +33 -0
- package/dist/src/models/SolidityServiceUpdateForkResponse.js +43 -0
- package/dist/src/models/SolidityServiceUpdateForkResponse.js.map +1 -0
- package/dist/src/models/index.d.ts +17 -2
- package/dist/src/models/index.js +17 -2
- package/dist/src/models/index.js.map +1 -1
- package/package.json +1 -1
- package/src/apis/DebugAndSimulationApi.ts +824 -110
- package/src/apis/DefaultApi.ts +87 -0
- package/src/apis/ForksApi.ts +384 -0
- package/src/apis/index.ts +2 -0
- package/src/models/SolidityServiceBaseChainConfig.ts +14 -4
- package/src/models/SolidityServiceCreateForkResponse.ts +73 -0
- package/src/models/SolidityServiceExternalFork.ts +81 -0
- package/src/models/SolidityServiceFork.ts +145 -0
- package/src/models/SolidityServiceForkServiceCreateForkBody.ts +74 -0
- package/src/models/SolidityServiceForkServiceUpdateForkBody.ts +74 -0
- package/src/models/SolidityServiceForkType.ts +53 -0
- package/src/models/SolidityServiceGetForkInfoResponse.ts +128 -0
- package/src/models/SolidityServiceGetForkResponse.ts +73 -0
- package/src/models/SolidityServiceListForksResponse.ts +73 -0
- package/src/models/SolidityServiceManagedFork.ts +89 -0
- package/src/models/SolidityServiceNodeEnvironment.ts +89 -0
- package/src/models/SolidityServiceNodeForkConfig.ts +81 -0
- package/src/models/SolidityServiceSolidityAPIServiceSimulateTransactionBody.ts +89 -0
- package/src/models/SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpec.ts +65 -0
- package/src/models/SolidityServiceSolidityAPIServiceSimulateTransactionBundleBody.ts +89 -0
- package/src/models/SolidityServiceSourceFetcherType.ts +54 -0
- package/src/models/SolidityServiceUpdateForkResponse.ts +73 -0
- package/src/models/index.ts +17 -2
- package/dist/src/models/SolidityServiceSimulateTransactionBundleRequest.d.ts +0 -45
- package/dist/src/models/SolidityServiceSimulateTransactionBundleRequest.js +0 -53
- package/dist/src/models/SolidityServiceSimulateTransactionBundleRequest.js.map +0 -1
- package/dist/src/models/SolidityServiceSimulateTransactionRequest.d.ts +0 -45
- package/dist/src/models/SolidityServiceSimulateTransactionRequest.js +0 -53
- package/dist/src/models/SolidityServiceSimulateTransactionRequest.js.map +0 -1
- package/src/models/SolidityServiceSimulateTransactionBundleRequest.ts +0 -92
- package/src/models/SolidityServiceSimulateTransactionRequest.ts +0 -92
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Sentio API
|
|
5
|
+
* Sentio Open API for query data
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: version not set
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
import { mapValues } from '../runtime.js';
|
|
16
|
+
import type { SolidityServiceChainIdentifier } from './SolidityServiceChainIdentifier.js';
|
|
17
|
+
import {
|
|
18
|
+
SolidityServiceChainIdentifierFromJSON,
|
|
19
|
+
SolidityServiceChainIdentifierFromJSONTyped,
|
|
20
|
+
SolidityServiceChainIdentifierToJSON,
|
|
21
|
+
SolidityServiceChainIdentifierToJSONTyped,
|
|
22
|
+
} from './SolidityServiceChainIdentifier.js';
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @export
|
|
27
|
+
* @interface SolidityServiceManagedFork
|
|
28
|
+
*/
|
|
29
|
+
export interface SolidityServiceManagedFork {
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {SolidityServiceChainIdentifier}
|
|
33
|
+
* @memberof SolidityServiceManagedFork
|
|
34
|
+
*/
|
|
35
|
+
chainSpec?: SolidityServiceChainIdentifier;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof SolidityServiceManagedFork
|
|
40
|
+
*/
|
|
41
|
+
rpcEndpoint?: string;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {number}
|
|
45
|
+
* @memberof SolidityServiceManagedFork
|
|
46
|
+
*/
|
|
47
|
+
parentBlockNumber?: number;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
/**
|
|
51
|
+
* Check if a given object implements the SolidityServiceManagedFork interface.
|
|
52
|
+
*/
|
|
53
|
+
export function instanceOfSolidityServiceManagedFork(value: object): value is SolidityServiceManagedFork {
|
|
54
|
+
return true;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
export function SolidityServiceManagedForkFromJSON(json: any): SolidityServiceManagedFork {
|
|
58
|
+
return SolidityServiceManagedForkFromJSONTyped(json, false);
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
export function SolidityServiceManagedForkFromJSONTyped(json: any, ignoreDiscriminator: boolean): SolidityServiceManagedFork {
|
|
62
|
+
if (json == null) {
|
|
63
|
+
return json;
|
|
64
|
+
}
|
|
65
|
+
return {
|
|
66
|
+
|
|
67
|
+
'chainSpec': json['chainSpec'] == null ? undefined : SolidityServiceChainIdentifierFromJSON(json['chainSpec']),
|
|
68
|
+
'rpcEndpoint': json['rpcEndpoint'] == null ? undefined : json['rpcEndpoint'],
|
|
69
|
+
'parentBlockNumber': json['parentBlockNumber'] == null ? undefined : json['parentBlockNumber'],
|
|
70
|
+
};
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
export function SolidityServiceManagedForkToJSON(json: any): SolidityServiceManagedFork {
|
|
74
|
+
return SolidityServiceManagedForkToJSONTyped(json, false);
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
export function SolidityServiceManagedForkToJSONTyped(value?: SolidityServiceManagedFork | null, ignoreDiscriminator: boolean = false): any {
|
|
78
|
+
if (value == null) {
|
|
79
|
+
return value;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
return {
|
|
83
|
+
|
|
84
|
+
'chainSpec': SolidityServiceChainIdentifierToJSON(value['chainSpec']),
|
|
85
|
+
'rpcEndpoint': value['rpcEndpoint'],
|
|
86
|
+
'parentBlockNumber': value['parentBlockNumber'],
|
|
87
|
+
};
|
|
88
|
+
}
|
|
89
|
+
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Sentio API
|
|
5
|
+
* Sentio Open API for query data
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: version not set
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
import { mapValues } from '../runtime.js';
|
|
16
|
+
/**
|
|
17
|
+
*
|
|
18
|
+
* @export
|
|
19
|
+
* @interface SolidityServiceNodeEnvironment
|
|
20
|
+
*/
|
|
21
|
+
export interface SolidityServiceNodeEnvironment {
|
|
22
|
+
/**
|
|
23
|
+
*
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof SolidityServiceNodeEnvironment
|
|
26
|
+
*/
|
|
27
|
+
chainId?: string;
|
|
28
|
+
/**
|
|
29
|
+
*
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof SolidityServiceNodeEnvironment
|
|
32
|
+
*/
|
|
33
|
+
baseFee?: string;
|
|
34
|
+
/**
|
|
35
|
+
*
|
|
36
|
+
* @type {string}
|
|
37
|
+
* @memberof SolidityServiceNodeEnvironment
|
|
38
|
+
*/
|
|
39
|
+
gasLimit?: string;
|
|
40
|
+
/**
|
|
41
|
+
*
|
|
42
|
+
* @type {string}
|
|
43
|
+
* @memberof SolidityServiceNodeEnvironment
|
|
44
|
+
*/
|
|
45
|
+
gasPrice?: string;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* Check if a given object implements the SolidityServiceNodeEnvironment interface.
|
|
50
|
+
*/
|
|
51
|
+
export function instanceOfSolidityServiceNodeEnvironment(value: object): value is SolidityServiceNodeEnvironment {
|
|
52
|
+
return true;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
export function SolidityServiceNodeEnvironmentFromJSON(json: any): SolidityServiceNodeEnvironment {
|
|
56
|
+
return SolidityServiceNodeEnvironmentFromJSONTyped(json, false);
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
export function SolidityServiceNodeEnvironmentFromJSONTyped(json: any, ignoreDiscriminator: boolean): SolidityServiceNodeEnvironment {
|
|
60
|
+
if (json == null) {
|
|
61
|
+
return json;
|
|
62
|
+
}
|
|
63
|
+
return {
|
|
64
|
+
|
|
65
|
+
'chainId': json['chainId'] == null ? undefined : json['chainId'],
|
|
66
|
+
'baseFee': json['baseFee'] == null ? undefined : json['baseFee'],
|
|
67
|
+
'gasLimit': json['gasLimit'] == null ? undefined : json['gasLimit'],
|
|
68
|
+
'gasPrice': json['gasPrice'] == null ? undefined : json['gasPrice'],
|
|
69
|
+
};
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
export function SolidityServiceNodeEnvironmentToJSON(json: any): SolidityServiceNodeEnvironment {
|
|
73
|
+
return SolidityServiceNodeEnvironmentToJSONTyped(json, false);
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
export function SolidityServiceNodeEnvironmentToJSONTyped(value?: SolidityServiceNodeEnvironment | null, ignoreDiscriminator: boolean = false): any {
|
|
77
|
+
if (value == null) {
|
|
78
|
+
return value;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
return {
|
|
82
|
+
|
|
83
|
+
'chainId': value['chainId'],
|
|
84
|
+
'baseFee': value['baseFee'],
|
|
85
|
+
'gasLimit': value['gasLimit'],
|
|
86
|
+
'gasPrice': value['gasPrice'],
|
|
87
|
+
};
|
|
88
|
+
}
|
|
89
|
+
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Sentio API
|
|
5
|
+
* Sentio Open API for query data
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: version not set
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
import { mapValues } from '../runtime.js';
|
|
16
|
+
/**
|
|
17
|
+
*
|
|
18
|
+
* @export
|
|
19
|
+
* @interface SolidityServiceNodeForkConfig
|
|
20
|
+
*/
|
|
21
|
+
export interface SolidityServiceNodeForkConfig {
|
|
22
|
+
/**
|
|
23
|
+
*
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof SolidityServiceNodeForkConfig
|
|
26
|
+
*/
|
|
27
|
+
forkUrl?: string;
|
|
28
|
+
/**
|
|
29
|
+
*
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof SolidityServiceNodeForkConfig
|
|
32
|
+
*/
|
|
33
|
+
forkBlockNumber?: string;
|
|
34
|
+
/**
|
|
35
|
+
*
|
|
36
|
+
* @type {string}
|
|
37
|
+
* @memberof SolidityServiceNodeForkConfig
|
|
38
|
+
*/
|
|
39
|
+
forkRetryBackoff?: string;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
/**
|
|
43
|
+
* Check if a given object implements the SolidityServiceNodeForkConfig interface.
|
|
44
|
+
*/
|
|
45
|
+
export function instanceOfSolidityServiceNodeForkConfig(value: object): value is SolidityServiceNodeForkConfig {
|
|
46
|
+
return true;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
export function SolidityServiceNodeForkConfigFromJSON(json: any): SolidityServiceNodeForkConfig {
|
|
50
|
+
return SolidityServiceNodeForkConfigFromJSONTyped(json, false);
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
export function SolidityServiceNodeForkConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): SolidityServiceNodeForkConfig {
|
|
54
|
+
if (json == null) {
|
|
55
|
+
return json;
|
|
56
|
+
}
|
|
57
|
+
return {
|
|
58
|
+
|
|
59
|
+
'forkUrl': json['forkUrl'] == null ? undefined : json['forkUrl'],
|
|
60
|
+
'forkBlockNumber': json['forkBlockNumber'] == null ? undefined : json['forkBlockNumber'],
|
|
61
|
+
'forkRetryBackoff': json['forkRetryBackoff'] == null ? undefined : json['forkRetryBackoff'],
|
|
62
|
+
};
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
export function SolidityServiceNodeForkConfigToJSON(json: any): SolidityServiceNodeForkConfig {
|
|
66
|
+
return SolidityServiceNodeForkConfigToJSONTyped(json, false);
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
export function SolidityServiceNodeForkConfigToJSONTyped(value?: SolidityServiceNodeForkConfig | null, ignoreDiscriminator: boolean = false): any {
|
|
70
|
+
if (value == null) {
|
|
71
|
+
return value;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
return {
|
|
75
|
+
|
|
76
|
+
'forkUrl': value['forkUrl'],
|
|
77
|
+
'forkBlockNumber': value['forkBlockNumber'],
|
|
78
|
+
'forkRetryBackoff': value['forkRetryBackoff'],
|
|
79
|
+
};
|
|
80
|
+
}
|
|
81
|
+
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Sentio API
|
|
5
|
+
* Sentio Open API for query data
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: version not set
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
import { mapValues } from '../runtime.js';
|
|
16
|
+
import type { SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpec } from './SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpec.js';
|
|
17
|
+
import {
|
|
18
|
+
SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpecFromJSON,
|
|
19
|
+
SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpecFromJSONTyped,
|
|
20
|
+
SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpecToJSON,
|
|
21
|
+
SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpecToJSONTyped,
|
|
22
|
+
} from './SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpec.js';
|
|
23
|
+
import type { SolidityServiceSimulation } from './SolidityServiceSimulation.js';
|
|
24
|
+
import {
|
|
25
|
+
SolidityServiceSimulationFromJSON,
|
|
26
|
+
SolidityServiceSimulationFromJSONTyped,
|
|
27
|
+
SolidityServiceSimulationToJSON,
|
|
28
|
+
SolidityServiceSimulationToJSONTyped,
|
|
29
|
+
} from './SolidityServiceSimulation.js';
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @export
|
|
34
|
+
* @interface SolidityServiceSolidityAPIServiceSimulateTransactionBody
|
|
35
|
+
*/
|
|
36
|
+
export interface SolidityServiceSolidityAPIServiceSimulateTransactionBody {
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpec}
|
|
40
|
+
* @memberof SolidityServiceSolidityAPIServiceSimulateTransactionBody
|
|
41
|
+
*/
|
|
42
|
+
chainSpec?: SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpec;
|
|
43
|
+
/**
|
|
44
|
+
*
|
|
45
|
+
* @type {SolidityServiceSimulation}
|
|
46
|
+
* @memberof SolidityServiceSolidityAPIServiceSimulateTransactionBody
|
|
47
|
+
*/
|
|
48
|
+
simulation: SolidityServiceSimulation;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* Check if a given object implements the SolidityServiceSolidityAPIServiceSimulateTransactionBody interface.
|
|
53
|
+
*/
|
|
54
|
+
export function instanceOfSolidityServiceSolidityAPIServiceSimulateTransactionBody(value: object): value is SolidityServiceSolidityAPIServiceSimulateTransactionBody {
|
|
55
|
+
if (!('simulation' in value) || value['simulation'] === undefined) return false;
|
|
56
|
+
return true;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
export function SolidityServiceSolidityAPIServiceSimulateTransactionBodyFromJSON(json: any): SolidityServiceSolidityAPIServiceSimulateTransactionBody {
|
|
60
|
+
return SolidityServiceSolidityAPIServiceSimulateTransactionBodyFromJSONTyped(json, false);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
export function SolidityServiceSolidityAPIServiceSimulateTransactionBodyFromJSONTyped(json: any, ignoreDiscriminator: boolean): SolidityServiceSolidityAPIServiceSimulateTransactionBody {
|
|
64
|
+
if (json == null) {
|
|
65
|
+
return json;
|
|
66
|
+
}
|
|
67
|
+
return {
|
|
68
|
+
|
|
69
|
+
'chainSpec': json['chainSpec'] == null ? undefined : SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpecFromJSON(json['chainSpec']),
|
|
70
|
+
'simulation': SolidityServiceSimulationFromJSON(json['simulation']),
|
|
71
|
+
};
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
export function SolidityServiceSolidityAPIServiceSimulateTransactionBodyToJSON(json: any): SolidityServiceSolidityAPIServiceSimulateTransactionBody {
|
|
75
|
+
return SolidityServiceSolidityAPIServiceSimulateTransactionBodyToJSONTyped(json, false);
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
export function SolidityServiceSolidityAPIServiceSimulateTransactionBodyToJSONTyped(value?: SolidityServiceSolidityAPIServiceSimulateTransactionBody | null, ignoreDiscriminator: boolean = false): any {
|
|
79
|
+
if (value == null) {
|
|
80
|
+
return value;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
return {
|
|
84
|
+
|
|
85
|
+
'chainSpec': SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpecToJSON(value['chainSpec']),
|
|
86
|
+
'simulation': SolidityServiceSimulationToJSON(value['simulation']),
|
|
87
|
+
};
|
|
88
|
+
}
|
|
89
|
+
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Sentio API
|
|
5
|
+
* Sentio Open API for query data
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: version not set
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
import { mapValues } from '../runtime.js';
|
|
16
|
+
/**
|
|
17
|
+
*
|
|
18
|
+
* @export
|
|
19
|
+
* @interface SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpec
|
|
20
|
+
*/
|
|
21
|
+
export interface SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpec {
|
|
22
|
+
/**
|
|
23
|
+
*
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpec
|
|
26
|
+
*/
|
|
27
|
+
chainId?: string;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* Check if a given object implements the SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpec interface.
|
|
32
|
+
*/
|
|
33
|
+
export function instanceOfSolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpec(value: object): value is SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpec {
|
|
34
|
+
return true;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
export function SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpecFromJSON(json: any): SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpec {
|
|
38
|
+
return SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpecFromJSONTyped(json, false);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
export function SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpecFromJSONTyped(json: any, ignoreDiscriminator: boolean): SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpec {
|
|
42
|
+
if (json == null) {
|
|
43
|
+
return json;
|
|
44
|
+
}
|
|
45
|
+
return {
|
|
46
|
+
|
|
47
|
+
'chainId': json['chainId'] == null ? undefined : json['chainId'],
|
|
48
|
+
};
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
export function SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpecToJSON(json: any): SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpec {
|
|
52
|
+
return SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpecToJSONTyped(json, false);
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
export function SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpecToJSONTyped(value?: SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpec | null, ignoreDiscriminator: boolean = false): any {
|
|
56
|
+
if (value == null) {
|
|
57
|
+
return value;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
return {
|
|
61
|
+
|
|
62
|
+
'chainId': value['chainId'],
|
|
63
|
+
};
|
|
64
|
+
}
|
|
65
|
+
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Sentio API
|
|
5
|
+
* Sentio Open API for query data
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: version not set
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
import { mapValues } from '../runtime.js';
|
|
16
|
+
import type { SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpec } from './SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpec.js';
|
|
17
|
+
import {
|
|
18
|
+
SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpecFromJSON,
|
|
19
|
+
SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpecFromJSONTyped,
|
|
20
|
+
SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpecToJSON,
|
|
21
|
+
SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpecToJSONTyped,
|
|
22
|
+
} from './SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpec.js';
|
|
23
|
+
import type { SolidityServiceSimulation } from './SolidityServiceSimulation.js';
|
|
24
|
+
import {
|
|
25
|
+
SolidityServiceSimulationFromJSON,
|
|
26
|
+
SolidityServiceSimulationFromJSONTyped,
|
|
27
|
+
SolidityServiceSimulationToJSON,
|
|
28
|
+
SolidityServiceSimulationToJSONTyped,
|
|
29
|
+
} from './SolidityServiceSimulation.js';
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @export
|
|
34
|
+
* @interface SolidityServiceSolidityAPIServiceSimulateTransactionBundleBody
|
|
35
|
+
*/
|
|
36
|
+
export interface SolidityServiceSolidityAPIServiceSimulateTransactionBundleBody {
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpec}
|
|
40
|
+
* @memberof SolidityServiceSolidityAPIServiceSimulateTransactionBundleBody
|
|
41
|
+
*/
|
|
42
|
+
chainSpec?: SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpec;
|
|
43
|
+
/**
|
|
44
|
+
* For blockNumber, transactionIndex, networkId, stateOverrides and blockOverrides fields, only the first simulation takes effect.
|
|
45
|
+
* @type {Array<SolidityServiceSimulation>}
|
|
46
|
+
* @memberof SolidityServiceSolidityAPIServiceSimulateTransactionBundleBody
|
|
47
|
+
*/
|
|
48
|
+
simulations: Array<SolidityServiceSimulation>;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* Check if a given object implements the SolidityServiceSolidityAPIServiceSimulateTransactionBundleBody interface.
|
|
53
|
+
*/
|
|
54
|
+
export function instanceOfSolidityServiceSolidityAPIServiceSimulateTransactionBundleBody(value: object): value is SolidityServiceSolidityAPIServiceSimulateTransactionBundleBody {
|
|
55
|
+
if (!('simulations' in value) || value['simulations'] === undefined) return false;
|
|
56
|
+
return true;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
export function SolidityServiceSolidityAPIServiceSimulateTransactionBundleBodyFromJSON(json: any): SolidityServiceSolidityAPIServiceSimulateTransactionBundleBody {
|
|
60
|
+
return SolidityServiceSolidityAPIServiceSimulateTransactionBundleBodyFromJSONTyped(json, false);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
export function SolidityServiceSolidityAPIServiceSimulateTransactionBundleBodyFromJSONTyped(json: any, ignoreDiscriminator: boolean): SolidityServiceSolidityAPIServiceSimulateTransactionBundleBody {
|
|
64
|
+
if (json == null) {
|
|
65
|
+
return json;
|
|
66
|
+
}
|
|
67
|
+
return {
|
|
68
|
+
|
|
69
|
+
'chainSpec': json['chainSpec'] == null ? undefined : SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpecFromJSON(json['chainSpec']),
|
|
70
|
+
'simulations': ((json['simulations'] as Array<any>).map(SolidityServiceSimulationFromJSON)),
|
|
71
|
+
};
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
export function SolidityServiceSolidityAPIServiceSimulateTransactionBundleBodyToJSON(json: any): SolidityServiceSolidityAPIServiceSimulateTransactionBundleBody {
|
|
75
|
+
return SolidityServiceSolidityAPIServiceSimulateTransactionBundleBodyToJSONTyped(json, false);
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
export function SolidityServiceSolidityAPIServiceSimulateTransactionBundleBodyToJSONTyped(value?: SolidityServiceSolidityAPIServiceSimulateTransactionBundleBody | null, ignoreDiscriminator: boolean = false): any {
|
|
79
|
+
if (value == null) {
|
|
80
|
+
return value;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
return {
|
|
84
|
+
|
|
85
|
+
'chainSpec': SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpecToJSON(value['chainSpec']),
|
|
86
|
+
'simulations': ((value['simulations'] as Array<any>).map(SolidityServiceSimulationToJSON)),
|
|
87
|
+
};
|
|
88
|
+
}
|
|
89
|
+
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Sentio API
|
|
5
|
+
* Sentio Open API for query data
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: version not set
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
*
|
|
18
|
+
* @export
|
|
19
|
+
*/
|
|
20
|
+
export const SolidityServiceSourceFetcherType = {
|
|
21
|
+
Etherscan: 'ETHERSCAN',
|
|
22
|
+
Blockscout: 'BLOCKSCOUT',
|
|
23
|
+
Oklink: 'OKLINK'
|
|
24
|
+
} as const;
|
|
25
|
+
export type SolidityServiceSourceFetcherType = typeof SolidityServiceSourceFetcherType[keyof typeof SolidityServiceSourceFetcherType];
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
export function instanceOfSolidityServiceSourceFetcherType(value: any): boolean {
|
|
29
|
+
for (const key in SolidityServiceSourceFetcherType) {
|
|
30
|
+
if (Object.prototype.hasOwnProperty.call(SolidityServiceSourceFetcherType, key)) {
|
|
31
|
+
if (SolidityServiceSourceFetcherType[key as keyof typeof SolidityServiceSourceFetcherType] === value) {
|
|
32
|
+
return true;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
return false;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
export function SolidityServiceSourceFetcherTypeFromJSON(json: any): SolidityServiceSourceFetcherType {
|
|
40
|
+
return SolidityServiceSourceFetcherTypeFromJSONTyped(json, false);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export function SolidityServiceSourceFetcherTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): SolidityServiceSourceFetcherType {
|
|
44
|
+
return json as SolidityServiceSourceFetcherType;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
export function SolidityServiceSourceFetcherTypeToJSON(value?: SolidityServiceSourceFetcherType | null): any {
|
|
48
|
+
return value as any;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
export function SolidityServiceSourceFetcherTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): SolidityServiceSourceFetcherType {
|
|
52
|
+
return value as SolidityServiceSourceFetcherType;
|
|
53
|
+
}
|
|
54
|
+
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Sentio API
|
|
5
|
+
* Sentio Open API for query data
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: version not set
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
import { mapValues } from '../runtime.js';
|
|
16
|
+
import type { SolidityServiceFork } from './SolidityServiceFork.js';
|
|
17
|
+
import {
|
|
18
|
+
SolidityServiceForkFromJSON,
|
|
19
|
+
SolidityServiceForkFromJSONTyped,
|
|
20
|
+
SolidityServiceForkToJSON,
|
|
21
|
+
SolidityServiceForkToJSONTyped,
|
|
22
|
+
} from './SolidityServiceFork.js';
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @export
|
|
27
|
+
* @interface SolidityServiceUpdateForkResponse
|
|
28
|
+
*/
|
|
29
|
+
export interface SolidityServiceUpdateForkResponse {
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {SolidityServiceFork}
|
|
33
|
+
* @memberof SolidityServiceUpdateForkResponse
|
|
34
|
+
*/
|
|
35
|
+
fork?: SolidityServiceFork;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* Check if a given object implements the SolidityServiceUpdateForkResponse interface.
|
|
40
|
+
*/
|
|
41
|
+
export function instanceOfSolidityServiceUpdateForkResponse(value: object): value is SolidityServiceUpdateForkResponse {
|
|
42
|
+
return true;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
export function SolidityServiceUpdateForkResponseFromJSON(json: any): SolidityServiceUpdateForkResponse {
|
|
46
|
+
return SolidityServiceUpdateForkResponseFromJSONTyped(json, false);
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
export function SolidityServiceUpdateForkResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SolidityServiceUpdateForkResponse {
|
|
50
|
+
if (json == null) {
|
|
51
|
+
return json;
|
|
52
|
+
}
|
|
53
|
+
return {
|
|
54
|
+
|
|
55
|
+
'fork': json['fork'] == null ? undefined : SolidityServiceForkFromJSON(json['fork']),
|
|
56
|
+
};
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
export function SolidityServiceUpdateForkResponseToJSON(json: any): SolidityServiceUpdateForkResponse {
|
|
60
|
+
return SolidityServiceUpdateForkResponseToJSONTyped(json, false);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
export function SolidityServiceUpdateForkResponseToJSONTyped(value?: SolidityServiceUpdateForkResponse | null, ignoreDiscriminator: boolean = false): any {
|
|
64
|
+
if (value == null) {
|
|
65
|
+
return value;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
return {
|
|
69
|
+
|
|
70
|
+
'fork': SolidityServiceForkToJSON(value['fork']),
|
|
71
|
+
};
|
|
72
|
+
}
|
|
73
|
+
|
package/src/models/index.ts
CHANGED
|
@@ -137,9 +137,17 @@ export * from './SolidityServiceChainIdentifier.js';
|
|
|
137
137
|
export * from './SolidityServiceCompileSourceInternalResponse.js';
|
|
138
138
|
export * from './SolidityServiceCompilerOptions.js';
|
|
139
139
|
export * from './SolidityServiceContractKeyInfo.js';
|
|
140
|
+
export * from './SolidityServiceCreateForkResponse.js';
|
|
140
141
|
export * from './SolidityServiceDecodeStateDiffResponse.js';
|
|
142
|
+
export * from './SolidityServiceExternalFork.js';
|
|
141
143
|
export * from './SolidityServiceFailure.js';
|
|
142
144
|
export * from './SolidityServiceFetchAndCompileInternalResponse.js';
|
|
145
|
+
export * from './SolidityServiceFork.js';
|
|
146
|
+
export * from './SolidityServiceForkServiceCreateForkBody.js';
|
|
147
|
+
export * from './SolidityServiceForkServiceUpdateForkBody.js';
|
|
148
|
+
export * from './SolidityServiceForkType.js';
|
|
149
|
+
export * from './SolidityServiceGetForkInfoResponse.js';
|
|
150
|
+
export * from './SolidityServiceGetForkResponse.js';
|
|
143
151
|
export * from './SolidityServiceGetSimulationBundleResponse.js';
|
|
144
152
|
export * from './SolidityServiceGetSimulationResponse.js';
|
|
145
153
|
export * from './SolidityServiceGetSimulationsResponse.js';
|
|
@@ -148,18 +156,24 @@ export * from './SolidityServiceGetTraceCallInternalRequestBundle.js';
|
|
|
148
156
|
export * from './SolidityServiceGetTraceCallInternalRequestStateContext.js';
|
|
149
157
|
export * from './SolidityServiceGetTraceCallInternalResponse.js';
|
|
150
158
|
export * from './SolidityServiceGetTraceTransactionInternalResponse.js';
|
|
159
|
+
export * from './SolidityServiceListForksResponse.js';
|
|
160
|
+
export * from './SolidityServiceManagedFork.js';
|
|
151
161
|
export * from './SolidityServiceMetadata.js';
|
|
162
|
+
export * from './SolidityServiceNodeEnvironment.js';
|
|
163
|
+
export * from './SolidityServiceNodeForkConfig.js';
|
|
152
164
|
export * from './SolidityServiceOptimizer.js';
|
|
153
165
|
export * from './SolidityServiceOptimizerDetails.js';
|
|
154
166
|
export * from './SolidityServiceOptimizerDetailsYulDetails.js';
|
|
155
167
|
export * from './SolidityServicePreProcessCompilationInternalResponse.js';
|
|
156
168
|
export * from './SolidityServiceSettings.js';
|
|
157
|
-
export * from './SolidityServiceSimulateTransactionBundleRequest.js';
|
|
158
169
|
export * from './SolidityServiceSimulateTransactionBundleResponse.js';
|
|
159
|
-
export * from './SolidityServiceSimulateTransactionRequest.js';
|
|
160
170
|
export * from './SolidityServiceSimulateTransactionResponse.js';
|
|
161
171
|
export * from './SolidityServiceSimulation.js';
|
|
162
172
|
export * from './SolidityServiceSimulationResult.js';
|
|
173
|
+
export * from './SolidityServiceSolidityAPIServiceSimulateTransactionBody.js';
|
|
174
|
+
export * from './SolidityServiceSolidityAPIServiceSimulateTransactionBodyChainSpec.js';
|
|
175
|
+
export * from './SolidityServiceSolidityAPIServiceSimulateTransactionBundleBody.js';
|
|
176
|
+
export * from './SolidityServiceSourceFetcherType.js';
|
|
163
177
|
export * from './SolidityServiceSourceInfo.js';
|
|
164
178
|
export * from './SolidityServiceSourceMultiFile.js';
|
|
165
179
|
export * from './SolidityServiceSourceSpec.js';
|
|
@@ -167,6 +181,7 @@ export * from './SolidityServiceSpecializations.js';
|
|
|
167
181
|
export * from './SolidityServiceStateOverride.js';
|
|
168
182
|
export * from './SolidityServiceStorageSummaryResult.js';
|
|
169
183
|
export * from './SolidityServiceTxIdentifier.js';
|
|
184
|
+
export * from './SolidityServiceUpdateForkResponse.js';
|
|
170
185
|
export * from './TxindexEvmRawTransaction.js';
|
|
171
186
|
export * from './TxindexEvmSearchTransactionsResponse.js';
|
|
172
187
|
export * from './WebServiceChart.js';
|