diff --git a/agent/src/agent.ts b/agent/src/agent.ts index 9e5bc9c..d8f11bd 100644 --- a/agent/src/agent.ts +++ b/agent/src/agent.ts @@ -72,7 +72,8 @@ export const agent = new Agent({ {"reqSignature":{},"txn":{"data":{"data":{"alias":"cysecure-itn","blskey":"GdCvMLkkBYevRFi93b6qaj9G2u1W6Vnbg8QhRD1chhrWR8vRE8x9x7KXVeUBPFf6yW5qq2JCfA2frc8SGni2RwjtTagezfwAwnorLhVJqS5ZxTi4pgcw6smebnt4zWVhTkh6ugDHEypHwNQBcw5WhBZcEJKgNbyVLnHok9ob6cfr3u","blskey_pop":"RbH9mY7M5p3UB3oj4sT1skYwMkxjoUnja8eTYfcm83VcNbxC9zR9pCiRhk4q1dJT3wkDBPGNKnk2p83vaJYLcgMuJtzoWoJAWAxjb3Mcq8Agf6cgQpBuzBq2uCzFPuQCAhDS4Kv9iwA6FsRnfvoeFTs1hhgSJVxQzDWMVTVAD9uCqu","client_ip":"35.169.19.171","client_port":"9702","node_ip":"54.225.56.21","node_port":"9701","services":["VALIDATOR"]},"dest":"4ETBDmHzx8iDQB6Xygmo9nNXtMgq9f6hxGArNhQ6Hh3u"},"metadata":{"from":"uSXXXEdBicPHMMhr3ddNF"},"type":"0"},"txnMetadata":{"seqNo":7,"txnId":"3c21718b07806b2f193b35953dda5b68b288efd551dce4467ce890703d5ba549"},"ver":"1"}`, indyNamespace: "indicio:testnet", isProduction: false, - connectOnStartup: true, + // FIXME: indy not fully working yet + connectOnStartup: false, transactionAuthorAgreement: { acceptanceMechanism: "for_session", version: "1.0", diff --git a/agent/src/did/setup.ts b/agent/src/did/setup.ts index d86bba5..e077174 100644 --- a/agent/src/did/setup.ts +++ b/agent/src/did/setup.ts @@ -34,15 +34,16 @@ export async function setupAllDids() { availableDids.push(await getDidForMethod("cheqd")); } - if (DID_INDY_INDICIO_TESTNET_PUBLIC_DID_SEED) { - if (!(await hasDidForMethod("indy"))) { - await importIndyDid( - "indicio:testnet", - DID_INDY_INDICIO_TESTNET_PUBLIC_DID_SEED - ); - } - availableDids.push(await getDidForMethod("indy")); - } + // FIXME: indy not fully working yet + // if (DID_INDY_INDICIO_TESTNET_PUBLIC_DID_SEED) { + // if (!(await hasDidForMethod("indy"))) { + // await importIndyDid( + // "indicio:testnet", + // DID_INDY_INDICIO_TESTNET_PUBLIC_DID_SEED + // ); + // } + // availableDids.push(await getDidForMethod("indy")); + // } } export function getAvailableDids() {