@fairmint/canton-node-sdk
Version:
Canton Node SDK
56 lines (51 loc) • 1.96 kB
text/typescript
// Copyright (c) 2024 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved.
// SPDX-License-Identifier: Apache-2.0
// Need to import this by path and not through the module, so the module is not
// initialized when we don't want it to (to avoid pulumi configs trying to being read here)
import {
Auth0Config,
Auth0NamespaceConfig,
NamespacedAuth0Configs,
} from '@lfdecentralizedtrust/splice-pulumi-common';
import { SecretsFixtureMap, initDumpConfig } from '../common/src/dump-config-common';
async function main() {
await initDumpConfig();
// eslint-disable-next-line no-process-env
process.env.SPLICE_VALIDATOR_RUNBOOK_VALIDATOR_NAME = 'validator-runbook';
const installNode = await import('./src/installNode');
const namespaceAuth0Cfg: Auth0NamespaceConfig = {
audiences: {
ledgerApi: 'https://ledger_api.example.com',
validatorApi: 'https://validator.example.com/api',
},
backendClientIds: {
validator: 'validator-client-id',
},
uiClientIds: {
wallet: 'wallet-client-id',
cns: 'cns-client-id',
},
};
const namespacedConfigs: NamespacedAuth0Configs = {};
namespacedConfigs['validator'] = namespaceAuth0Cfg;
const auth0Cfg: Auth0Config = {
namespacedConfigs: namespacedConfigs,
auth0Domain: 'auth0Domain',
auth0MgtClientId: 'auth0MgtClientId',
auth0MgtClientSecret: 'auth0MgtClientSecret',
fixedTokenCacheName: 'fixedTokenCacheName',
};
const secrets = new SecretsFixtureMap();
await installNode.installNode({
getSecrets: () => Promise.resolve(secrets),
/* eslint-disable @typescript-eslint/no-unused-vars */
getClientAccessToken: (clientId: string, clientSecret: string, audience: string) =>
Promise.resolve('access_token'),
getCfg: () => auth0Cfg,
reuseNamespaceConfig: (fromNamespace: string, toNamespace: string) => {},
});
}
main().catch(e => {
console.error(e);
process.exit(1);
});