@fairmint/canton-node-sdk 0.0.126 → 0.0.128
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/build/src/clients/index.d.ts +0 -1
- package/build/src/clients/index.d.ts.map +1 -1
- package/build/src/clients/index.js +0 -1
- package/build/src/clients/index.js.map +1 -1
- package/build/src/clients/ledger-json-api/operations/v2/updates/subscribe-to-updates.d.ts +30 -0
- package/build/src/clients/ledger-json-api/operations/v2/updates/subscribe-to-updates.d.ts.map +1 -1
- package/build/src/clients/ledger-json-api/operations/v2/updates/subscribe-to-updates.js +40 -1
- package/build/src/clients/ledger-json-api/operations/v2/updates/subscribe-to-updates.js.map +1 -1
- package/build/src/clients/register.d.ts +0 -1
- package/build/src/clients/register.d.ts.map +1 -1
- package/build/src/clients/register.js +1 -3
- package/build/src/clients/register.js.map +1 -1
- package/build/src/clients/validator-api/operations/v0/scan-proxy/get-member-traffic-status.d.ts +1 -1
- package/build/src/clients/validator-api/operations/v0/scan-proxy/get-member-traffic-status.d.ts.map +1 -1
- package/build/src/clients/validator-api/operations/v0/scan-proxy/get-member-traffic-status.js +8 -4
- package/build/src/clients/validator-api/operations/v0/scan-proxy/get-member-traffic-status.js.map +1 -1
- package/build/src/core/BaseClient.d.ts +1 -25
- package/build/src/core/BaseClient.d.ts.map +1 -1
- package/build/src/core/BaseClient.js +1 -55
- package/build/src/core/BaseClient.js.map +1 -1
- package/build/src/core/config/EnvLoader.d.ts.map +1 -1
- package/build/src/core/config/EnvLoader.js +4 -24
- package/build/src/core/config/EnvLoader.js.map +1 -1
- package/build/src/core/operations/ApiOperation.d.ts +1 -22
- package/build/src/core/operations/ApiOperation.d.ts.map +1 -1
- package/build/src/core/operations/ApiOperation.js +1 -37
- package/build/src/core/operations/ApiOperation.js.map +1 -1
- package/build/src/core/operations/ApiOperationFactory.d.ts +2 -10
- package/build/src/core/operations/ApiOperationFactory.d.ts.map +1 -1
- package/build/src/core/operations/ApiOperationFactory.js +0 -32
- package/build/src/core/operations/ApiOperationFactory.js.map +1 -1
- package/build/src/core/types.d.ts +1 -5
- package/build/src/core/types.d.ts.map +1 -1
- package/build/src/utils/external-signing/index.d.ts.map +1 -1
- package/build/src/utils/external-signing/index.js +0 -4
- package/build/src/utils/external-signing/index.js.map +1 -1
- package/build/src/utils/index.d.ts.map +1 -1
- package/build/src/utils/index.js +0 -3
- package/build/src/utils/index.js.map +1 -1
- package/example.env.localnet +0 -7
- package/package.json +1 -4
- package/build/src/clients/lighthouse-api/LighthouseApiClient.generated.d.ts +0 -9
- package/build/src/clients/lighthouse-api/LighthouseApiClient.generated.d.ts.map +0 -1
- package/build/src/clients/lighthouse-api/LighthouseApiClient.generated.js +0 -17
- package/build/src/clients/lighthouse-api/LighthouseApiClient.generated.js.map +0 -1
- package/build/src/clients/lighthouse-api/index.d.ts +0 -3
- package/build/src/clients/lighthouse-api/index.d.ts.map +0 -1
- package/build/src/clients/lighthouse-api/index.js +0 -21
- package/build/src/clients/lighthouse-api/index.js.map +0 -1
- package/build/src/clients/lighthouse-api/operations/get-transfer-agent.d.ts +0 -45
- package/build/src/clients/lighthouse-api/operations/get-transfer-agent.d.ts.map +0 -1
- package/build/src/clients/lighthouse-api/operations/get-transfer-agent.js +0 -26
- package/build/src/clients/lighthouse-api/operations/get-transfer-agent.js.map +0 -1
- package/build/src/clients/lighthouse-api/types.d.ts +0 -66
- package/build/src/clients/lighthouse-api/types.d.ts.map +0 -1
- package/build/src/clients/lighthouse-api/types.js +0 -41
- package/build/src/clients/lighthouse-api/types.js.map +0 -1
- package/build/src/generated/openapi-types.d.ts +0 -4977
- package/build/src/generated/openapi-types.d.ts.map +0 -1
- package/build/src/generated/openapi-types.js +0 -7
- package/build/src/generated/openapi-types.js.map +0 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { type z } from 'zod';
|
|
2
|
-
import { type BaseClient
|
|
2
|
+
import { type BaseClient } from '../BaseClient';
|
|
3
3
|
import { type RequestConfig } from '../types';
|
|
4
|
-
import { ApiOperation
|
|
4
|
+
import { ApiOperation } from './ApiOperation';
|
|
5
5
|
export interface ApiOperationConfig<Params, Response> {
|
|
6
6
|
paramsSchema: z.ZodSchema<Params>;
|
|
7
7
|
method: 'GET' | 'POST' | 'DELETE' | 'PATCH';
|
|
@@ -10,13 +10,5 @@ export interface ApiOperationConfig<Params, Response> {
|
|
|
10
10
|
requestConfig?: RequestConfig;
|
|
11
11
|
transformResponse?: (response: Response) => Response;
|
|
12
12
|
}
|
|
13
|
-
export interface SimpleApiOperationConfig<Params, Response> {
|
|
14
|
-
paramsSchema: z.ZodSchema<Params>;
|
|
15
|
-
method: 'GET' | 'POST' | 'DELETE' | 'PATCH';
|
|
16
|
-
buildUrl: (params: Params, apiUrl: string, client: SimpleBaseClient) => string;
|
|
17
|
-
buildRequestData?: (params: Params, client: SimpleBaseClient) => unknown;
|
|
18
|
-
transformResponse?: (response: Response) => Response;
|
|
19
|
-
}
|
|
20
13
|
export declare function createApiOperation<Params, Response>(config: ApiOperationConfig<Params, Response>): new (client: BaseClient) => ApiOperation<Params, Response>;
|
|
21
|
-
export declare function createSimpleApiOperation<Params, Response>(config: SimpleApiOperationConfig<Params, Response>): new (client: SimpleBaseClient) => SimpleApiOperation<Params, Response>;
|
|
22
14
|
//# sourceMappingURL=ApiOperationFactory.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ApiOperationFactory.d.ts","sourceRoot":"","sources":["../../../../src/core/operations/ApiOperationFactory.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,CAAC,EAAE,MAAM,KAAK,CAAC;AAC7B,OAAO,EAAE,KAAK,UAAU,EAAE,
|
|
1
|
+
{"version":3,"file":"ApiOperationFactory.d.ts","sourceRoot":"","sources":["../../../../src/core/operations/ApiOperationFactory.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,CAAC,EAAE,MAAM,KAAK,CAAC;AAC7B,OAAO,EAAE,KAAK,UAAU,EAAE,MAAM,eAAe,CAAC;AAChD,OAAO,EAAE,KAAK,aAAa,EAAE,MAAM,UAAU,CAAC;AAC9C,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAE9C,MAAM,WAAW,kBAAkB,CAAC,MAAM,EAAE,QAAQ;IAClD,YAAY,EAAE,CAAC,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC;IAClC,MAAM,EAAE,KAAK,GAAG,MAAM,GAAG,QAAQ,GAAG,OAAO,CAAC;IAC5C,QAAQ,EAAE,CAAC,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,UAAU,KAAK,MAAM,CAAC;IACzE,gBAAgB,CAAC,EAAE,CAAC,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,UAAU,KAAK,OAAO,CAAC;IACnE,aAAa,CAAC,EAAE,aAAa,CAAC;IAC9B,iBAAiB,CAAC,EAAE,CAAC,QAAQ,EAAE,QAAQ,KAAK,QAAQ,CAAC;CACtD;AAED,wBAAgB,kBAAkB,CAAC,MAAM,EAAE,QAAQ,EACjD,MAAM,EAAE,kBAAkB,CAAC,MAAM,EAAE,QAAQ,CAAC,GAC3C,KAAK,MAAM,EAAE,UAAU,KAAK,YAAY,CAAC,MAAM,EAAE,QAAQ,CAAC,CAoC5D"}
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.createApiOperation = createApiOperation;
|
|
4
|
-
exports.createSimpleApiOperation = createSimpleApiOperation;
|
|
5
4
|
const ApiOperation_1 = require("./ApiOperation");
|
|
6
5
|
function createApiOperation(config) {
|
|
7
6
|
return class extends ApiOperation_1.ApiOperation {
|
|
@@ -38,35 +37,4 @@ function createApiOperation(config) {
|
|
|
38
37
|
}
|
|
39
38
|
};
|
|
40
39
|
}
|
|
41
|
-
function createSimpleApiOperation(config) {
|
|
42
|
-
return class extends ApiOperation_1.SimpleApiOperation {
|
|
43
|
-
async execute(params) {
|
|
44
|
-
// Validate parameters
|
|
45
|
-
const validatedParams = this.validateParams(params, config.paramsSchema);
|
|
46
|
-
const url = config.buildUrl(validatedParams, this.getApiUrl(), this.client);
|
|
47
|
-
let response;
|
|
48
|
-
if (config.method === 'GET') {
|
|
49
|
-
response = await this.makeGetRequest(url);
|
|
50
|
-
}
|
|
51
|
-
else if (config.method === 'DELETE') {
|
|
52
|
-
response = await this.makeDeleteRequest(url);
|
|
53
|
-
}
|
|
54
|
-
else {
|
|
55
|
-
const data = await config.buildRequestData?.(validatedParams, this.client);
|
|
56
|
-
if (config.method === 'POST') {
|
|
57
|
-
response = await this.makePostRequest(url, data);
|
|
58
|
-
}
|
|
59
|
-
else {
|
|
60
|
-
// config.method === 'PATCH'
|
|
61
|
-
response = await this.makePatchRequest(url, data);
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
// Transform response if needed
|
|
65
|
-
if (config.transformResponse) {
|
|
66
|
-
return config.transformResponse(response);
|
|
67
|
-
}
|
|
68
|
-
return response;
|
|
69
|
-
}
|
|
70
|
-
};
|
|
71
|
-
}
|
|
72
40
|
//# sourceMappingURL=ApiOperationFactory.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ApiOperationFactory.js","sourceRoot":"","sources":["../../../../src/core/operations/ApiOperationFactory.ts"],"names":[],"mappings":";;
|
|
1
|
+
{"version":3,"file":"ApiOperationFactory.js","sourceRoot":"","sources":["../../../../src/core/operations/ApiOperationFactory.ts"],"names":[],"mappings":";;AAcA,gDAsCC;AAjDD,iDAA8C;AAW9C,SAAgB,kBAAkB,CAChC,MAA4C;IAE5C,OAAO,KAAM,SAAQ,2BAA8B;QACjD,KAAK,CAAC,OAAO,CAAC,MAAc;YAC1B,sBAAsB;YACtB,MAAM,eAAe,GAAG,IAAI,CAAC,cAAc,CAAC,MAAM,EAAE,MAAM,CAAC,YAAY,CAAC,CAAC;YAEzE,MAAM,GAAG,GAAG,MAAM,CAAC,QAAQ,CAAC,eAAe,EAAE,IAAI,CAAC,SAAS,EAAE,EAAE,IAAI,CAAC,MAAM,CAAC,CAAC;YAC5E,MAAM,aAAa,GAAG,MAAM,CAAC,aAAa,IAAI;gBAC5C,WAAW,EAAE,kBAAkB;gBAC/B,kBAAkB,EAAE,IAAI;aACzB,CAAC;YAEF,IAAI,QAAkB,CAAC;YAEvB,IAAI,MAAM,CAAC,MAAM,KAAK,KAAK,EAAE,CAAC;gBAC5B,QAAQ,GAAG,MAAM,IAAI,CAAC,cAAc,CAAW,GAAG,EAAE,aAAa,CAAC,CAAC;YACrE,CAAC;iBAAM,IAAI,MAAM,CAAC,MAAM,KAAK,QAAQ,EAAE,CAAC;gBACtC,QAAQ,GAAG,MAAM,IAAI,CAAC,iBAAiB,CAAW,GAAG,EAAE,aAAa,CAAC,CAAC;YACxE,CAAC;iBAAM,CAAC;gBACN,MAAM,IAAI,GAAG,MAAM,MAAM,CAAC,gBAAgB,EAAE,CAAC,eAAe,EAAE,IAAI,CAAC,MAAM,CAAC,CAAC;gBAC3E,IAAI,MAAM,CAAC,MAAM,KAAK,MAAM,EAAE,CAAC;oBAC7B,QAAQ,GAAG,MAAM,IAAI,CAAC,eAAe,CAAW,GAAG,EAAE,IAAI,EAAE,aAAa,CAAC,CAAC;gBAC5E,CAAC;qBAAM,CAAC;oBACN,4BAA4B;oBAC5B,QAAQ,GAAG,MAAM,IAAI,CAAC,gBAAgB,CAAW,GAAG,EAAE,IAAI,EAAE,aAAa,CAAC,CAAC;gBAC7E,CAAC;YACH,CAAC;YAED,+BAA+B;YAC/B,IAAI,MAAM,CAAC,iBAAiB,EAAE,CAAC;gBAC7B,OAAO,MAAM,CAAC,iBAAiB,CAAC,QAAQ,CAAC,CAAC;YAC5C,CAAC;YAED,OAAO,QAAQ,CAAC;QAClB,CAAC;KACF,CAAC;AACJ,CAAC"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export type NetworkType = 'devnet' | 'testnet' | 'mainnet';
|
|
2
2
|
export type ProviderType = string;
|
|
3
|
-
export type ApiType = 'LEDGER_JSON_API' | 'VALIDATOR_API' | 'SCAN_API'
|
|
3
|
+
export type ApiType = 'LEDGER_JSON_API' | 'VALIDATOR_API' | 'SCAN_API';
|
|
4
4
|
export interface AuthConfig {
|
|
5
5
|
grantType: string;
|
|
6
6
|
clientId: string;
|
|
@@ -16,9 +16,6 @@ export interface ApiConfig {
|
|
|
16
16
|
partyId?: string;
|
|
17
17
|
userId?: string;
|
|
18
18
|
}
|
|
19
|
-
export interface LighthouseApiConfig {
|
|
20
|
-
apiUrl: string;
|
|
21
|
-
}
|
|
22
19
|
export interface ProviderConfig {
|
|
23
20
|
providerName: string;
|
|
24
21
|
authUrl: string;
|
|
@@ -45,7 +42,6 @@ export interface ClientConfig {
|
|
|
45
42
|
LEDGER_JSON_API?: ApiConfig;
|
|
46
43
|
VALIDATOR_API?: ApiConfig;
|
|
47
44
|
SCAN_API?: ApiConfig;
|
|
48
|
-
LIGHTHOUSE_API?: LighthouseApiConfig;
|
|
49
45
|
};
|
|
50
46
|
}
|
|
51
47
|
//# sourceMappingURL=types.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/core/types.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,WAAW,GAAG,QAAQ,GAAG,SAAS,GAAG,SAAS,CAAC;AAC3D,MAAM,MAAM,YAAY,GAAG,MAAM,CAAC;AAElC,MAAM,MAAM,OAAO,GAAG,iBAAiB,GAAG,eAAe,GAAG,UAAU,
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/core/types.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,WAAW,GAAG,QAAQ,GAAG,SAAS,GAAG,SAAS,CAAC;AAC3D,MAAM,MAAM,YAAY,GAAG,MAAM,CAAC;AAElC,MAAM,MAAM,OAAO,GAAG,iBAAiB,GAAG,eAAe,GAAG,UAAU,CAAC;AAEvE,MAAM,WAAW,UAAU;IACzB,SAAS,EAAE,MAAM,CAAC;IAClB,QAAQ,EAAE,MAAM,CAAC;IACjB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,WAAW,SAAS;IACxB,MAAM,EAAE,MAAM,CAAC;IACf,IAAI,EAAE,UAAU,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,cAAc;IAC7B,YAAY,EAAE,MAAM,CAAC;IACrB,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,EAAE,MAAM,CAAC,OAAO,EAAE,SAAS,CAAC,CAAC;CAClC;AAED,MAAM,WAAW,qBAAqB;IACpC,YAAY,EAAE,MAAM,CAAC;IACrB,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,EAAE,OAAO,CAAC,MAAM,CAAC,OAAO,EAAE,SAAS,CAAC,CAAC,CAAC;CAC3C;AAED,MAAM,WAAW,aAAa;IAC5B,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,kBAAkB,CAAC,EAAE,OAAO,CAAC;CAC9B;AAED,MAAM,WAAW,YAAY;IAC3B,OAAO,EAAE,WAAW,CAAC;IACrB,QAAQ,CAAC,EAAE,YAAY,CAAC;IACxB,MAAM,CAAC,EAAE,OAAO,WAAW,EAAE,MAAM,CAAC;IAGpC,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC;IAC1B,IAAI,CAAC,EAAE;QACL,eAAe,CAAC,EAAE,SAAS,CAAC;QAC5B,aAAa,CAAC,EAAE,SAAS,CAAC;QAC1B,QAAQ,CAAC,EAAE,SAAS,CAAC;KACtB,CAAC;CACH"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/utils/external-signing/index.ts"],"names":[],"mappings":"AAAA,cAAc,2BAA2B,CAAC;AAC1C,cAAc,yBAAyB,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/utils/external-signing/index.ts"],"names":[],"mappings":"AAAA,cAAc,2BAA2B,CAAC;AAC1C,cAAc,yBAAyB,CAAC;AACxC,cAAc,gCAAgC,CAAC;AAC/C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,gCAAgC,CAAC;AAC/C,cAAc,iBAAiB,CAAC"}
|
|
@@ -16,12 +16,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./allocate-external-party"), exports);
|
|
18
18
|
__exportStar(require("./create-external-party"), exports);
|
|
19
|
-
// Privy utilities are not exported by default to avoid bundling @privy-io/node
|
|
20
|
-
// Import directly from the specific files if needed
|
|
21
|
-
// export * from './create-external-party-privy';
|
|
22
19
|
__exportStar(require("./execute-external-transaction"), exports);
|
|
23
20
|
__exportStar(require("./generate-external-party"), exports);
|
|
24
21
|
__exportStar(require("./prepare-external-transaction"), exports);
|
|
25
|
-
// export * from './privy-utils';
|
|
26
22
|
__exportStar(require("./stellar-utils"), exports);
|
|
27
23
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/utils/external-signing/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,4DAA0C;AAC1C,0DAAwC;AACxC
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/utils/external-signing/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,4DAA0C;AAC1C,0DAAwC;AACxC,iEAA+C;AAC/C,4DAA0C;AAC1C,iEAA+C;AAC/C,kDAAgC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/utils/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,cAAc,aAAa,CAAC;AAC5B,cAAc,oBAAoB,CAAC;AACnC,cAAc,UAAU,CAAC;AACzB,cAAc,WAAW,CAAC;AAC1B,cAAc,SAAS,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/utils/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,cAAc,aAAa,CAAC;AAC5B,cAAc,oBAAoB,CAAC;AACnC,cAAc,UAAU,CAAC;AACzB,cAAc,WAAW,CAAC;AAC1B,cAAc,SAAS,CAAC;AACxB,cAAc,gBAAgB,CAAC"}
|
package/build/src/utils/index.js
CHANGED
|
@@ -20,8 +20,5 @@ __exportStar(require("./external-signing"), exports);
|
|
|
20
20
|
__exportStar(require("./mining"), exports);
|
|
21
21
|
__exportStar(require("./parsers"), exports);
|
|
22
22
|
__exportStar(require("./party"), exports);
|
|
23
|
-
// Privy utilities are not exported by default to avoid bundling @privy-io/node
|
|
24
|
-
// Import directly from '@fairmint/canton-node-sdk/build/src/utils/privy' if needed
|
|
25
|
-
// export * from './privy';
|
|
26
23
|
__exportStar(require("./transactions"), exports);
|
|
27
24
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/utils/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2CAAyB;AACzB,8CAA4B;AAC5B,qDAAmC;AACnC,2CAAyB;AACzB,4CAA0B;AAC1B,0CAAwB;AACxB
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/utils/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2CAAyB;AACzB,8CAA4B;AAC5B,qDAAmC;AACnC,2CAAyB;AACzB,4CAA0B;AAC1B,0CAAwB;AACxB,iDAA+B"}
|
package/example.env.localnet
CHANGED
|
@@ -85,12 +85,6 @@ CANTON_LOCALNET_SV_AUTH_URL=http://localhost:4000/auth
|
|
|
85
85
|
CANTON_LOCALNET_SV_PARTY_ID=
|
|
86
86
|
CANTON_LOCALNET_SV_USER_ID=sv
|
|
87
87
|
|
|
88
|
-
# =============================================================================
|
|
89
|
-
# LIGHTHOUSE API CONFIGURATION
|
|
90
|
-
# =============================================================================
|
|
91
|
-
# Lighthouse API is typically not available in LocalNet
|
|
92
|
-
# CANTON_LOCALNET_LIGHTHOUSE_API_URI=http://localhost:8080/api
|
|
93
|
-
|
|
94
88
|
# =============================================================================
|
|
95
89
|
# Contract IDs
|
|
96
90
|
# =============================================================================
|
|
@@ -100,4 +94,3 @@ CANTON_VALIDATOR_WALLET_APP_INSTALL_CONTRACT_ID_LOCALNET=
|
|
|
100
94
|
CANTON_AMULET_RULES_CONTRACT_ID_LOCALNET=
|
|
101
95
|
CANTON_WALLET_TEMPLATE_ID_LOCALNET=
|
|
102
96
|
CANTON_PREAPPROVAL_TEMPLATE_ID_LOCALNET=
|
|
103
|
-
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fairmint/canton-node-sdk",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.128",
|
|
4
4
|
"description": "Canton Node SDK",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"canton",
|
|
@@ -91,9 +91,6 @@
|
|
|
91
91
|
"tsx": "4.20.6",
|
|
92
92
|
"typescript": "5.9.3"
|
|
93
93
|
},
|
|
94
|
-
"optionalDependencies": {
|
|
95
|
-
"@privy-io/node": "^0.3.0"
|
|
96
|
-
},
|
|
97
94
|
"engines": {
|
|
98
95
|
"node": ">=18.0.0"
|
|
99
96
|
},
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { SimpleBaseClient, ClientConfig } from '../../core';
|
|
2
|
-
import { GetTransferAgent } from './operations/get-transfer-agent';
|
|
3
|
-
/** Client for interacting with Canton's LighthouseApi */
|
|
4
|
-
export declare class LighthouseApiClient extends SimpleBaseClient {
|
|
5
|
-
getTransferAgent: (params: Parameters<InstanceType<typeof GetTransferAgent>['execute']>[0]) => ReturnType<InstanceType<typeof GetTransferAgent>['execute']>;
|
|
6
|
-
constructor(clientConfig?: ClientConfig);
|
|
7
|
-
private initializeMethods;
|
|
8
|
-
}
|
|
9
|
-
//# sourceMappingURL=LighthouseApiClient.generated.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"LighthouseApiClient.generated.d.ts","sourceRoot":"","sources":["../../../../src/clients/lighthouse-api/LighthouseApiClient.generated.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,YAAY,EAAE,MAAM,YAAY,CAAC;AAC5D,OAAO,EAAE,gBAAgB,EAAE,MAAM,iCAAiC,CAAC;AAGnE,yDAAyD;AACzD,qBAAa,mBAAoB,SAAQ,gBAAgB;IAChD,gBAAgB,EAAG,CAAC,MAAM,EAAE,UAAU,CAAC,YAAY,CAAC,OAAO,gBAAgB,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,UAAU,CAAC,YAAY,CAAC,OAAO,gBAAgB,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC;gBAExJ,YAAY,CAAC,EAAE,YAAY;IAKvC,OAAO,CAAC,iBAAiB;CAG1B"}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.LighthouseApiClient = void 0;
|
|
4
|
-
const core_1 = require("../../core");
|
|
5
|
-
const get_transfer_agent_1 = require("./operations/get-transfer-agent");
|
|
6
|
-
/** Client for interacting with Canton's LighthouseApi */
|
|
7
|
-
class LighthouseApiClient extends core_1.SimpleBaseClient {
|
|
8
|
-
constructor(clientConfig) {
|
|
9
|
-
super('LIGHTHOUSE_API', clientConfig);
|
|
10
|
-
this.initializeMethods();
|
|
11
|
-
}
|
|
12
|
-
initializeMethods() {
|
|
13
|
-
this.getTransferAgent = (params) => new get_transfer_agent_1.GetTransferAgent(this).execute(params);
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
exports.LighthouseApiClient = LighthouseApiClient;
|
|
17
|
-
//# sourceMappingURL=LighthouseApiClient.generated.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"LighthouseApiClient.generated.js","sourceRoot":"","sources":["../../../../src/clients/lighthouse-api/LighthouseApiClient.generated.ts"],"names":[],"mappings":";;;AAAA,qCAA4D;AAC5D,wEAAmE;AAGnE,yDAAyD;AACzD,MAAa,mBAAoB,SAAQ,uBAAgB;IAGvD,YAAY,YAA2B;QACrC,KAAK,CAAC,gBAAgB,EAAE,YAAY,CAAC,CAAC;QACtC,IAAI,CAAC,iBAAiB,EAAE,CAAC;IAC3B,CAAC;IAEO,iBAAiB;QACvB,IAAI,CAAC,gBAAgB,GAAG,CAAC,MAAM,EAAE,EAAE,CAAC,IAAI,qCAAgB,CAAC,IAAI,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;IACjF,CAAC;CACF;AAXD,kDAWC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/clients/lighthouse-api/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,MAAM,iCAAiC,CAAC;AACtE,cAAc,SAAS,CAAC"}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
-
};
|
|
16
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
exports.LighthouseApiClient = void 0;
|
|
18
|
-
var LighthouseApiClient_generated_1 = require("./LighthouseApiClient.generated");
|
|
19
|
-
Object.defineProperty(exports, "LighthouseApiClient", { enumerable: true, get: function () { return LighthouseApiClient_generated_1.LighthouseApiClient; } });
|
|
20
|
-
__exportStar(require("./types"), exports);
|
|
21
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/clients/lighthouse-api/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,iFAAsE;AAA7D,oIAAA,mBAAmB,OAAA;AAC5B,0CAAwB"}
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
import { z } from 'zod';
|
|
2
|
-
export declare const GetTransferAgentParamsSchema: z.ZodObject<{
|
|
3
|
-
partyId: z.ZodString;
|
|
4
|
-
}, z.core.$strip>;
|
|
5
|
-
export type GetTransferAgentParams = z.infer<typeof GetTransferAgentParamsSchema>;
|
|
6
|
-
/**
|
|
7
|
-
* Get transfer agent information from Lighthouse
|
|
8
|
-
*
|
|
9
|
-
* @example
|
|
10
|
-
* ```typescript
|
|
11
|
-
* const transferAgent = await client.getTransferAgent({ partyId: 'TransferAgent-mainnet-1::12204a039322c01e9f714b56259c3e68b69058bf5dfe1debbe956c698f905ceba9d7' });
|
|
12
|
-
* ```;
|
|
13
|
-
*/
|
|
14
|
-
export declare const GetTransferAgent: new (client: import("../../../core/BaseClient").SimpleBaseClient) => import("../../../core/operations/ApiOperation").SimpleApiOperation<{
|
|
15
|
-
partyId: string;
|
|
16
|
-
}, {
|
|
17
|
-
balance: {
|
|
18
|
-
currency: string;
|
|
19
|
-
total_cc: number;
|
|
20
|
-
};
|
|
21
|
-
traffic_status: {
|
|
22
|
-
total_consumed: number;
|
|
23
|
-
total_limit: number;
|
|
24
|
-
total_purchased: number;
|
|
25
|
-
usage_percent: number;
|
|
26
|
-
last_updated: string;
|
|
27
|
-
};
|
|
28
|
-
validator: {
|
|
29
|
-
id: string;
|
|
30
|
-
sponsor: string;
|
|
31
|
-
dso: string;
|
|
32
|
-
last_active_at: string;
|
|
33
|
-
first_round: number;
|
|
34
|
-
last_round: number;
|
|
35
|
-
miss_round: number;
|
|
36
|
-
version: string;
|
|
37
|
-
contact: string;
|
|
38
|
-
metadata_last_update: string;
|
|
39
|
-
created_at: string;
|
|
40
|
-
template_id: string;
|
|
41
|
-
contract_id: string;
|
|
42
|
-
updated_at: string;
|
|
43
|
-
};
|
|
44
|
-
}>;
|
|
45
|
-
//# sourceMappingURL=get-transfer-agent.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"get-transfer-agent.d.ts","sourceRoot":"","sources":["../../../../../src/clients/lighthouse-api/operations/get-transfer-agent.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,eAAO,MAAM,4BAA4B;;iBAEvC,CAAC;AAEH,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC;AAElF;;;;;;;GAOG;AACH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAO3B,CAAC"}
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GetTransferAgent = exports.GetTransferAgentParamsSchema = void 0;
|
|
4
|
-
const zod_1 = require("zod");
|
|
5
|
-
const core_1 = require("../../../../src/core");
|
|
6
|
-
// Define the parameters schema
|
|
7
|
-
exports.GetTransferAgentParamsSchema = zod_1.z.object({
|
|
8
|
-
partyId: zod_1.z.string(),
|
|
9
|
-
});
|
|
10
|
-
/**
|
|
11
|
-
* Get transfer agent information from Lighthouse
|
|
12
|
-
*
|
|
13
|
-
* @example
|
|
14
|
-
* ```typescript
|
|
15
|
-
* const transferAgent = await client.getTransferAgent({ partyId: 'TransferAgent-mainnet-1::12204a039322c01e9f714b56259c3e68b69058bf5dfe1debbe956c698f905ceba9d7' });
|
|
16
|
-
* ```;
|
|
17
|
-
*/
|
|
18
|
-
exports.GetTransferAgent = (0, core_1.createSimpleApiOperation)({
|
|
19
|
-
paramsSchema: exports.GetTransferAgentParamsSchema,
|
|
20
|
-
method: 'GET',
|
|
21
|
-
buildUrl: (params, apiUrl) => {
|
|
22
|
-
const url = `${apiUrl}/validators/${encodeURIComponent(params.partyId)}`;
|
|
23
|
-
return url;
|
|
24
|
-
},
|
|
25
|
-
});
|
|
26
|
-
//# sourceMappingURL=get-transfer-agent.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"get-transfer-agent.js","sourceRoot":"","sources":["../../../../../src/clients/lighthouse-api/operations/get-transfer-agent.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AACxB,+CAAgE;AAGhE,+BAA+B;AAClB,QAAA,4BAA4B,GAAG,OAAC,CAAC,MAAM,CAAC;IACnD,OAAO,EAAE,OAAC,CAAC,MAAM,EAAE;CACpB,CAAC,CAAC;AAIH;;;;;;;GAOG;AACU,QAAA,gBAAgB,GAAG,IAAA,+BAAwB,EAAmD;IACzG,YAAY,EAAE,oCAA4B;IAC1C,MAAM,EAAE,KAAK;IACb,QAAQ,EAAE,CAAC,MAA8B,EAAE,MAAc,EAAE,EAAE;QAC3D,MAAM,GAAG,GAAG,GAAG,MAAM,eAAe,kBAAkB,CAAC,MAAM,CAAC,OAAO,CAAC,EAAE,CAAC;QACzE,OAAO,GAAG,CAAC;IACb,CAAC;CACF,CAAC,CAAC"}
|
|
@@ -1,66 +0,0 @@
|
|
|
1
|
-
import { z } from 'zod';
|
|
2
|
-
/** Balance information for the transfer agent */
|
|
3
|
-
export declare const BalanceSchema: z.ZodObject<{
|
|
4
|
-
currency: z.ZodString;
|
|
5
|
-
total_cc: z.ZodNumber;
|
|
6
|
-
}, z.core.$strip>;
|
|
7
|
-
export type Balance = z.infer<typeof BalanceSchema>;
|
|
8
|
-
/** Traffic status information for the transfer agent */
|
|
9
|
-
export declare const TrafficStatusSchema: z.ZodObject<{
|
|
10
|
-
total_consumed: z.ZodNumber;
|
|
11
|
-
total_limit: z.ZodNumber;
|
|
12
|
-
total_purchased: z.ZodNumber;
|
|
13
|
-
usage_percent: z.ZodNumber;
|
|
14
|
-
last_updated: z.ZodString;
|
|
15
|
-
}, z.core.$strip>;
|
|
16
|
-
export type TrafficStatus = z.infer<typeof TrafficStatusSchema>;
|
|
17
|
-
/** Validator information for the transfer agent */
|
|
18
|
-
export declare const ValidatorSchema: z.ZodObject<{
|
|
19
|
-
id: z.ZodString;
|
|
20
|
-
sponsor: z.ZodString;
|
|
21
|
-
dso: z.ZodString;
|
|
22
|
-
last_active_at: z.ZodString;
|
|
23
|
-
first_round: z.ZodNumber;
|
|
24
|
-
last_round: z.ZodNumber;
|
|
25
|
-
miss_round: z.ZodNumber;
|
|
26
|
-
version: z.ZodString;
|
|
27
|
-
contact: z.ZodString;
|
|
28
|
-
metadata_last_update: z.ZodString;
|
|
29
|
-
created_at: z.ZodString;
|
|
30
|
-
template_id: z.ZodString;
|
|
31
|
-
contract_id: z.ZodString;
|
|
32
|
-
updated_at: z.ZodString;
|
|
33
|
-
}, z.core.$strip>;
|
|
34
|
-
export type Validator = z.infer<typeof ValidatorSchema>;
|
|
35
|
-
/** Complete response from the Lighthouse API getTransferAgent endpoint */
|
|
36
|
-
export declare const GetTransferAgentResponseSchema: z.ZodObject<{
|
|
37
|
-
balance: z.ZodObject<{
|
|
38
|
-
currency: z.ZodString;
|
|
39
|
-
total_cc: z.ZodNumber;
|
|
40
|
-
}, z.core.$strip>;
|
|
41
|
-
traffic_status: z.ZodObject<{
|
|
42
|
-
total_consumed: z.ZodNumber;
|
|
43
|
-
total_limit: z.ZodNumber;
|
|
44
|
-
total_purchased: z.ZodNumber;
|
|
45
|
-
usage_percent: z.ZodNumber;
|
|
46
|
-
last_updated: z.ZodString;
|
|
47
|
-
}, z.core.$strip>;
|
|
48
|
-
validator: z.ZodObject<{
|
|
49
|
-
id: z.ZodString;
|
|
50
|
-
sponsor: z.ZodString;
|
|
51
|
-
dso: z.ZodString;
|
|
52
|
-
last_active_at: z.ZodString;
|
|
53
|
-
first_round: z.ZodNumber;
|
|
54
|
-
last_round: z.ZodNumber;
|
|
55
|
-
miss_round: z.ZodNumber;
|
|
56
|
-
version: z.ZodString;
|
|
57
|
-
contact: z.ZodString;
|
|
58
|
-
metadata_last_update: z.ZodString;
|
|
59
|
-
created_at: z.ZodString;
|
|
60
|
-
template_id: z.ZodString;
|
|
61
|
-
contract_id: z.ZodString;
|
|
62
|
-
updated_at: z.ZodString;
|
|
63
|
-
}, z.core.$strip>;
|
|
64
|
-
}, z.core.$strip>;
|
|
65
|
-
export type GetTransferAgentResponse = z.infer<typeof GetTransferAgentResponseSchema>;
|
|
66
|
-
//# sourceMappingURL=types.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/clients/lighthouse-api/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,iDAAiD;AACjD,eAAO,MAAM,aAAa;;;iBAGxB,CAAC;AAEH,MAAM,MAAM,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;AAEpD,wDAAwD;AACxD,eAAO,MAAM,mBAAmB;;;;;;iBAM9B,CAAC;AAEH,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAEhE,mDAAmD;AACnD,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;iBAe1B,CAAC;AAEH,MAAM,MAAM,SAAS,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AAExD,0EAA0E;AAC1E,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAIzC,CAAC;AAEH,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,8BAA8B,CAAC,CAAC"}
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GetTransferAgentResponseSchema = exports.ValidatorSchema = exports.TrafficStatusSchema = exports.BalanceSchema = void 0;
|
|
4
|
-
const zod_1 = require("zod");
|
|
5
|
-
/** Balance information for the transfer agent */
|
|
6
|
-
exports.BalanceSchema = zod_1.z.object({
|
|
7
|
-
currency: zod_1.z.string(),
|
|
8
|
-
total_cc: zod_1.z.number(),
|
|
9
|
-
});
|
|
10
|
-
/** Traffic status information for the transfer agent */
|
|
11
|
-
exports.TrafficStatusSchema = zod_1.z.object({
|
|
12
|
-
total_consumed: zod_1.z.number(),
|
|
13
|
-
total_limit: zod_1.z.number(),
|
|
14
|
-
total_purchased: zod_1.z.number(),
|
|
15
|
-
usage_percent: zod_1.z.number(),
|
|
16
|
-
last_updated: zod_1.z.string(), // ISO 8601 datetime string
|
|
17
|
-
});
|
|
18
|
-
/** Validator information for the transfer agent */
|
|
19
|
-
exports.ValidatorSchema = zod_1.z.object({
|
|
20
|
-
id: zod_1.z.string(),
|
|
21
|
-
sponsor: zod_1.z.string(),
|
|
22
|
-
dso: zod_1.z.string(),
|
|
23
|
-
last_active_at: zod_1.z.string(), // ISO 8601 datetime string
|
|
24
|
-
first_round: zod_1.z.number(),
|
|
25
|
-
last_round: zod_1.z.number(),
|
|
26
|
-
miss_round: zod_1.z.number(),
|
|
27
|
-
version: zod_1.z.string(),
|
|
28
|
-
contact: zod_1.z.string(),
|
|
29
|
-
metadata_last_update: zod_1.z.string(), // ISO 8601 datetime string
|
|
30
|
-
created_at: zod_1.z.string(), // ISO 8601 datetime string
|
|
31
|
-
template_id: zod_1.z.string(),
|
|
32
|
-
contract_id: zod_1.z.string(),
|
|
33
|
-
updated_at: zod_1.z.string(), // ISO 8601 datetime string
|
|
34
|
-
});
|
|
35
|
-
/** Complete response from the Lighthouse API getTransferAgent endpoint */
|
|
36
|
-
exports.GetTransferAgentResponseSchema = zod_1.z.object({
|
|
37
|
-
balance: exports.BalanceSchema,
|
|
38
|
-
traffic_status: exports.TrafficStatusSchema,
|
|
39
|
-
validator: exports.ValidatorSchema,
|
|
40
|
-
});
|
|
41
|
-
//# sourceMappingURL=types.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../../../src/clients/lighthouse-api/types.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AAExB,iDAAiD;AACpC,QAAA,aAAa,GAAG,OAAC,CAAC,MAAM,CAAC;IACpC,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE;IACpB,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE;CACrB,CAAC,CAAC;AAIH,wDAAwD;AAC3C,QAAA,mBAAmB,GAAG,OAAC,CAAC,MAAM,CAAC;IAC1C,cAAc,EAAE,OAAC,CAAC,MAAM,EAAE;IAC1B,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE;IACvB,eAAe,EAAE,OAAC,CAAC,MAAM,EAAE;IAC3B,aAAa,EAAE,OAAC,CAAC,MAAM,EAAE;IACzB,YAAY,EAAE,OAAC,CAAC,MAAM,EAAE,EAAE,2BAA2B;CACtD,CAAC,CAAC;AAIH,mDAAmD;AACtC,QAAA,eAAe,GAAG,OAAC,CAAC,MAAM,CAAC;IACtC,EAAE,EAAE,OAAC,CAAC,MAAM,EAAE;IACd,OAAO,EAAE,OAAC,CAAC,MAAM,EAAE;IACnB,GAAG,EAAE,OAAC,CAAC,MAAM,EAAE;IACf,cAAc,EAAE,OAAC,CAAC,MAAM,EAAE,EAAE,2BAA2B;IACvD,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE;IACvB,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE;IACtB,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE;IACtB,OAAO,EAAE,OAAC,CAAC,MAAM,EAAE;IACnB,OAAO,EAAE,OAAC,CAAC,MAAM,EAAE;IACnB,oBAAoB,EAAE,OAAC,CAAC,MAAM,EAAE,EAAE,2BAA2B;IAC7D,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,EAAE,2BAA2B;IACnD,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE;IACvB,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE;IACvB,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,EAAE,2BAA2B;CACpD,CAAC,CAAC;AAIH,0EAA0E;AAC7D,QAAA,8BAA8B,GAAG,OAAC,CAAC,MAAM,CAAC;IACrD,OAAO,EAAE,qBAAa;IACtB,cAAc,EAAE,2BAAmB;IACnC,SAAS,EAAE,uBAAe;CAC3B,CAAC,CAAC"}
|