@sentio/api 1.0.2-rc.25 → 1.0.2-rc.27
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 +43 -43
- package/dist/src/apis/DebugAndSimulationApi.js +76 -76
- package/dist/src/apis/DebugAndSimulationApi.js.map +1 -1
- package/dist/src/models/SolidityServiceSolidityAPIServiceSimulateTransactionBody.d.ts +0 -6
- package/dist/src/models/SolidityServiceSolidityAPIServiceSimulateTransactionBody.js +0 -2
- package/dist/src/models/SolidityServiceSolidityAPIServiceSimulateTransactionBody.js.map +1 -1
- package/dist/src/models/SolidityServiceSolidityAPIServiceSimulateTransactionBundleBody.d.ts +0 -6
- package/dist/src/models/SolidityServiceSolidityAPIServiceSimulateTransactionBundleBody.js +0 -2
- package/dist/src/models/SolidityServiceSolidityAPIServiceSimulateTransactionBundleBody.js.map +1 -1
- package/dist/src/models/{SolidityServiceSolidityAPIServiceSimulateTransactionBundleByForkBody.d.ts → SolidityServiceSolidityAPIServiceSimulateTransactionBundleOnForkBody.d.ts} +9 -15
- package/dist/src/models/{SolidityServiceSolidityAPIServiceSimulateTransactionBundleByForkBody.js → SolidityServiceSolidityAPIServiceSimulateTransactionBundleOnForkBody.js} +9 -11
- package/dist/src/models/SolidityServiceSolidityAPIServiceSimulateTransactionBundleOnForkBody.js.map +1 -0
- package/dist/src/models/{SolidityServiceSolidityAPIServiceSimulateTransactionByForkBody.d.ts → SolidityServiceSolidityAPIServiceSimulateTransactionOnForkBody.d.ts} +9 -15
- package/dist/src/models/{SolidityServiceSolidityAPIServiceSimulateTransactionByForkBody.js → SolidityServiceSolidityAPIServiceSimulateTransactionOnForkBody.js} +9 -11
- package/dist/src/models/SolidityServiceSolidityAPIServiceSimulateTransactionOnForkBody.js.map +1 -0
- package/dist/src/models/index.d.ts +2 -3
- package/dist/src/models/index.js +2 -3
- package/dist/src/models/index.js.map +1 -1
- package/package.json +1 -1
- package/src/apis/DebugAndSimulationApi.ts +104 -104
- package/src/models/SolidityServiceSolidityAPIServiceSimulateTransactionBody.ts +0 -8
- package/src/models/SolidityServiceSolidityAPIServiceSimulateTransactionBundleBody.ts +0 -8
- package/src/models/{SolidityServiceSolidityAPIServiceSimulateTransactionBundleByForkBody.ts → SolidityServiceSolidityAPIServiceSimulateTransactionBundleOnForkBody.ts} +11 -19
- package/src/models/{SolidityServiceSolidityAPIServiceSimulateTransactionByForkBody.ts → SolidityServiceSolidityAPIServiceSimulateTransactionOnForkBody.ts} +11 -19
- package/src/models/index.ts +2 -3
- package/dist/src/models/SolidityServiceSolidityAPIServiceSimulateTransactionBundleByForkBody.js.map +0 -1
- package/dist/src/models/SolidityServiceSolidityAPIServiceSimulateTransactionByForkBody.js.map +0 -1
- package/dist/src/models/SolidityServiceTxIdentifier.d.ts +0 -44
- package/dist/src/models/SolidityServiceTxIdentifier.js +0 -46
- package/dist/src/models/SolidityServiceTxIdentifier.js.map +0 -1
- package/src/models/SolidityServiceTxIdentifier.ts +0 -81
|
@@ -24,58 +24,50 @@ import {
|
|
|
24
24
|
/**
|
|
25
25
|
*
|
|
26
26
|
* @export
|
|
27
|
-
* @interface
|
|
27
|
+
* @interface SolidityServiceSolidityAPIServiceSimulateTransactionBundleOnForkBody
|
|
28
28
|
*/
|
|
29
|
-
export interface
|
|
30
|
-
/**
|
|
31
|
-
*
|
|
32
|
-
* @type {object}
|
|
33
|
-
* @memberof SolidityServiceSolidityAPIServiceSimulateTransactionBundleByForkBody
|
|
34
|
-
*/
|
|
35
|
-
chainSpec?: object;
|
|
29
|
+
export interface SolidityServiceSolidityAPIServiceSimulateTransactionBundleOnForkBody {
|
|
36
30
|
/**
|
|
37
31
|
* For blockNumber, transactionIndex, networkId, stateOverrides and blockOverrides fields, only the first simulation takes effect.
|
|
38
32
|
* @type {Array<SolidityServiceSimulation>}
|
|
39
|
-
* @memberof
|
|
33
|
+
* @memberof SolidityServiceSolidityAPIServiceSimulateTransactionBundleOnForkBody
|
|
40
34
|
*/
|
|
41
35
|
simulations: Array<SolidityServiceSimulation>;
|
|
42
36
|
}
|
|
43
37
|
|
|
44
38
|
/**
|
|
45
|
-
* Check if a given object implements the
|
|
39
|
+
* Check if a given object implements the SolidityServiceSolidityAPIServiceSimulateTransactionBundleOnForkBody interface.
|
|
46
40
|
*/
|
|
47
|
-
export function
|
|
41
|
+
export function instanceOfSolidityServiceSolidityAPIServiceSimulateTransactionBundleOnForkBody(value: object): value is SolidityServiceSolidityAPIServiceSimulateTransactionBundleOnForkBody {
|
|
48
42
|
if (!('simulations' in value) || value['simulations'] === undefined) return false;
|
|
49
43
|
return true;
|
|
50
44
|
}
|
|
51
45
|
|
|
52
|
-
export function
|
|
53
|
-
return
|
|
46
|
+
export function SolidityServiceSolidityAPIServiceSimulateTransactionBundleOnForkBodyFromJSON(json: any): SolidityServiceSolidityAPIServiceSimulateTransactionBundleOnForkBody {
|
|
47
|
+
return SolidityServiceSolidityAPIServiceSimulateTransactionBundleOnForkBodyFromJSONTyped(json, false);
|
|
54
48
|
}
|
|
55
49
|
|
|
56
|
-
export function
|
|
50
|
+
export function SolidityServiceSolidityAPIServiceSimulateTransactionBundleOnForkBodyFromJSONTyped(json: any, ignoreDiscriminator: boolean): SolidityServiceSolidityAPIServiceSimulateTransactionBundleOnForkBody {
|
|
57
51
|
if (json == null) {
|
|
58
52
|
return json;
|
|
59
53
|
}
|
|
60
54
|
return {
|
|
61
55
|
|
|
62
|
-
'chainSpec': json['chainSpec'] == null ? undefined : json['chainSpec'],
|
|
63
56
|
'simulations': ((json['simulations'] as Array<any>).map(SolidityServiceSimulationFromJSON)),
|
|
64
57
|
};
|
|
65
58
|
}
|
|
66
59
|
|
|
67
|
-
export function
|
|
68
|
-
return
|
|
60
|
+
export function SolidityServiceSolidityAPIServiceSimulateTransactionBundleOnForkBodyToJSON(json: any): SolidityServiceSolidityAPIServiceSimulateTransactionBundleOnForkBody {
|
|
61
|
+
return SolidityServiceSolidityAPIServiceSimulateTransactionBundleOnForkBodyToJSONTyped(json, false);
|
|
69
62
|
}
|
|
70
63
|
|
|
71
|
-
export function
|
|
64
|
+
export function SolidityServiceSolidityAPIServiceSimulateTransactionBundleOnForkBodyToJSONTyped(value?: SolidityServiceSolidityAPIServiceSimulateTransactionBundleOnForkBody | null, ignoreDiscriminator: boolean = false): any {
|
|
72
65
|
if (value == null) {
|
|
73
66
|
return value;
|
|
74
67
|
}
|
|
75
68
|
|
|
76
69
|
return {
|
|
77
70
|
|
|
78
|
-
'chainSpec': value['chainSpec'],
|
|
79
71
|
'simulations': ((value['simulations'] as Array<any>).map(SolidityServiceSimulationToJSON)),
|
|
80
72
|
};
|
|
81
73
|
}
|
|
@@ -24,58 +24,50 @@ import {
|
|
|
24
24
|
/**
|
|
25
25
|
*
|
|
26
26
|
* @export
|
|
27
|
-
* @interface
|
|
27
|
+
* @interface SolidityServiceSolidityAPIServiceSimulateTransactionOnForkBody
|
|
28
28
|
*/
|
|
29
|
-
export interface
|
|
30
|
-
/**
|
|
31
|
-
*
|
|
32
|
-
* @type {object}
|
|
33
|
-
* @memberof SolidityServiceSolidityAPIServiceSimulateTransactionByForkBody
|
|
34
|
-
*/
|
|
35
|
-
chainSpec?: object;
|
|
29
|
+
export interface SolidityServiceSolidityAPIServiceSimulateTransactionOnForkBody {
|
|
36
30
|
/**
|
|
37
31
|
*
|
|
38
32
|
* @type {SolidityServiceSimulation}
|
|
39
|
-
* @memberof
|
|
33
|
+
* @memberof SolidityServiceSolidityAPIServiceSimulateTransactionOnForkBody
|
|
40
34
|
*/
|
|
41
35
|
simulation: SolidityServiceSimulation;
|
|
42
36
|
}
|
|
43
37
|
|
|
44
38
|
/**
|
|
45
|
-
* Check if a given object implements the
|
|
39
|
+
* Check if a given object implements the SolidityServiceSolidityAPIServiceSimulateTransactionOnForkBody interface.
|
|
46
40
|
*/
|
|
47
|
-
export function
|
|
41
|
+
export function instanceOfSolidityServiceSolidityAPIServiceSimulateTransactionOnForkBody(value: object): value is SolidityServiceSolidityAPIServiceSimulateTransactionOnForkBody {
|
|
48
42
|
if (!('simulation' in value) || value['simulation'] === undefined) return false;
|
|
49
43
|
return true;
|
|
50
44
|
}
|
|
51
45
|
|
|
52
|
-
export function
|
|
53
|
-
return
|
|
46
|
+
export function SolidityServiceSolidityAPIServiceSimulateTransactionOnForkBodyFromJSON(json: any): SolidityServiceSolidityAPIServiceSimulateTransactionOnForkBody {
|
|
47
|
+
return SolidityServiceSolidityAPIServiceSimulateTransactionOnForkBodyFromJSONTyped(json, false);
|
|
54
48
|
}
|
|
55
49
|
|
|
56
|
-
export function
|
|
50
|
+
export function SolidityServiceSolidityAPIServiceSimulateTransactionOnForkBodyFromJSONTyped(json: any, ignoreDiscriminator: boolean): SolidityServiceSolidityAPIServiceSimulateTransactionOnForkBody {
|
|
57
51
|
if (json == null) {
|
|
58
52
|
return json;
|
|
59
53
|
}
|
|
60
54
|
return {
|
|
61
55
|
|
|
62
|
-
'chainSpec': json['chainSpec'] == null ? undefined : json['chainSpec'],
|
|
63
56
|
'simulation': SolidityServiceSimulationFromJSON(json['simulation']),
|
|
64
57
|
};
|
|
65
58
|
}
|
|
66
59
|
|
|
67
|
-
export function
|
|
68
|
-
return
|
|
60
|
+
export function SolidityServiceSolidityAPIServiceSimulateTransactionOnForkBodyToJSON(json: any): SolidityServiceSolidityAPIServiceSimulateTransactionOnForkBody {
|
|
61
|
+
return SolidityServiceSolidityAPIServiceSimulateTransactionOnForkBodyToJSONTyped(json, false);
|
|
69
62
|
}
|
|
70
63
|
|
|
71
|
-
export function
|
|
64
|
+
export function SolidityServiceSolidityAPIServiceSimulateTransactionOnForkBodyToJSONTyped(value?: SolidityServiceSolidityAPIServiceSimulateTransactionOnForkBody | null, ignoreDiscriminator: boolean = false): any {
|
|
72
65
|
if (value == null) {
|
|
73
66
|
return value;
|
|
74
67
|
}
|
|
75
68
|
|
|
76
69
|
return {
|
|
77
70
|
|
|
78
|
-
'chainSpec': value['chainSpec'],
|
|
79
71
|
'simulation': SolidityServiceSimulationToJSON(value['simulation']),
|
|
80
72
|
};
|
|
81
73
|
}
|
package/src/models/index.ts
CHANGED
|
@@ -173,8 +173,8 @@ export * from './SolidityServiceSimulation.js';
|
|
|
173
173
|
export * from './SolidityServiceSimulationResult.js';
|
|
174
174
|
export * from './SolidityServiceSolidityAPIServiceSimulateTransactionBody.js';
|
|
175
175
|
export * from './SolidityServiceSolidityAPIServiceSimulateTransactionBundleBody.js';
|
|
176
|
-
export * from './
|
|
177
|
-
export * from './
|
|
176
|
+
export * from './SolidityServiceSolidityAPIServiceSimulateTransactionBundleOnForkBody.js';
|
|
177
|
+
export * from './SolidityServiceSolidityAPIServiceSimulateTransactionOnForkBody.js';
|
|
178
178
|
export * from './SolidityServiceSourceFetcherType.js';
|
|
179
179
|
export * from './SolidityServiceSourceInfo.js';
|
|
180
180
|
export * from './SolidityServiceSourceMultiFile.js';
|
|
@@ -182,7 +182,6 @@ export * from './SolidityServiceSourceSpec.js';
|
|
|
182
182
|
export * from './SolidityServiceSpecializations.js';
|
|
183
183
|
export * from './SolidityServiceStateOverride.js';
|
|
184
184
|
export * from './SolidityServiceStorageSummaryResult.js';
|
|
185
|
-
export * from './SolidityServiceTxIdentifier.js';
|
|
186
185
|
export * from './SolidityServiceUpdateForkResponse.js';
|
|
187
186
|
export * from './TxindexEvmRawTransaction.js';
|
|
188
187
|
export * from './TxindexEvmSearchTransactionsResponse.js';
|
package/dist/src/models/SolidityServiceSolidityAPIServiceSimulateTransactionBundleByForkBody.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"SolidityServiceSolidityAPIServiceSimulateTransactionBundleByForkBody.js","sourceRoot":"","sources":["../../../src/models/SolidityServiceSolidityAPIServiceSimulateTransactionBundleByForkBody.ts"],"names":[],"mappings":"AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;AAIH,OAAO,EACH,iCAAiC,EAEjC,+BAA+B,GAElC,MAAM,gCAAgC,CAAC;AAsBxC;;GAEG;AACH,MAAM,UAAU,8EAA8E,CAAC,KAAa;IACxG,IAAI,CAAC,CAAC,aAAa,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,aAAa,CAAC,KAAK,SAAS;QAAE,OAAO,KAAK,CAAC;IAClF,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,MAAM,UAAU,4EAA4E,CAAC,IAAS;IAClG,OAAO,iFAAiF,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAC1G,CAAC;AAED,MAAM,UAAU,iFAAiF,CAAC,IAAS,EAAE,mBAA4B;IACrI,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC;QACf,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,WAAW,EAAE,IAAI,CAAC,WAAW,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC;QACtE,aAAa,EAAE,CAAE,IAAI,CAAC,aAAa,CAAgB,CAAC,GAAG,CAAC,iCAAiC,CAAC,CAAC;KAC9F,CAAC;AACN,CAAC;AAEC,MAAM,UAAU,0EAA0E,CAAC,IAAS;IAChG,OAAO,+EAA+E,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACxG,CAAC;AAED,MAAM,UAAU,+EAA+E,CAAC,KAAmF,EAAE,sBAA+B,KAAK;IACvN,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;QAChB,OAAO,KAAK,CAAC;IACjB,CAAC;IAED,OAAO;QAEH,WAAW,EAAE,KAAK,CAAC,WAAW,CAAC;QAC/B,aAAa,EAAE,CAAE,KAAK,CAAC,aAAa,CAAgB,CAAC,GAAG,CAAC,+BAA+B,CAAC,CAAC;KAC7F,CAAC;AACN,CAAC"}
|
package/dist/src/models/SolidityServiceSolidityAPIServiceSimulateTransactionByForkBody.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"SolidityServiceSolidityAPIServiceSimulateTransactionByForkBody.js","sourceRoot":"","sources":["../../../src/models/SolidityServiceSolidityAPIServiceSimulateTransactionByForkBody.ts"],"names":[],"mappings":"AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;AAIH,OAAO,EACH,iCAAiC,EAEjC,+BAA+B,GAElC,MAAM,gCAAgC,CAAC;AAsBxC;;GAEG;AACH,MAAM,UAAU,wEAAwE,CAAC,KAAa;IAClG,IAAI,CAAC,CAAC,YAAY,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,YAAY,CAAC,KAAK,SAAS;QAAE,OAAO,KAAK,CAAC;IAChF,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,MAAM,UAAU,sEAAsE,CAAC,IAAS;IAC5F,OAAO,2EAA2E,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACpG,CAAC;AAED,MAAM,UAAU,2EAA2E,CAAC,IAAS,EAAE,mBAA4B;IAC/H,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC;QACf,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,WAAW,EAAE,IAAI,CAAC,WAAW,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC;QACtE,YAAY,EAAE,iCAAiC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC;KACtE,CAAC;AACN,CAAC;AAEC,MAAM,UAAU,oEAAoE,CAAC,IAAS;IAC1F,OAAO,yEAAyE,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAClG,CAAC;AAED,MAAM,UAAU,yEAAyE,CAAC,KAA6E,EAAE,sBAA+B,KAAK;IAC3M,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;QAChB,OAAO,KAAK,CAAC;IACjB,CAAC;IAED,OAAO;QAEH,WAAW,EAAE,KAAK,CAAC,WAAW,CAAC;QAC/B,YAAY,EAAE,+BAA+B,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC;KACrE,CAAC;AACN,CAAC"}
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Sentio API
|
|
3
|
-
* Sentio Open API for query data
|
|
4
|
-
*
|
|
5
|
-
* The version of the OpenAPI document: version not set
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
-
* https://openapi-generator.tech
|
|
10
|
-
* Do not edit the class manually.
|
|
11
|
-
*/
|
|
12
|
-
/**
|
|
13
|
-
*
|
|
14
|
-
* @export
|
|
15
|
-
* @interface SolidityServiceTxIdentifier
|
|
16
|
-
*/
|
|
17
|
-
export interface SolidityServiceTxIdentifier {
|
|
18
|
-
/**
|
|
19
|
-
*
|
|
20
|
-
* @type {string}
|
|
21
|
-
* @memberof SolidityServiceTxIdentifier
|
|
22
|
-
*/
|
|
23
|
-
txHash?: string;
|
|
24
|
-
/**
|
|
25
|
-
*
|
|
26
|
-
* @type {string}
|
|
27
|
-
* @memberof SolidityServiceTxIdentifier
|
|
28
|
-
*/
|
|
29
|
-
simulationId?: string;
|
|
30
|
-
/**
|
|
31
|
-
*
|
|
32
|
-
* @type {string}
|
|
33
|
-
* @memberof SolidityServiceTxIdentifier
|
|
34
|
-
*/
|
|
35
|
-
bundleId?: string;
|
|
36
|
-
}
|
|
37
|
-
/**
|
|
38
|
-
* Check if a given object implements the SolidityServiceTxIdentifier interface.
|
|
39
|
-
*/
|
|
40
|
-
export declare function instanceOfSolidityServiceTxIdentifier(value: object): value is SolidityServiceTxIdentifier;
|
|
41
|
-
export declare function SolidityServiceTxIdentifierFromJSON(json: any): SolidityServiceTxIdentifier;
|
|
42
|
-
export declare function SolidityServiceTxIdentifierFromJSONTyped(json: any, ignoreDiscriminator: boolean): SolidityServiceTxIdentifier;
|
|
43
|
-
export declare function SolidityServiceTxIdentifierToJSON(json: any): SolidityServiceTxIdentifier;
|
|
44
|
-
export declare function SolidityServiceTxIdentifierToJSONTyped(value?: SolidityServiceTxIdentifier | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -1,46 +0,0 @@
|
|
|
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
|
-
* Check if a given object implements the SolidityServiceTxIdentifier interface.
|
|
16
|
-
*/
|
|
17
|
-
export function instanceOfSolidityServiceTxIdentifier(value) {
|
|
18
|
-
return true;
|
|
19
|
-
}
|
|
20
|
-
export function SolidityServiceTxIdentifierFromJSON(json) {
|
|
21
|
-
return SolidityServiceTxIdentifierFromJSONTyped(json, false);
|
|
22
|
-
}
|
|
23
|
-
export function SolidityServiceTxIdentifierFromJSONTyped(json, ignoreDiscriminator) {
|
|
24
|
-
if (json == null) {
|
|
25
|
-
return json;
|
|
26
|
-
}
|
|
27
|
-
return {
|
|
28
|
-
'txHash': json['txHash'] == null ? undefined : json['txHash'],
|
|
29
|
-
'simulationId': json['simulationId'] == null ? undefined : json['simulationId'],
|
|
30
|
-
'bundleId': json['bundleId'] == null ? undefined : json['bundleId'],
|
|
31
|
-
};
|
|
32
|
-
}
|
|
33
|
-
export function SolidityServiceTxIdentifierToJSON(json) {
|
|
34
|
-
return SolidityServiceTxIdentifierToJSONTyped(json, false);
|
|
35
|
-
}
|
|
36
|
-
export function SolidityServiceTxIdentifierToJSONTyped(value, ignoreDiscriminator = false) {
|
|
37
|
-
if (value == null) {
|
|
38
|
-
return value;
|
|
39
|
-
}
|
|
40
|
-
return {
|
|
41
|
-
'txHash': value['txHash'],
|
|
42
|
-
'simulationId': value['simulationId'],
|
|
43
|
-
'bundleId': value['bundleId'],
|
|
44
|
-
};
|
|
45
|
-
}
|
|
46
|
-
//# sourceMappingURL=SolidityServiceTxIdentifier.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"SolidityServiceTxIdentifier.js","sourceRoot":"","sources":["../../../src/models/SolidityServiceTxIdentifier.ts"],"names":[],"mappings":"AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;AA6BH;;GAEG;AACH,MAAM,UAAU,qCAAqC,CAAC,KAAa;IAC/D,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,MAAM,UAAU,mCAAmC,CAAC,IAAS;IACzD,OAAO,wCAAwC,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACjE,CAAC;AAED,MAAM,UAAU,wCAAwC,CAAC,IAAS,EAAE,mBAA4B;IAC5F,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC;QACf,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,QAAQ,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC;QAC7D,cAAc,EAAE,IAAI,CAAC,cAAc,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC;QAC/E,UAAU,EAAE,IAAI,CAAC,UAAU,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC;KACtE,CAAC;AACN,CAAC;AAEC,MAAM,UAAU,iCAAiC,CAAC,IAAS;IACvD,OAAO,sCAAsC,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAC/D,CAAC;AAED,MAAM,UAAU,sCAAsC,CAAC,KAA0C,EAAE,sBAA+B,KAAK;IACrI,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;QAChB,OAAO,KAAK,CAAC;IACjB,CAAC;IAED,OAAO;QAEH,QAAQ,EAAE,KAAK,CAAC,QAAQ,CAAC;QACzB,cAAc,EAAE,KAAK,CAAC,cAAc,CAAC;QACrC,UAAU,EAAE,KAAK,CAAC,UAAU,CAAC;KAChC,CAAC;AACN,CAAC"}
|
|
@@ -1,81 +0,0 @@
|
|
|
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 SolidityServiceTxIdentifier
|
|
20
|
-
*/
|
|
21
|
-
export interface SolidityServiceTxIdentifier {
|
|
22
|
-
/**
|
|
23
|
-
*
|
|
24
|
-
* @type {string}
|
|
25
|
-
* @memberof SolidityServiceTxIdentifier
|
|
26
|
-
*/
|
|
27
|
-
txHash?: string;
|
|
28
|
-
/**
|
|
29
|
-
*
|
|
30
|
-
* @type {string}
|
|
31
|
-
* @memberof SolidityServiceTxIdentifier
|
|
32
|
-
*/
|
|
33
|
-
simulationId?: string;
|
|
34
|
-
/**
|
|
35
|
-
*
|
|
36
|
-
* @type {string}
|
|
37
|
-
* @memberof SolidityServiceTxIdentifier
|
|
38
|
-
*/
|
|
39
|
-
bundleId?: string;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
/**
|
|
43
|
-
* Check if a given object implements the SolidityServiceTxIdentifier interface.
|
|
44
|
-
*/
|
|
45
|
-
export function instanceOfSolidityServiceTxIdentifier(value: object): value is SolidityServiceTxIdentifier {
|
|
46
|
-
return true;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
export function SolidityServiceTxIdentifierFromJSON(json: any): SolidityServiceTxIdentifier {
|
|
50
|
-
return SolidityServiceTxIdentifierFromJSONTyped(json, false);
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
export function SolidityServiceTxIdentifierFromJSONTyped(json: any, ignoreDiscriminator: boolean): SolidityServiceTxIdentifier {
|
|
54
|
-
if (json == null) {
|
|
55
|
-
return json;
|
|
56
|
-
}
|
|
57
|
-
return {
|
|
58
|
-
|
|
59
|
-
'txHash': json['txHash'] == null ? undefined : json['txHash'],
|
|
60
|
-
'simulationId': json['simulationId'] == null ? undefined : json['simulationId'],
|
|
61
|
-
'bundleId': json['bundleId'] == null ? undefined : json['bundleId'],
|
|
62
|
-
};
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
export function SolidityServiceTxIdentifierToJSON(json: any): SolidityServiceTxIdentifier {
|
|
66
|
-
return SolidityServiceTxIdentifierToJSONTyped(json, false);
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
export function SolidityServiceTxIdentifierToJSONTyped(value?: SolidityServiceTxIdentifier | null, ignoreDiscriminator: boolean = false): any {
|
|
70
|
-
if (value == null) {
|
|
71
|
-
return value;
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
return {
|
|
75
|
-
|
|
76
|
-
'txHash': value['txHash'],
|
|
77
|
-
'simulationId': value['simulationId'],
|
|
78
|
-
'bundleId': value['bundleId'],
|
|
79
|
-
};
|
|
80
|
-
}
|
|
81
|
-
|