abci_info REST API 端点
参数
该方法不接受任何参数
退货
结果
对象
正在加载...
回复
对象
正在加载...
数据
字符串
正在加载...
版本
字符串
正在加载...
last_block_height
字符串
正在加载...
last_block_app_hash
字符串
正在加载...
minimum_gas_prices
字符串
正在加载...
请求
1curl --location 'https://docs-demo.injective-testnet.quiknode.pro/abci_info'
1curl --location 'https://docs-demo.injective-testnet.quiknode.pro/abci_info'
1const requestOptions = {2方法: "GET",3重定向: "follow"4};56fetch("https://docs-demo.injective-testnet.quiknode.pro/abci_info", requestOptions)7.然后((响应) => 响应.文本())8.然后((结果) => 控制台.log(result))9.catch((error) => 控制台.错误(error));
1const requestOptions = {2方法: "GET",3重定向: "follow"4};56fetch("https://docs-demo.injective-testnet.quiknode.pro/abci_info", requestOptions)7.然后((响应) => 响应.文本())8.然后((结果) => 控制台.log(result))9.catch((error) => 控制台.错误(error));
1导入 请求23url = "https://docs-demo.injective-testnet.quiknode.pro/abci_info"45有效载荷 = {}6标题 = {}78回复 = 请求.请求("GET", url, headers=headers, data=有效载荷)910打印(响应.text)11
1导入 请求23url = "https://docs-demo.injective-testnet.quiknode.pro/abci_info"45有效载荷 = {}6标题 = {}78回复 = 请求.请求("GET", url, headers=headers, data=有效载荷)910打印(响应.text)11
1require "uri"2require "net/http"34url = URI("https://docs-demo.injective-testnet.quiknode.pro/abci_info")56https = Net::HTTP.new(url.主机, url.端口)7https.use_ssl = true89请求 = Net::HTTP::Get.new(url)1011回复 = https.请求(请求)12返回响应.read_body13
1require "uri"2require "net/http"34url = URI("https://docs-demo.injective-testnet.quiknode.pro/abci_info")56https = Net::HTTP.new(url.主机, url.端口)7https.use_ssl = true89请求 = Net::HTTP::Get.new(url)1011回复 = https.请求(请求)12返回响应.read_body13