Skip to content

Commit

Permalink
style: apply linters automatic fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Hyperledger Bot <hyperledger-bot@hyperledger.org>
  • Loading branch information
hyperledger-bot committed May 8, 2024
1 parent ac706ef commit 88250f4
Showing 1 changed file with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,49 +1,49 @@
/*global __ENV*/
/* global __ENV */

/**
* Maximum number of iterations for the waiting loop.
* If not provided, the default value is 100.
*/
export const WAITING_LOOP_MAX_ITERATIONS = Number(__ENV.MY_USER_AGENT) || 1000;
export const WAITING_LOOP_MAX_ITERATIONS = Number(__ENV.MY_USER_AGENT) || 1000

/**
* Pause interval in seconds for each iteration of the waiting loop.
* If not provided, the default value is 10 milliseconds.
*/
export const WAITING_LOOP_PAUSE_INTERVAL = Number(__ENV.WAITING_LOOP_PAUSE_INTERVAL) || 0.1;
export const WAITING_LOOP_PAUSE_INTERVAL = Number(__ENV.WAITING_LOOP_PAUSE_INTERVAL) || 0.1

/**
* URL for the Issuer agent.
* If not provided, the default value is "http://localhost:8080/cloud-agent".
*/
export const ISSUER_AGENT_URL = __ENV.ISSUER_AGENT_URL || "http://localhost:8080/cloud-agent";
export const ISSUER_AGENT_URL = __ENV.ISSUER_AGENT_URL || 'http://localhost:8080/cloud-agent'

/**
* API key for the Issuer agent.
* If not provided, the default value is an empty string.
*/
export const ISSUER_AGENT_API_KEY = __ENV.ISSUER_AGENT_API_KEY || "";
export const ISSUER_AGENT_API_KEY = __ENV.ISSUER_AGENT_API_KEY || ''

/**
* URL for the Holder agent.
* If not provided, the default value is "http://localhost:8090/cloud-agent".
*/
export const HOLDER_AGENT_URL = __ENV.HOLDER_AGENT_URL || "http://localhost:8090/cloud-agent";
export const HOLDER_AGENT_URL = __ENV.HOLDER_AGENT_URL || 'http://localhost:8090/cloud-agent'

/**
* API key for the Holder agent.
* If not provided, the default value is an empty string.
*/
export const HOLDER_AGENT_API_KEY = __ENV.HOLDER_AGENT_API_KEY || "";
export const HOLDER_AGENT_API_KEY = __ENV.HOLDER_AGENT_API_KEY || ''

/**
* URL for the Verifier agent.
* If not provided, the default value is "http://localhost:8100/cloud-agent".
*/
export const VERIFIER_AGENT_URL = __ENV.VERIFIER_AGENT_URL || "http://localhost:8100/cloud-agent";
export const VERIFIER_AGENT_URL = __ENV.VERIFIER_AGENT_URL || 'http://localhost:8100/cloud-agent'

/**
* API key for the Verifier agent.
* If not provided, the default value is an empty string.
*/
export const VERIFIER_AGENT_API_KEY = __ENV.VERIFIER_AGENT_API_KEY || "";
export const VERIFIER_AGENT_API_KEY = __ENV.VERIFIER_AGENT_API_KEY || ''

0 comments on commit 88250f4

Please sign in to comment.