perpDeployAuctionStatus Info Endpoint Method
参数
类型
字符串
必填
正在加载...
退货
对象
对象
正在加载...
startTimeSeconds
整数
正在加载...
durationSeconds
整数
正在加载...
startGas
字符串
正在加载...
currentGas
字符串
正在加载...
endGas
字符串
正在加载...
请求
1curl https://docs-demo.hype-mainnet.quiknode.pro/evm \2-X POST \3-H "Content-Type: application/json" \4--data '{"type":"perpDeployAuctionStatus"}'5
1curl https://docs-demo.hype-mainnet.quiknode.pro/evm \2-X POST \3-H "Content-Type: application/json" \4--data '{"type":"perpDeployAuctionStatus"}'5
1var myHeaders = new Headers();2myHeaders.追加("Content-Type", "application/json");34var raw = JSON.stringify({5"type": "perpDeployAuctionStatus"6});78var requestOptions = {9方法: 'POST',10标题: myHeaders,11正文: raw,12重定向: 'follow'13};1415fetch(“https://docs-demo.hype-mainnet.quiknode.pro/evm”, requestOptions)16.然后(响应 => 响应.text())17.然后(结果 => 控制台.log(result))18.catch(error => 控制台.log('error', error));19
1var myHeaders = new Headers();2myHeaders.追加("Content-Type", "application/json");34var raw = JSON.stringify({5"type": "perpDeployAuctionStatus"6});78var requestOptions = {9方法: 'POST',10标题: myHeaders,11正文: raw,12重定向: 'follow'13};1415fetch(“https://docs-demo.hype-mainnet.quiknode.pro/evm”, requestOptions)16.然后(响应 => 响应.text())17.然后(结果 => 控制台.log(result))18.catch(error => 控制台.log('error', error));19
1导入 请求2import json34url = "https://docs-demo.hype-mainnet.quiknode.pro/evm"56有效载荷 = json.dumps({7"type": "perpDeployAuctionStatus"8})9标题 = {10“Content-Type”: 'application/json'11}1213回复 = 请求.请求("POST", url, headers=headers, data=有效载荷)1415打印(响应.text)16
1导入 请求2import json34url = "https://docs-demo.hype-mainnet.quiknode.pro/evm"56有效载荷 = json.dumps({7"type": "perpDeployAuctionStatus"8})9标题 = {10“Content-Type”: 'application/json'11}1213回复 = 请求.请求("POST", url, headers=headers, data=有效载荷)1415打印(响应.text)16
1require "uri"2require "json"3require "net/http"45url = URI("https://docs-demo.hype-mainnet.quiknode.pro/evm")67https = Net::HTTP.new(url.主机, url.端口)8https.use_ssl = true910请求 = Net::HTTP::POST.new(url)11请求["Content-Type"] = "application/json"12请求.请求体 = JSON.dump({13"type": "perpDeployAuctionStatus"14})1516回复 = https.请求(请求)17返回响应.read_body18
1require "uri"2require "json"3require "net/http"45url = URI("https://docs-demo.hype-mainnet.quiknode.pro/evm")67https = Net::HTTP.new(url.主机, url.端口)8https.use_ssl = true910请求 = Net::HTTP::POST.new(url)11请求["Content-Type"] = "application/json"12请求.请求体 = JSON.dump({13"type": "perpDeployAuctionStatus"14})1516回复 = https.请求(请求)17返回响应.read_body18