コード例 #1
0
        public async Task InitializeAsync()
        {
            _issuerWallet = await AgentUtils.Create(_issuerConfig, Credentials);

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

            _holderWalletTwo = await AgentUtils.Create(_holderConfigTwo, Credentials);
        }
コード例 #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);
        }
コード例 #3
0
        public async Task InitializeAsync()
        {
            _responder = await AgentUtils.Create(_responderConfig, Credentials);

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