@dynamic-labs/sdk-api-core 0.0.1111 → 0.0.1113
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/package.json +1 -1
- package/src/apis/SDKApi.cjs +63 -0
- package/src/apis/SDKApi.cjs.map +1 -1
- package/src/apis/SDKApi.d.ts +26 -1
- package/src/apis/SDKApi.js +63 -0
- package/src/apis/SDKApi.js.map +1 -1
- package/src/apis/WaasApi.cjs +1 -0
- package/src/apis/WaasApi.cjs.map +1 -1
- package/src/apis/WaasApi.js +1 -0
- package/src/apis/WaasApi.js.map +1 -1
- package/src/index.cjs +44 -0
- package/src/index.cjs.map +1 -1
- package/src/index.js +10 -0
- package/src/index.js.map +1 -1
- package/src/models/FlowQuote.cjs +5 -0
- package/src/models/FlowQuote.cjs.map +1 -1
- package/src/models/FlowQuote.d.ts +13 -0
- package/src/models/FlowQuote.js +5 -0
- package/src/models/FlowQuote.js.map +1 -1
- package/src/models/FlowTokenInfo.cjs +39 -0
- package/src/models/FlowTokenInfo.cjs.map +1 -0
- package/src/models/FlowTokenInfo.d.ts +45 -0
- package/src/models/FlowTokenInfo.js +33 -0
- package/src/models/FlowTokenInfo.js.map +1 -0
- package/src/models/ScreenTransactionRequest.cjs +41 -0
- package/src/models/ScreenTransactionRequest.cjs.map +1 -0
- package/src/models/ScreenTransactionRequest.d.ts +47 -0
- package/src/models/ScreenTransactionRequest.js +35 -0
- package/src/models/ScreenTransactionRequest.js.map +1 -0
- package/src/models/ScreenTransactionRequestContext.cjs +49 -0
- package/src/models/ScreenTransactionRequestContext.cjs.map +1 -0
- package/src/models/ScreenTransactionRequestContext.d.ts +63 -0
- package/src/models/ScreenTransactionRequestContext.js +43 -0
- package/src/models/ScreenTransactionRequestContext.js.map +1 -0
- package/src/models/ScreenTransactionRequestContextBtcTransaction.cjs +37 -0
- package/src/models/ScreenTransactionRequestContextBtcTransaction.cjs.map +1 -0
- package/src/models/ScreenTransactionRequestContextBtcTransaction.d.ts +39 -0
- package/src/models/ScreenTransactionRequestContextBtcTransaction.js +31 -0
- package/src/models/ScreenTransactionRequestContextBtcTransaction.js.map +1 -0
- package/src/models/ScreenTransactionRequestContextEvmTransaction.cjs +33 -0
- package/src/models/ScreenTransactionRequestContextEvmTransaction.cjs.map +1 -0
- package/src/models/ScreenTransactionRequestContextEvmTransaction.d.ts +27 -0
- package/src/models/ScreenTransactionRequestContextEvmTransaction.js +27 -0
- package/src/models/ScreenTransactionRequestContextEvmTransaction.js.map +1 -0
- package/src/models/ScreenTransactionRequestContextStellarTransaction.cjs +43 -0
- package/src/models/ScreenTransactionRequestContextStellarTransaction.cjs.map +1 -0
- package/src/models/ScreenTransactionRequestContextStellarTransaction.d.ts +27 -0
- package/src/models/ScreenTransactionRequestContextStellarTransaction.js +37 -0
- package/src/models/ScreenTransactionRequestContextStellarTransaction.js.map +1 -0
- package/src/models/ScreenTransactionRequestContextSuiTransaction.cjs +43 -0
- package/src/models/ScreenTransactionRequestContextSuiTransaction.cjs.map +1 -0
- package/src/models/ScreenTransactionRequestContextSuiTransaction.d.ts +27 -0
- package/src/models/ScreenTransactionRequestContextSuiTransaction.js +37 -0
- package/src/models/ScreenTransactionRequestContextSuiTransaction.js.map +1 -0
- package/src/models/ScreenTransactionRequestContextSvmTransaction.cjs +43 -0
- package/src/models/ScreenTransactionRequestContextSvmTransaction.cjs.map +1 -0
- package/src/models/ScreenTransactionRequestContextSvmTransaction.d.ts +27 -0
- package/src/models/ScreenTransactionRequestContextSvmTransaction.js +37 -0
- package/src/models/ScreenTransactionRequestContextSvmTransaction.js.map +1 -0
- package/src/models/ScreenTransactionRequestContextTronTransaction.cjs +43 -0
- package/src/models/ScreenTransactionRequestContextTronTransaction.cjs.map +1 -0
- package/src/models/ScreenTransactionRequestContextTronTransaction.d.ts +27 -0
- package/src/models/ScreenTransactionRequestContextTronTransaction.js +37 -0
- package/src/models/ScreenTransactionRequestContextTronTransaction.js.map +1 -0
- package/src/models/ScreenTransactionResponse.cjs +46 -0
- package/src/models/ScreenTransactionResponse.cjs.map +1 -0
- package/src/models/ScreenTransactionResponse.d.ts +47 -0
- package/src/models/ScreenTransactionResponse.js +40 -0
- package/src/models/ScreenTransactionResponse.js.map +1 -0
- package/src/models/index.d.ts +10 -0
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Dashboard API
|
|
3
|
+
* Dashboard API documentation
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
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
|
+
import { ScreenTransactionRequestContextBtcTransaction } from './ScreenTransactionRequestContextBtcTransaction';
|
|
13
|
+
import { ScreenTransactionRequestContextEvmTransaction } from './ScreenTransactionRequestContextEvmTransaction';
|
|
14
|
+
import { ScreenTransactionRequestContextStellarTransaction } from './ScreenTransactionRequestContextStellarTransaction';
|
|
15
|
+
import { ScreenTransactionRequestContextSuiTransaction } from './ScreenTransactionRequestContextSuiTransaction';
|
|
16
|
+
import { ScreenTransactionRequestContextSvmTransaction } from './ScreenTransactionRequestContextSvmTransaction';
|
|
17
|
+
import { ScreenTransactionRequestContextTronTransaction } from './ScreenTransactionRequestContextTronTransaction';
|
|
18
|
+
/**
|
|
19
|
+
* Chain-specific transaction payload; exactly one shape must be provided.
|
|
20
|
+
* @export
|
|
21
|
+
* @interface ScreenTransactionRequestContext
|
|
22
|
+
*/
|
|
23
|
+
export interface ScreenTransactionRequestContext {
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {ScreenTransactionRequestContextBtcTransaction}
|
|
27
|
+
* @memberof ScreenTransactionRequestContext
|
|
28
|
+
*/
|
|
29
|
+
btcTransaction?: ScreenTransactionRequestContextBtcTransaction;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {ScreenTransactionRequestContextEvmTransaction}
|
|
33
|
+
* @memberof ScreenTransactionRequestContext
|
|
34
|
+
*/
|
|
35
|
+
evmTransaction?: ScreenTransactionRequestContextEvmTransaction;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {ScreenTransactionRequestContextStellarTransaction}
|
|
39
|
+
* @memberof ScreenTransactionRequestContext
|
|
40
|
+
*/
|
|
41
|
+
stellarTransaction?: ScreenTransactionRequestContextStellarTransaction;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {ScreenTransactionRequestContextSuiTransaction}
|
|
45
|
+
* @memberof ScreenTransactionRequestContext
|
|
46
|
+
*/
|
|
47
|
+
suiTransaction?: ScreenTransactionRequestContextSuiTransaction;
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* @type {ScreenTransactionRequestContextSvmTransaction}
|
|
51
|
+
* @memberof ScreenTransactionRequestContext
|
|
52
|
+
*/
|
|
53
|
+
svmTransaction?: ScreenTransactionRequestContextSvmTransaction;
|
|
54
|
+
/**
|
|
55
|
+
*
|
|
56
|
+
* @type {ScreenTransactionRequestContextTronTransaction}
|
|
57
|
+
* @memberof ScreenTransactionRequestContext
|
|
58
|
+
*/
|
|
59
|
+
tronTransaction?: ScreenTransactionRequestContextTronTransaction;
|
|
60
|
+
}
|
|
61
|
+
export declare function ScreenTransactionRequestContextFromJSON(json: any): ScreenTransactionRequestContext;
|
|
62
|
+
export declare function ScreenTransactionRequestContextFromJSONTyped(json: any, ignoreDiscriminator: boolean): ScreenTransactionRequestContext;
|
|
63
|
+
export declare function ScreenTransactionRequestContextToJSON(value?: ScreenTransactionRequestContext | null): any;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { exists } from '../runtime.js';
|
|
2
|
+
import { ScreenTransactionRequestContextBtcTransactionFromJSON, ScreenTransactionRequestContextBtcTransactionToJSON } from './ScreenTransactionRequestContextBtcTransaction.js';
|
|
3
|
+
import { ScreenTransactionRequestContextEvmTransactionFromJSON, ScreenTransactionRequestContextEvmTransactionToJSON } from './ScreenTransactionRequestContextEvmTransaction.js';
|
|
4
|
+
import { ScreenTransactionRequestContextStellarTransactionFromJSON, ScreenTransactionRequestContextStellarTransactionToJSON } from './ScreenTransactionRequestContextStellarTransaction.js';
|
|
5
|
+
import { ScreenTransactionRequestContextSuiTransactionFromJSON, ScreenTransactionRequestContextSuiTransactionToJSON } from './ScreenTransactionRequestContextSuiTransaction.js';
|
|
6
|
+
import { ScreenTransactionRequestContextSvmTransactionFromJSON, ScreenTransactionRequestContextSvmTransactionToJSON } from './ScreenTransactionRequestContextSvmTransaction.js';
|
|
7
|
+
import { ScreenTransactionRequestContextTronTransactionFromJSON, ScreenTransactionRequestContextTronTransactionToJSON } from './ScreenTransactionRequestContextTronTransaction.js';
|
|
8
|
+
|
|
9
|
+
/* tslint:disable */
|
|
10
|
+
function ScreenTransactionRequestContextFromJSON(json) {
|
|
11
|
+
return ScreenTransactionRequestContextFromJSONTyped(json);
|
|
12
|
+
}
|
|
13
|
+
function ScreenTransactionRequestContextFromJSONTyped(json, ignoreDiscriminator) {
|
|
14
|
+
if ((json === undefined) || (json === null)) {
|
|
15
|
+
return json;
|
|
16
|
+
}
|
|
17
|
+
return {
|
|
18
|
+
'btcTransaction': !exists(json, 'btcTransaction') ? undefined : ScreenTransactionRequestContextBtcTransactionFromJSON(json['btcTransaction']),
|
|
19
|
+
'evmTransaction': !exists(json, 'evmTransaction') ? undefined : ScreenTransactionRequestContextEvmTransactionFromJSON(json['evmTransaction']),
|
|
20
|
+
'stellarTransaction': !exists(json, 'stellarTransaction') ? undefined : ScreenTransactionRequestContextStellarTransactionFromJSON(json['stellarTransaction']),
|
|
21
|
+
'suiTransaction': !exists(json, 'suiTransaction') ? undefined : ScreenTransactionRequestContextSuiTransactionFromJSON(json['suiTransaction']),
|
|
22
|
+
'svmTransaction': !exists(json, 'svmTransaction') ? undefined : ScreenTransactionRequestContextSvmTransactionFromJSON(json['svmTransaction']),
|
|
23
|
+
'tronTransaction': !exists(json, 'tronTransaction') ? undefined : ScreenTransactionRequestContextTronTransactionFromJSON(json['tronTransaction']),
|
|
24
|
+
};
|
|
25
|
+
}
|
|
26
|
+
function ScreenTransactionRequestContextToJSON(value) {
|
|
27
|
+
if (value === undefined) {
|
|
28
|
+
return undefined;
|
|
29
|
+
}
|
|
30
|
+
if (value === null) {
|
|
31
|
+
return null;
|
|
32
|
+
}
|
|
33
|
+
return {
|
|
34
|
+
'btcTransaction': ScreenTransactionRequestContextBtcTransactionToJSON(value.btcTransaction),
|
|
35
|
+
'evmTransaction': ScreenTransactionRequestContextEvmTransactionToJSON(value.evmTransaction),
|
|
36
|
+
'stellarTransaction': ScreenTransactionRequestContextStellarTransactionToJSON(value.stellarTransaction),
|
|
37
|
+
'suiTransaction': ScreenTransactionRequestContextSuiTransactionToJSON(value.suiTransaction),
|
|
38
|
+
'svmTransaction': ScreenTransactionRequestContextSvmTransactionToJSON(value.svmTransaction),
|
|
39
|
+
'tronTransaction': ScreenTransactionRequestContextTronTransactionToJSON(value.tronTransaction),
|
|
40
|
+
};
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export { ScreenTransactionRequestContextFromJSON, ScreenTransactionRequestContextFromJSONTyped, ScreenTransactionRequestContextToJSON };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ScreenTransactionRequestContext.js","sources":["../../../../../libs/sdk-api-core/src/models/ScreenTransactionRequestContext.ts"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;AAAA;AAgGM,SAAU,uCAAuC,CAAC,IAAS,EAAA;AAC7D,IAAA,OAAO,4CAA4C,CAAC,IAAW,CAAC,CAAC;AACrE,CAAC;AAEe,SAAA,4CAA4C,CAAC,IAAS,EAAE,mBAA4B,EAAA;AAChG,IAAA,IAAI,CAAC,IAAI,KAAK,SAAS,MAAM,IAAI,KAAK,IAAI,CAAC,EAAE;AACzC,QAAA,OAAO,IAAI,CAAC;KACf;IACD,OAAO;QAEH,gBAAgB,EAAE,CAAC,MAAM,CAAC,IAAI,EAAE,gBAAgB,CAAC,GAAG,SAAS,GAAG,qDAAqD,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC;QAC7I,gBAAgB,EAAE,CAAC,MAAM,CAAC,IAAI,EAAE,gBAAgB,CAAC,GAAG,SAAS,GAAG,qDAAqD,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC;QAC7I,oBAAoB,EAAE,CAAC,MAAM,CAAC,IAAI,EAAE,oBAAoB,CAAC,GAAG,SAAS,GAAG,yDAAyD,CAAC,IAAI,CAAC,oBAAoB,CAAC,CAAC;QAC7J,gBAAgB,EAAE,CAAC,MAAM,CAAC,IAAI,EAAE,gBAAgB,CAAC,GAAG,SAAS,GAAG,qDAAqD,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC;QAC7I,gBAAgB,EAAE,CAAC,MAAM,CAAC,IAAI,EAAE,gBAAgB,CAAC,GAAG,SAAS,GAAG,qDAAqD,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC;QAC7I,iBAAiB,EAAE,CAAC,MAAM,CAAC,IAAI,EAAE,iBAAiB,CAAC,GAAG,SAAS,GAAG,sDAAsD,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC;KACpJ,CAAC;AACN,CAAC;AAEK,SAAU,qCAAqC,CAAC,KAA8C,EAAA;AAChG,IAAA,IAAI,KAAK,KAAK,SAAS,EAAE;AACrB,QAAA,OAAO,SAAS,CAAC;KACpB;AACD,IAAA,IAAI,KAAK,KAAK,IAAI,EAAE;AAChB,QAAA,OAAO,IAAI,CAAC;KACf;IACD,OAAO;AAEH,QAAA,gBAAgB,EAAE,mDAAmD,CAAC,KAAK,CAAC,cAAc,CAAC;AAC3F,QAAA,gBAAgB,EAAE,mDAAmD,CAAC,KAAK,CAAC,cAAc,CAAC;AAC3F,QAAA,oBAAoB,EAAE,uDAAuD,CAAC,KAAK,CAAC,kBAAkB,CAAC;AACvG,QAAA,gBAAgB,EAAE,mDAAmD,CAAC,KAAK,CAAC,cAAc,CAAC;AAC3F,QAAA,gBAAgB,EAAE,mDAAmD,CAAC,KAAK,CAAC,cAAc,CAAC;AAC3F,QAAA,iBAAiB,EAAE,oDAAoD,CAAC,KAAK,CAAC,eAAe,CAAC;KACjG,CAAC;AACN;;;;"}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var runtime = require('../runtime.cjs');
|
|
6
|
+
|
|
7
|
+
/* tslint:disable */
|
|
8
|
+
function ScreenTransactionRequestContextBtcTransactionFromJSON(json) {
|
|
9
|
+
return ScreenTransactionRequestContextBtcTransactionFromJSONTyped(json);
|
|
10
|
+
}
|
|
11
|
+
function ScreenTransactionRequestContextBtcTransactionFromJSONTyped(json, ignoreDiscriminator) {
|
|
12
|
+
if ((json === undefined) || (json === null)) {
|
|
13
|
+
return json;
|
|
14
|
+
}
|
|
15
|
+
return {
|
|
16
|
+
'chainId': json['chainId'],
|
|
17
|
+
'psbt': !runtime.exists(json, 'psbt') ? undefined : json['psbt'],
|
|
18
|
+
'recipientAddress': !runtime.exists(json, 'recipientAddress') ? undefined : json['recipientAddress'],
|
|
19
|
+
};
|
|
20
|
+
}
|
|
21
|
+
function ScreenTransactionRequestContextBtcTransactionToJSON(value) {
|
|
22
|
+
if (value === undefined) {
|
|
23
|
+
return undefined;
|
|
24
|
+
}
|
|
25
|
+
if (value === null) {
|
|
26
|
+
return null;
|
|
27
|
+
}
|
|
28
|
+
return {
|
|
29
|
+
'chainId': value.chainId,
|
|
30
|
+
'psbt': value.psbt,
|
|
31
|
+
'recipientAddress': value.recipientAddress,
|
|
32
|
+
};
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
exports.ScreenTransactionRequestContextBtcTransactionFromJSON = ScreenTransactionRequestContextBtcTransactionFromJSON;
|
|
36
|
+
exports.ScreenTransactionRequestContextBtcTransactionFromJSONTyped = ScreenTransactionRequestContextBtcTransactionFromJSONTyped;
|
|
37
|
+
exports.ScreenTransactionRequestContextBtcTransactionToJSON = ScreenTransactionRequestContextBtcTransactionToJSON;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ScreenTransactionRequestContextBtcTransaction.cjs","sources":["../../../../../libs/sdk-api-core/src/models/ScreenTransactionRequestContextBtcTransaction.ts"],"sourcesContent":null,"names":["exists"],"mappings":";;;;;;AAAA;AAyCM,SAAU,qDAAqD,CAAC,IAAS,EAAA;AAC3E,IAAA,OAAO,0DAA0D,CAAC,IAAW,CAAC,CAAC;AACnF,CAAC;AAEe,SAAA,0DAA0D,CAAC,IAAS,EAAE,mBAA4B,EAAA;AAC9G,IAAA,IAAI,CAAC,IAAI,KAAK,SAAS,MAAM,IAAI,KAAK,IAAI,CAAC,EAAE;AACzC,QAAA,OAAO,IAAI,CAAC;KACf;IACD,OAAO;AAEH,QAAA,SAAS,EAAE,IAAI,CAAC,SAAS,CAAC;AAC1B,QAAA,MAAM,EAAE,CAACA,cAAM,CAAC,IAAI,EAAE,MAAM,CAAC,GAAG,SAAS,GAAG,IAAI,CAAC,MAAM,CAAC;AACxD,QAAA,kBAAkB,EAAE,CAACA,cAAM,CAAC,IAAI,EAAE,kBAAkB,CAAC,GAAG,SAAS,GAAG,IAAI,CAAC,kBAAkB,CAAC;KAC/F,CAAC;AACN,CAAC;AAEK,SAAU,mDAAmD,CAAC,KAA4D,EAAA;AAC5H,IAAA,IAAI,KAAK,KAAK,SAAS,EAAE;AACrB,QAAA,OAAO,SAAS,CAAC;KACpB;AACD,IAAA,IAAI,KAAK,KAAK,IAAI,EAAE;AAChB,QAAA,OAAO,IAAI,CAAC;KACf;IACD,OAAO;QAEH,SAAS,EAAE,KAAK,CAAC,OAAO;QACxB,MAAM,EAAE,KAAK,CAAC,IAAI;QAClB,kBAAkB,EAAE,KAAK,CAAC,gBAAgB;KAC7C,CAAC;AACN;;;;;;"}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Dashboard API
|
|
3
|
+
* Dashboard API documentation
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
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
|
+
* Exactly one of psbt / recipientAddress must be provided.
|
|
14
|
+
* @export
|
|
15
|
+
* @interface ScreenTransactionRequestContextBtcTransaction
|
|
16
|
+
*/
|
|
17
|
+
export interface ScreenTransactionRequestContextBtcTransaction {
|
|
18
|
+
/**
|
|
19
|
+
* Bitcoin network from the signing contract (1=mainnet, 2=testnet, 3=signet).
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof ScreenTransactionRequestContextBtcTransaction
|
|
22
|
+
*/
|
|
23
|
+
chainId: string;
|
|
24
|
+
/**
|
|
25
|
+
* Base64- or hex-encoded PSBT.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof ScreenTransactionRequestContextBtcTransaction
|
|
28
|
+
*/
|
|
29
|
+
psbt?: string;
|
|
30
|
+
/**
|
|
31
|
+
* The envelope recipient, for callers that have not built a PSBT yet (e.g. sendBitcoin); screened like an extracted destination.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof ScreenTransactionRequestContextBtcTransaction
|
|
34
|
+
*/
|
|
35
|
+
recipientAddress?: string;
|
|
36
|
+
}
|
|
37
|
+
export declare function ScreenTransactionRequestContextBtcTransactionFromJSON(json: any): ScreenTransactionRequestContextBtcTransaction;
|
|
38
|
+
export declare function ScreenTransactionRequestContextBtcTransactionFromJSONTyped(json: any, ignoreDiscriminator: boolean): ScreenTransactionRequestContextBtcTransaction;
|
|
39
|
+
export declare function ScreenTransactionRequestContextBtcTransactionToJSON(value?: ScreenTransactionRequestContextBtcTransaction | null): any;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { exists } from '../runtime.js';
|
|
2
|
+
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
function ScreenTransactionRequestContextBtcTransactionFromJSON(json) {
|
|
5
|
+
return ScreenTransactionRequestContextBtcTransactionFromJSONTyped(json);
|
|
6
|
+
}
|
|
7
|
+
function ScreenTransactionRequestContextBtcTransactionFromJSONTyped(json, ignoreDiscriminator) {
|
|
8
|
+
if ((json === undefined) || (json === null)) {
|
|
9
|
+
return json;
|
|
10
|
+
}
|
|
11
|
+
return {
|
|
12
|
+
'chainId': json['chainId'],
|
|
13
|
+
'psbt': !exists(json, 'psbt') ? undefined : json['psbt'],
|
|
14
|
+
'recipientAddress': !exists(json, 'recipientAddress') ? undefined : json['recipientAddress'],
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
function ScreenTransactionRequestContextBtcTransactionToJSON(value) {
|
|
18
|
+
if (value === undefined) {
|
|
19
|
+
return undefined;
|
|
20
|
+
}
|
|
21
|
+
if (value === null) {
|
|
22
|
+
return null;
|
|
23
|
+
}
|
|
24
|
+
return {
|
|
25
|
+
'chainId': value.chainId,
|
|
26
|
+
'psbt': value.psbt,
|
|
27
|
+
'recipientAddress': value.recipientAddress,
|
|
28
|
+
};
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
export { ScreenTransactionRequestContextBtcTransactionFromJSON, ScreenTransactionRequestContextBtcTransactionFromJSONTyped, ScreenTransactionRequestContextBtcTransactionToJSON };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ScreenTransactionRequestContextBtcTransaction.js","sources":["../../../../../libs/sdk-api-core/src/models/ScreenTransactionRequestContextBtcTransaction.ts"],"sourcesContent":null,"names":[],"mappings":";;AAAA;AAyCM,SAAU,qDAAqD,CAAC,IAAS,EAAA;AAC3E,IAAA,OAAO,0DAA0D,CAAC,IAAW,CAAC,CAAC;AACnF,CAAC;AAEe,SAAA,0DAA0D,CAAC,IAAS,EAAE,mBAA4B,EAAA;AAC9G,IAAA,IAAI,CAAC,IAAI,KAAK,SAAS,MAAM,IAAI,KAAK,IAAI,CAAC,EAAE;AACzC,QAAA,OAAO,IAAI,CAAC;KACf;IACD,OAAO;AAEH,QAAA,SAAS,EAAE,IAAI,CAAC,SAAS,CAAC;AAC1B,QAAA,MAAM,EAAE,CAAC,MAAM,CAAC,IAAI,EAAE,MAAM,CAAC,GAAG,SAAS,GAAG,IAAI,CAAC,MAAM,CAAC;AACxD,QAAA,kBAAkB,EAAE,CAAC,MAAM,CAAC,IAAI,EAAE,kBAAkB,CAAC,GAAG,SAAS,GAAG,IAAI,CAAC,kBAAkB,CAAC;KAC/F,CAAC;AACN,CAAC;AAEK,SAAU,mDAAmD,CAAC,KAA4D,EAAA;AAC5H,IAAA,IAAI,KAAK,KAAK,SAAS,EAAE;AACrB,QAAA,OAAO,SAAS,CAAC;KACpB;AACD,IAAA,IAAI,KAAK,KAAK,IAAI,EAAE;AAChB,QAAA,OAAO,IAAI,CAAC;KACf;IACD,OAAO;QAEH,SAAS,EAAE,KAAK,CAAC,OAAO;QACxB,MAAM,EAAE,KAAK,CAAC,IAAI;QAClB,kBAAkB,EAAE,KAAK,CAAC,gBAAgB;KAC7C,CAAC;AACN;;;;"}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var runtime = require('../runtime.cjs');
|
|
6
|
+
|
|
7
|
+
/* tslint:disable */
|
|
8
|
+
function ScreenTransactionRequestContextEvmTransactionFromJSON(json) {
|
|
9
|
+
return ScreenTransactionRequestContextEvmTransactionFromJSONTyped(json);
|
|
10
|
+
}
|
|
11
|
+
function ScreenTransactionRequestContextEvmTransactionFromJSONTyped(json, ignoreDiscriminator) {
|
|
12
|
+
if ((json === undefined) || (json === null)) {
|
|
13
|
+
return json;
|
|
14
|
+
}
|
|
15
|
+
return {
|
|
16
|
+
'to': !runtime.exists(json, 'to') ? undefined : json['to'],
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
function ScreenTransactionRequestContextEvmTransactionToJSON(value) {
|
|
20
|
+
if (value === undefined) {
|
|
21
|
+
return undefined;
|
|
22
|
+
}
|
|
23
|
+
if (value === null) {
|
|
24
|
+
return null;
|
|
25
|
+
}
|
|
26
|
+
return {
|
|
27
|
+
'to': value.to,
|
|
28
|
+
};
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
exports.ScreenTransactionRequestContextEvmTransactionFromJSON = ScreenTransactionRequestContextEvmTransactionFromJSON;
|
|
32
|
+
exports.ScreenTransactionRequestContextEvmTransactionFromJSONTyped = ScreenTransactionRequestContextEvmTransactionFromJSONTyped;
|
|
33
|
+
exports.ScreenTransactionRequestContextEvmTransactionToJSON = ScreenTransactionRequestContextEvmTransactionToJSON;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ScreenTransactionRequestContextEvmTransaction.cjs","sources":["../../../../../libs/sdk-api-core/src/models/ScreenTransactionRequestContextEvmTransaction.ts"],"sourcesContent":null,"names":["exists"],"mappings":";;;;;;AAAA;AA6BM,SAAU,qDAAqD,CAAC,IAAS,EAAA;AAC3E,IAAA,OAAO,0DAA0D,CAAC,IAAW,CAAC,CAAC;AACnF,CAAC;AAEe,SAAA,0DAA0D,CAAC,IAAS,EAAE,mBAA4B,EAAA;AAC9G,IAAA,IAAI,CAAC,IAAI,KAAK,SAAS,MAAM,IAAI,KAAK,IAAI,CAAC,EAAE;AACzC,QAAA,OAAO,IAAI,CAAC;KACf;IACD,OAAO;AAEH,QAAA,IAAI,EAAE,CAACA,cAAM,CAAC,IAAI,EAAE,IAAI,CAAC,GAAG,SAAS,GAAG,IAAI,CAAC,IAAI,CAAC;KACrD,CAAC;AACN,CAAC;AAEK,SAAU,mDAAmD,CAAC,KAA4D,EAAA;AAC5H,IAAA,IAAI,KAAK,KAAK,SAAS,EAAE;AACrB,QAAA,OAAO,SAAS,CAAC;KACpB;AACD,IAAA,IAAI,KAAK,KAAK,IAAI,EAAE;AAChB,QAAA,OAAO,IAAI,CAAC;KACf;IACD,OAAO;QAEH,IAAI,EAAE,KAAK,CAAC,EAAE;KACjB,CAAC;AACN;;;;;;"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Dashboard API
|
|
3
|
+
* Dashboard API documentation
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
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
|
+
* The envelope destination, absent for contract deployments.
|
|
14
|
+
* @export
|
|
15
|
+
* @interface ScreenTransactionRequestContextEvmTransaction
|
|
16
|
+
*/
|
|
17
|
+
export interface ScreenTransactionRequestContextEvmTransaction {
|
|
18
|
+
/**
|
|
19
|
+
* The envelope destination address. Calldata is not decoded.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof ScreenTransactionRequestContextEvmTransaction
|
|
22
|
+
*/
|
|
23
|
+
to?: string;
|
|
24
|
+
}
|
|
25
|
+
export declare function ScreenTransactionRequestContextEvmTransactionFromJSON(json: any): ScreenTransactionRequestContextEvmTransaction;
|
|
26
|
+
export declare function ScreenTransactionRequestContextEvmTransactionFromJSONTyped(json: any, ignoreDiscriminator: boolean): ScreenTransactionRequestContextEvmTransaction;
|
|
27
|
+
export declare function ScreenTransactionRequestContextEvmTransactionToJSON(value?: ScreenTransactionRequestContextEvmTransaction | null): any;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { exists } from '../runtime.js';
|
|
2
|
+
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
function ScreenTransactionRequestContextEvmTransactionFromJSON(json) {
|
|
5
|
+
return ScreenTransactionRequestContextEvmTransactionFromJSONTyped(json);
|
|
6
|
+
}
|
|
7
|
+
function ScreenTransactionRequestContextEvmTransactionFromJSONTyped(json, ignoreDiscriminator) {
|
|
8
|
+
if ((json === undefined) || (json === null)) {
|
|
9
|
+
return json;
|
|
10
|
+
}
|
|
11
|
+
return {
|
|
12
|
+
'to': !exists(json, 'to') ? undefined : json['to'],
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
function ScreenTransactionRequestContextEvmTransactionToJSON(value) {
|
|
16
|
+
if (value === undefined) {
|
|
17
|
+
return undefined;
|
|
18
|
+
}
|
|
19
|
+
if (value === null) {
|
|
20
|
+
return null;
|
|
21
|
+
}
|
|
22
|
+
return {
|
|
23
|
+
'to': value.to,
|
|
24
|
+
};
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
export { ScreenTransactionRequestContextEvmTransactionFromJSON, ScreenTransactionRequestContextEvmTransactionFromJSONTyped, ScreenTransactionRequestContextEvmTransactionToJSON };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ScreenTransactionRequestContextEvmTransaction.js","sources":["../../../../../libs/sdk-api-core/src/models/ScreenTransactionRequestContextEvmTransaction.ts"],"sourcesContent":null,"names":[],"mappings":";;AAAA;AA6BM,SAAU,qDAAqD,CAAC,IAAS,EAAA;AAC3E,IAAA,OAAO,0DAA0D,CAAC,IAAW,CAAC,CAAC;AACnF,CAAC;AAEe,SAAA,0DAA0D,CAAC,IAAS,EAAE,mBAA4B,EAAA;AAC9G,IAAA,IAAI,CAAC,IAAI,KAAK,SAAS,MAAM,IAAI,KAAK,IAAI,CAAC,EAAE;AACzC,QAAA,OAAO,IAAI,CAAC;KACf;IACD,OAAO;AAEH,QAAA,IAAI,EAAE,CAAC,MAAM,CAAC,IAAI,EAAE,IAAI,CAAC,GAAG,SAAS,GAAG,IAAI,CAAC,IAAI,CAAC;KACrD,CAAC;AACN,CAAC;AAEK,SAAU,mDAAmD,CAAC,KAA4D,EAAA;AAC5H,IAAA,IAAI,KAAK,KAAK,SAAS,EAAE;AACrB,QAAA,OAAO,SAAS,CAAC;KACpB;AACD,IAAA,IAAI,KAAK,KAAK,IAAI,EAAE;AAChB,QAAA,OAAO,IAAI,CAAC;KACf;IACD,OAAO;QAEH,IAAI,EAAE,KAAK,CAAC,EAAE;KACjB,CAAC;AACN;;;;"}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
/* tslint:disable */
|
|
6
|
+
/* eslint-disable */
|
|
7
|
+
/**
|
|
8
|
+
* Dashboard API
|
|
9
|
+
* Dashboard API documentation
|
|
10
|
+
*
|
|
11
|
+
* The version of the OpenAPI document: 1.0.0
|
|
12
|
+
*
|
|
13
|
+
*
|
|
14
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
15
|
+
* https://openapi-generator.tech
|
|
16
|
+
* Do not edit the class manually.
|
|
17
|
+
*/
|
|
18
|
+
function ScreenTransactionRequestContextStellarTransactionFromJSON(json) {
|
|
19
|
+
return ScreenTransactionRequestContextStellarTransactionFromJSONTyped(json);
|
|
20
|
+
}
|
|
21
|
+
function ScreenTransactionRequestContextStellarTransactionFromJSONTyped(json, ignoreDiscriminator) {
|
|
22
|
+
if ((json === undefined) || (json === null)) {
|
|
23
|
+
return json;
|
|
24
|
+
}
|
|
25
|
+
return {
|
|
26
|
+
'serializedTransaction': json['serializedTransaction'],
|
|
27
|
+
};
|
|
28
|
+
}
|
|
29
|
+
function ScreenTransactionRequestContextStellarTransactionToJSON(value) {
|
|
30
|
+
if (value === undefined) {
|
|
31
|
+
return undefined;
|
|
32
|
+
}
|
|
33
|
+
if (value === null) {
|
|
34
|
+
return null;
|
|
35
|
+
}
|
|
36
|
+
return {
|
|
37
|
+
'serializedTransaction': value.serializedTransaction,
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
exports.ScreenTransactionRequestContextStellarTransactionFromJSON = ScreenTransactionRequestContextStellarTransactionFromJSON;
|
|
42
|
+
exports.ScreenTransactionRequestContextStellarTransactionFromJSONTyped = ScreenTransactionRequestContextStellarTransactionFromJSONTyped;
|
|
43
|
+
exports.ScreenTransactionRequestContextStellarTransactionToJSON = ScreenTransactionRequestContextStellarTransactionToJSON;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ScreenTransactionRequestContextStellarTransaction.cjs","sources":["../../../../../libs/sdk-api-core/src/models/ScreenTransactionRequestContextStellarTransaction.ts"],"sourcesContent":null,"names":[],"mappings":";;;;AAAA;AACA;AACA;;;;;;;;;;AAUG;AAiBG,SAAU,yDAAyD,CAAC,IAAS,EAAA;AAC/E,IAAA,OAAO,8DAA8D,CAAC,IAAW,CAAC,CAAC;AACvF,CAAC;AAEe,SAAA,8DAA8D,CAAC,IAAS,EAAE,mBAA4B,EAAA;AAClH,IAAA,IAAI,CAAC,IAAI,KAAK,SAAS,MAAM,IAAI,KAAK,IAAI,CAAC,EAAE;AACzC,QAAA,OAAO,IAAI,CAAC;KACf;IACD,OAAO;AAEH,QAAA,uBAAuB,EAAE,IAAI,CAAC,uBAAuB,CAAC;KACzD,CAAC;AACN,CAAC;AAEK,SAAU,uDAAuD,CAAC,KAAgE,EAAA;AACpI,IAAA,IAAI,KAAK,KAAK,SAAS,EAAE;AACrB,QAAA,OAAO,SAAS,CAAC;KACpB;AACD,IAAA,IAAI,KAAK,KAAK,IAAI,EAAE;AAChB,QAAA,OAAO,IAAI,CAAC;KACf;IACD,OAAO;QAEH,uBAAuB,EAAE,KAAK,CAAC,qBAAqB;KACvD,CAAC;AACN;;;;;;"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Dashboard API
|
|
3
|
+
* Dashboard API documentation
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
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 ScreenTransactionRequestContextStellarTransaction
|
|
16
|
+
*/
|
|
17
|
+
export interface ScreenTransactionRequestContextStellarTransaction {
|
|
18
|
+
/**
|
|
19
|
+
* Base64-encoded transaction envelope XDR.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof ScreenTransactionRequestContextStellarTransaction
|
|
22
|
+
*/
|
|
23
|
+
serializedTransaction: string;
|
|
24
|
+
}
|
|
25
|
+
export declare function ScreenTransactionRequestContextStellarTransactionFromJSON(json: any): ScreenTransactionRequestContextStellarTransaction;
|
|
26
|
+
export declare function ScreenTransactionRequestContextStellarTransactionFromJSONTyped(json: any, ignoreDiscriminator: boolean): ScreenTransactionRequestContextStellarTransaction;
|
|
27
|
+
export declare function ScreenTransactionRequestContextStellarTransactionToJSON(value?: ScreenTransactionRequestContextStellarTransaction | null): any;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Dashboard API
|
|
5
|
+
* Dashboard API documentation
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0
|
|
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
|
+
function ScreenTransactionRequestContextStellarTransactionFromJSON(json) {
|
|
15
|
+
return ScreenTransactionRequestContextStellarTransactionFromJSONTyped(json);
|
|
16
|
+
}
|
|
17
|
+
function ScreenTransactionRequestContextStellarTransactionFromJSONTyped(json, ignoreDiscriminator) {
|
|
18
|
+
if ((json === undefined) || (json === null)) {
|
|
19
|
+
return json;
|
|
20
|
+
}
|
|
21
|
+
return {
|
|
22
|
+
'serializedTransaction': json['serializedTransaction'],
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
function ScreenTransactionRequestContextStellarTransactionToJSON(value) {
|
|
26
|
+
if (value === undefined) {
|
|
27
|
+
return undefined;
|
|
28
|
+
}
|
|
29
|
+
if (value === null) {
|
|
30
|
+
return null;
|
|
31
|
+
}
|
|
32
|
+
return {
|
|
33
|
+
'serializedTransaction': value.serializedTransaction,
|
|
34
|
+
};
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
export { ScreenTransactionRequestContextStellarTransactionFromJSON, ScreenTransactionRequestContextStellarTransactionFromJSONTyped, ScreenTransactionRequestContextStellarTransactionToJSON };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ScreenTransactionRequestContextStellarTransaction.js","sources":["../../../../../libs/sdk-api-core/src/models/ScreenTransactionRequestContextStellarTransaction.ts"],"sourcesContent":null,"names":[],"mappings":"AAAA;AACA;AACA;;;;;;;;;;AAUG;AAiBG,SAAU,yDAAyD,CAAC,IAAS,EAAA;AAC/E,IAAA,OAAO,8DAA8D,CAAC,IAAW,CAAC,CAAC;AACvF,CAAC;AAEe,SAAA,8DAA8D,CAAC,IAAS,EAAE,mBAA4B,EAAA;AAClH,IAAA,IAAI,CAAC,IAAI,KAAK,SAAS,MAAM,IAAI,KAAK,IAAI,CAAC,EAAE;AACzC,QAAA,OAAO,IAAI,CAAC;KACf;IACD,OAAO;AAEH,QAAA,uBAAuB,EAAE,IAAI,CAAC,uBAAuB,CAAC;KACzD,CAAC;AACN,CAAC;AAEK,SAAU,uDAAuD,CAAC,KAAgE,EAAA;AACpI,IAAA,IAAI,KAAK,KAAK,SAAS,EAAE;AACrB,QAAA,OAAO,SAAS,CAAC;KACpB;AACD,IAAA,IAAI,KAAK,KAAK,IAAI,EAAE;AAChB,QAAA,OAAO,IAAI,CAAC;KACf;IACD,OAAO;QAEH,uBAAuB,EAAE,KAAK,CAAC,qBAAqB;KACvD,CAAC;AACN;;;;"}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
/* tslint:disable */
|
|
6
|
+
/* eslint-disable */
|
|
7
|
+
/**
|
|
8
|
+
* Dashboard API
|
|
9
|
+
* Dashboard API documentation
|
|
10
|
+
*
|
|
11
|
+
* The version of the OpenAPI document: 1.0.0
|
|
12
|
+
*
|
|
13
|
+
*
|
|
14
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
15
|
+
* https://openapi-generator.tech
|
|
16
|
+
* Do not edit the class manually.
|
|
17
|
+
*/
|
|
18
|
+
function ScreenTransactionRequestContextSuiTransactionFromJSON(json) {
|
|
19
|
+
return ScreenTransactionRequestContextSuiTransactionFromJSONTyped(json);
|
|
20
|
+
}
|
|
21
|
+
function ScreenTransactionRequestContextSuiTransactionFromJSONTyped(json, ignoreDiscriminator) {
|
|
22
|
+
if ((json === undefined) || (json === null)) {
|
|
23
|
+
return json;
|
|
24
|
+
}
|
|
25
|
+
return {
|
|
26
|
+
'serializedTransaction': json['serializedTransaction'],
|
|
27
|
+
};
|
|
28
|
+
}
|
|
29
|
+
function ScreenTransactionRequestContextSuiTransactionToJSON(value) {
|
|
30
|
+
if (value === undefined) {
|
|
31
|
+
return undefined;
|
|
32
|
+
}
|
|
33
|
+
if (value === null) {
|
|
34
|
+
return null;
|
|
35
|
+
}
|
|
36
|
+
return {
|
|
37
|
+
'serializedTransaction': value.serializedTransaction,
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
exports.ScreenTransactionRequestContextSuiTransactionFromJSON = ScreenTransactionRequestContextSuiTransactionFromJSON;
|
|
42
|
+
exports.ScreenTransactionRequestContextSuiTransactionFromJSONTyped = ScreenTransactionRequestContextSuiTransactionFromJSONTyped;
|
|
43
|
+
exports.ScreenTransactionRequestContextSuiTransactionToJSON = ScreenTransactionRequestContextSuiTransactionToJSON;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ScreenTransactionRequestContextSuiTransaction.cjs","sources":["../../../../../libs/sdk-api-core/src/models/ScreenTransactionRequestContextSuiTransaction.ts"],"sourcesContent":null,"names":[],"mappings":";;;;AAAA;AACA;AACA;;;;;;;;;;AAUG;AAiBG,SAAU,qDAAqD,CAAC,IAAS,EAAA;AAC3E,IAAA,OAAO,0DAA0D,CAAC,IAAW,CAAC,CAAC;AACnF,CAAC;AAEe,SAAA,0DAA0D,CAAC,IAAS,EAAE,mBAA4B,EAAA;AAC9G,IAAA,IAAI,CAAC,IAAI,KAAK,SAAS,MAAM,IAAI,KAAK,IAAI,CAAC,EAAE;AACzC,QAAA,OAAO,IAAI,CAAC;KACf;IACD,OAAO;AAEH,QAAA,uBAAuB,EAAE,IAAI,CAAC,uBAAuB,CAAC;KACzD,CAAC;AACN,CAAC;AAEK,SAAU,mDAAmD,CAAC,KAA4D,EAAA;AAC5H,IAAA,IAAI,KAAK,KAAK,SAAS,EAAE;AACrB,QAAA,OAAO,SAAS,CAAC;KACpB;AACD,IAAA,IAAI,KAAK,KAAK,IAAI,EAAE;AAChB,QAAA,OAAO,IAAI,CAAC;KACf;IACD,OAAO;QAEH,uBAAuB,EAAE,KAAK,CAAC,qBAAqB;KACvD,CAAC;AACN;;;;;;"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Dashboard API
|
|
3
|
+
* Dashboard API documentation
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
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 ScreenTransactionRequestContextSuiTransaction
|
|
16
|
+
*/
|
|
17
|
+
export interface ScreenTransactionRequestContextSuiTransaction {
|
|
18
|
+
/**
|
|
19
|
+
* Base64- or hex-encoded BCS TransactionData.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof ScreenTransactionRequestContextSuiTransaction
|
|
22
|
+
*/
|
|
23
|
+
serializedTransaction: string;
|
|
24
|
+
}
|
|
25
|
+
export declare function ScreenTransactionRequestContextSuiTransactionFromJSON(json: any): ScreenTransactionRequestContextSuiTransaction;
|
|
26
|
+
export declare function ScreenTransactionRequestContextSuiTransactionFromJSONTyped(json: any, ignoreDiscriminator: boolean): ScreenTransactionRequestContextSuiTransaction;
|
|
27
|
+
export declare function ScreenTransactionRequestContextSuiTransactionToJSON(value?: ScreenTransactionRequestContextSuiTransaction | null): any;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Dashboard API
|
|
5
|
+
* Dashboard API documentation
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0
|
|
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
|
+
function ScreenTransactionRequestContextSuiTransactionFromJSON(json) {
|
|
15
|
+
return ScreenTransactionRequestContextSuiTransactionFromJSONTyped(json);
|
|
16
|
+
}
|
|
17
|
+
function ScreenTransactionRequestContextSuiTransactionFromJSONTyped(json, ignoreDiscriminator) {
|
|
18
|
+
if ((json === undefined) || (json === null)) {
|
|
19
|
+
return json;
|
|
20
|
+
}
|
|
21
|
+
return {
|
|
22
|
+
'serializedTransaction': json['serializedTransaction'],
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
function ScreenTransactionRequestContextSuiTransactionToJSON(value) {
|
|
26
|
+
if (value === undefined) {
|
|
27
|
+
return undefined;
|
|
28
|
+
}
|
|
29
|
+
if (value === null) {
|
|
30
|
+
return null;
|
|
31
|
+
}
|
|
32
|
+
return {
|
|
33
|
+
'serializedTransaction': value.serializedTransaction,
|
|
34
|
+
};
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
export { ScreenTransactionRequestContextSuiTransactionFromJSON, ScreenTransactionRequestContextSuiTransactionFromJSONTyped, ScreenTransactionRequestContextSuiTransactionToJSON };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ScreenTransactionRequestContextSuiTransaction.js","sources":["../../../../../libs/sdk-api-core/src/models/ScreenTransactionRequestContextSuiTransaction.ts"],"sourcesContent":null,"names":[],"mappings":"AAAA;AACA;AACA;;;;;;;;;;AAUG;AAiBG,SAAU,qDAAqD,CAAC,IAAS,EAAA;AAC3E,IAAA,OAAO,0DAA0D,CAAC,IAAW,CAAC,CAAC;AACnF,CAAC;AAEe,SAAA,0DAA0D,CAAC,IAAS,EAAE,mBAA4B,EAAA;AAC9G,IAAA,IAAI,CAAC,IAAI,KAAK,SAAS,MAAM,IAAI,KAAK,IAAI,CAAC,EAAE;AACzC,QAAA,OAAO,IAAI,CAAC;KACf;IACD,OAAO;AAEH,QAAA,uBAAuB,EAAE,IAAI,CAAC,uBAAuB,CAAC;KACzD,CAAC;AACN,CAAC;AAEK,SAAU,mDAAmD,CAAC,KAA4D,EAAA;AAC5H,IAAA,IAAI,KAAK,KAAK,SAAS,EAAE;AACrB,QAAA,OAAO,SAAS,CAAC;KACpB;AACD,IAAA,IAAI,KAAK,KAAK,IAAI,EAAE;AAChB,QAAA,OAAO,IAAI,CAAC;KACf;IACD,OAAO;QAEH,uBAAuB,EAAE,KAAK,CAAC,qBAAqB;KACvD,CAAC;AACN;;;;"}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
/* tslint:disable */
|
|
6
|
+
/* eslint-disable */
|
|
7
|
+
/**
|
|
8
|
+
* Dashboard API
|
|
9
|
+
* Dashboard API documentation
|
|
10
|
+
*
|
|
11
|
+
* The version of the OpenAPI document: 1.0.0
|
|
12
|
+
*
|
|
13
|
+
*
|
|
14
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
15
|
+
* https://openapi-generator.tech
|
|
16
|
+
* Do not edit the class manually.
|
|
17
|
+
*/
|
|
18
|
+
function ScreenTransactionRequestContextSvmTransactionFromJSON(json) {
|
|
19
|
+
return ScreenTransactionRequestContextSvmTransactionFromJSONTyped(json);
|
|
20
|
+
}
|
|
21
|
+
function ScreenTransactionRequestContextSvmTransactionFromJSONTyped(json, ignoreDiscriminator) {
|
|
22
|
+
if ((json === undefined) || (json === null)) {
|
|
23
|
+
return json;
|
|
24
|
+
}
|
|
25
|
+
return {
|
|
26
|
+
'serializedTransactions': json['serializedTransactions'],
|
|
27
|
+
};
|
|
28
|
+
}
|
|
29
|
+
function ScreenTransactionRequestContextSvmTransactionToJSON(value) {
|
|
30
|
+
if (value === undefined) {
|
|
31
|
+
return undefined;
|
|
32
|
+
}
|
|
33
|
+
if (value === null) {
|
|
34
|
+
return null;
|
|
35
|
+
}
|
|
36
|
+
return {
|
|
37
|
+
'serializedTransactions': value.serializedTransactions,
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
exports.ScreenTransactionRequestContextSvmTransactionFromJSON = ScreenTransactionRequestContextSvmTransactionFromJSON;
|
|
42
|
+
exports.ScreenTransactionRequestContextSvmTransactionFromJSONTyped = ScreenTransactionRequestContextSvmTransactionFromJSONTyped;
|
|
43
|
+
exports.ScreenTransactionRequestContextSvmTransactionToJSON = ScreenTransactionRequestContextSvmTransactionToJSON;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ScreenTransactionRequestContextSvmTransaction.cjs","sources":["../../../../../libs/sdk-api-core/src/models/ScreenTransactionRequestContextSvmTransaction.ts"],"sourcesContent":null,"names":[],"mappings":";;;;AAAA;AACA;AACA;;;;;;;;;;AAUG;AAiBG,SAAU,qDAAqD,CAAC,IAAS,EAAA;AAC3E,IAAA,OAAO,0DAA0D,CAAC,IAAW,CAAC,CAAC;AACnF,CAAC;AAEe,SAAA,0DAA0D,CAAC,IAAS,EAAE,mBAA4B,EAAA;AAC9G,IAAA,IAAI,CAAC,IAAI,KAAK,SAAS,MAAM,IAAI,KAAK,IAAI,CAAC,EAAE;AACzC,QAAA,OAAO,IAAI,CAAC;KACf;IACD,OAAO;AAEH,QAAA,wBAAwB,EAAE,IAAI,CAAC,wBAAwB,CAAC;KAC3D,CAAC;AACN,CAAC;AAEK,SAAU,mDAAmD,CAAC,KAA4D,EAAA;AAC5H,IAAA,IAAI,KAAK,KAAK,SAAS,EAAE;AACrB,QAAA,OAAO,SAAS,CAAC;KACpB;AACD,IAAA,IAAI,KAAK,KAAK,IAAI,EAAE;AAChB,QAAA,OAAO,IAAI,CAAC;KACf;IACD,OAAO;QAEH,wBAAwB,EAAE,KAAK,CAAC,sBAAsB;KACzD,CAAC;AACN;;;;;;"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Dashboard API
|
|
3
|
+
* Dashboard API documentation
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
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 ScreenTransactionRequestContextSvmTransaction
|
|
16
|
+
*/
|
|
17
|
+
export interface ScreenTransactionRequestContextSvmTransaction {
|
|
18
|
+
/**
|
|
19
|
+
* Base64- or base58-encoded serialized transactions.
|
|
20
|
+
* @type {Array<string>}
|
|
21
|
+
* @memberof ScreenTransactionRequestContextSvmTransaction
|
|
22
|
+
*/
|
|
23
|
+
serializedTransactions: Array<string>;
|
|
24
|
+
}
|
|
25
|
+
export declare function ScreenTransactionRequestContextSvmTransactionFromJSON(json: any): ScreenTransactionRequestContextSvmTransaction;
|
|
26
|
+
export declare function ScreenTransactionRequestContextSvmTransactionFromJSONTyped(json: any, ignoreDiscriminator: boolean): ScreenTransactionRequestContextSvmTransaction;
|
|
27
|
+
export declare function ScreenTransactionRequestContextSvmTransactionToJSON(value?: ScreenTransactionRequestContextSvmTransaction | null): any;
|