Beispiel #1
0
        public override Task <JObject> ExecuteAsync(IClient client)
        {
            var    debugStorageRangeAt = new DebugStorageRangeAt(client);
            string blockHash           = Settings.GetBlockHash();
            string contractAddress     = Settings.GetContractAddress();

            return(debugStorageRangeAt.SendRequestAsync(blockHash, 0, contractAddress, "0x0000000000000000000000000000000000000000000000000000000000000000", 1));
        }
Beispiel #2
0
 public DebugApiService(IClient client) : base(client)
 {
     DebugStorageRangeAt   = new DebugStorageRangeAt(client);
     DebugTraceTransaction = new DebugTraceTransaction(client);
     DebugMetrics          = new DebugMetrics(client);
 }