示例#1
0
        public async Task <GetTableRowsResponse> GetTableRows(GetTableRowsRequest data)
        {
            var url = string.Format("{0}/v1/chain/get_table_rows", Config.HttpEndpoint);

            return(await HttpHelper.PostJsonAsync <GetTableRowsResponse>(url, data));
        }
示例#2
0
        public async Task <GetTableRowsResponse <TRowType> > GetTableRows <TRowType>(GetTableRowsRequest data, JsonSerializerSettings jsonSettings = null)
        {
            var url = string.Format("{0}/v1/chain/get_table_rows", Config.HttpEndpoint);

            return(await HttpHelper.PostJsonAsync <GetTableRowsResponse <TRowType> >(url, data, jsonSettings));
        }