public async Task InitializeAsync()
        {
            _issuerWallet = await AgentUtils.Create(_issuerConfig, Credentials);

            _holderWallet = await AgentUtils.Create(_holderConfig, Credentials);

            _holderWalletTwo = await AgentUtils.Create(_holderConfigTwo, Credentials);
        }
Example #2
0
        public async Task InitializeAsync()
        {
            _issuerWallet = await AgentUtils.Create(IssuerConfig, WalletCredentials, true);

            _holderWallet = await AgentUtils.Create(HolderConfig, WalletCredentials, true);

            _requestorWallet = await AgentUtils.Create(RequestorConfig, WalletCredentials, true);
        }
        public async Task InitializeAsync()
        {
            _responder = await AgentUtils.Create(_responderConfig, Credentials);

            _requester = await AgentUtils.Create(_requesterConfig, Credentials, true);
        }
Example #4
0
 public async Task InitializeAsync()
 {
     _holderContext = await AgentUtils.Create(HolderConfiguration, Credentials);
 }