Example #1
0
        static async Task ExecuteDemos()
        {
            await Pool.SetProtocolVersionAsync(2);

            await WalletDemo.Execute();

            await NonSecretsDemo.Execute();

            await AnonCredsDemo.Execute();

            await AnonCredsRevocationDemo.Execute();

            await LedgerDemo.Execute();

            await CryptoDemo.Execute();
        }
Example #2
0
        public static async Task Main(string[] args)
        {
            await Pool.SetProtocolVersionAsync(2);

            await WalletDemo.Execute();

            await NonSecretsDemo.Execute();

            await AnonCredsDemo.Execute();

            await AnonCredsRevocationDemo.Execute();

            await CryptoDemo.Execute();

            await LedgerDemo.Execute();

            Console.WriteLine("Press any key to continue...");
            Console.ReadKey(true);
        }