Exemplo n.º 1
0
        protected BlockchainServiceBase(
            string parityNodeUrl)
        {
            _parityNodeUrl   = parityNodeUrl;
            _telemetryClient = new TelemetryClient();

            Web3 = new Web3Parity(parityNodeUrl);
        }
 public Parity(Web3Parity web3Parity)
     : base(web3Parity)
 {
     _web3Parity = web3Parity;
 }
Exemplo n.º 3
0
        private IEthereum BuildParity()
        {
            var web3Parity = new Web3Parity(_serviceSettings.EthereumRpcNodeUrl);

            return(new Parity(web3Parity));
        }