diff --git a/compose/env/holder.env b/compose/env/holder.env
index c395fb460c8420b9007cef1380c34840040844ef..8b6fe454fc6f916b43c9a2b28a6d387c4b03bfba 100644
--- a/compose/env/holder.env
+++ b/compose/env/holder.env
@@ -1,7 +1,7 @@
 LEDGERS="BCOVRIN_TEST"
 IDUNION_KEY=
 
-AGENT_PEER_URL="http://agent-holder:6001"
+AGENT_PEER_URL="http://new.didgram.pro:6001"
 AGENT_NAME=DEV_AGENT_HOLDER_OCM_4 # this should be changed to company name
 AGENT_KEY=DEV_AGENT_HOLDER_OCM_4 #example random string
 AGENT_DID_SEED=2000000000000000CCA120000000TCuste21jsjs #did private key seed min lenght 32
diff --git a/compose/env/issuer.env b/compose/env/issuer.env
index d3774abdcc0cab97012a7a3950a5ea20c4467c82..4bb480b2272b151cac8f0b5f8db33d9020e5b47a 100644
--- a/compose/env/issuer.env
+++ b/compose/env/issuer.env
@@ -1,7 +1,7 @@
 LEDGERS="BCOVRIN_TEST"
 IDUNION_KEY=
 
-AGENT_PEER_URL="http://agent-issuer:8001"
+AGENT_PEER_URL="http://new.didgram.pro:8001"
 AGENT_NAME=DEV_AGENT_ISSUER_OCM_4 # this should be changed to company name
 AGENT_KEY=DEV_AGENT_ISSUER_OCM_4 #example random string
 AGENT_DID_SEED=20000000000000000000000aca0xxaDTCuste21udhasjs #did private key seed min lenght 32
diff --git a/libs/ledgers/src/didgram-test/didgram-test.provider.ts b/libs/ledgers/src/didgram-test/didgram-test.provider.ts
index 30d12de7437d6d21c6e36a3269af36ab788bae8e..39da899bfe194d850c17aa7971c294ce89719afa 100644
--- a/libs/ledgers/src/didgram-test/didgram-test.provider.ts
+++ b/libs/ledgers/src/didgram-test/didgram-test.provider.ts
@@ -20,7 +20,7 @@ export class DidgramTestProvider implements IRegistrator {
     unqualifiedIndyDid: string,
     verkey: string,
   ): Promise<string> => {
-    const did = `did:indy:${unqualifiedIndyDid}`;
+    const did = `did:indy:didgram:test:${unqualifiedIndyDid}`;
 
     this.logger.log(`Trying to register ${did} to didram test`);
     try {
@@ -46,7 +46,7 @@ export class DidgramTestProvider implements IRegistrator {
   getNetworkConf = (): IndyVdrPoolConfig => {
     return {
       genesisTransactions: genesisFile,
-      indyNamespace: "",
+      indyNamespace: "didgram:test",
       isProduction: false,
       connectOnStartup: true,
     };