Exemple #1
0
        public void Setup()
        {
            ClientFactory factory = new ProoflessClientFactory(Chain.Mainnet);
            IN3           in3     = factory.CreateIn3(new string[][] { });

            _wallet = (SimpleWallet)in3.Signer;
        }
Exemple #2
0
        public void Setup()
        {
            string[][] mockedResponses =
            {
                new[] { "ipfs_get", "ipfs_get.json" },
                new[] { "ipfs_put", "ipfs_put.json" }
            };

            ClientFactory factory = new ProoflessClientFactory(Chain.Ipfs);;

            _in3 = factory.CreateIn3(mockedResponses);
        }
Exemple #3
0
        public void Setup()
        {
            ClientFactory factory = new ProoflessClientFactory(Chain.Mainnet);

            in3 = factory.CreateIn3(new string[][] { });
        }