/api/v2/getWalletInformation RPC Method
查询参数
地址
字符串
必填
正在加载...
退货
ok
布尔型
正在加载...
结果
对象
正在加载...
@type
字符串
正在加载...
钱包
布尔型
正在加载...
平衡
字符串
正在加载...
account_state
字符串
正在加载...
last_transaction_id
对象
正在加载...
@type
字符串
正在加载...
lt
字符串
正在加载...
哈希
字符串
正在加载...
@extra
字符串
正在加载...
请求
1curl --location 'https://docs-demo.ton-mainnet.quiknode.pro/api/v2/getWalletInformation?address=EQCg1gU0NGQ0fZTAf8v7H6tPkY0P7l17U09lKDU8NfRB8Dyq' \2--header 'accept: application/json'
1curl --location 'https://docs-demo.ton-mainnet.quiknode.pro/api/v2/getWalletInformation?address=EQCg1gU0NGQ0fZTAf8v7H6tPkY0P7l17U09lKDU8NfRB8Dyq' \2--header 'accept: application/json'
1const myHeaders = new Headers();2myHeaders.追加("accept", "application/json");34const requestOptions = {5方法: "GET",6标题: myHeaders,7重定向: "follow"8};910fetch("https://docs-demo.ton-mainnet.quiknode.pro/api/v2/getWalletInformation?address=EQCg1gU0NGQ0fZTAf8v7H6tPkY0P7l17U09lKDU8NfRB8Dyq", requestOptions)11.然后((响应) => 响应.文本())12.然后((结果) => 控制台.log(result))13.catch((error) => 控制台.错误(error));
1const myHeaders = new Headers();2myHeaders.追加("accept", "application/json");34const requestOptions = {5方法: "GET",6标题: myHeaders,7重定向: "follow"8};910fetch("https://docs-demo.ton-mainnet.quiknode.pro/api/v2/getWalletInformation?address=EQCg1gU0NGQ0fZTAf8v7H6tPkY0P7l17U09lKDU8NfRB8Dyq", requestOptions)11.然后((响应) => 响应.文本())12.然后((结果) => 控制台.log(result))13.catch((error) => 控制台.错误(error));
1导入 请求23url = "https://docs-demo.ton-mainnet.quiknode.pro/api/v2/getWalletInformation?address=EQCg1gU0NGQ0fZTAf8v7H6tPkY0P7l17U09lKDU8NfRB8Dyq"45有效载荷 = {}6标题 = {7'accept': 'application/json'8}910回复 = 请求.请求("GET", url, headers=headers, data=有效载荷)1112打印(响应.text)13
1导入 请求23url = "https://docs-demo.ton-mainnet.quiknode.pro/api/v2/getWalletInformation?address=EQCg1gU0NGQ0fZTAf8v7H6tPkY0P7l17U09lKDU8NfRB8Dyq"45有效载荷 = {}6标题 = {7'accept': 'application/json'8}910回复 = 请求.请求("GET", url, headers=headers, data=有效载荷)1112打印(响应.text)13
1require "uri"2require "net/http"34url = URI("https://docs-demo.ton-mainnet.quiknode.pro/api/v2/getWalletInformation?address=EQCg1gU0NGQ0fZTAf8v7H6tPkY0P7l17U09lKDU8NfRB8Dyq")56http = Net::HTTP.new(url.host, url.port)7http.use_ssl = true8请求 = Net::HTTP::Get.new(url)9请求["接受"] = "application/json"1011回复 = http.请求(请求)12返回响应.read_body13
1require "uri"2require "net/http"34url = URI("https://docs-demo.ton-mainnet.quiknode.pro/api/v2/getWalletInformation?address=EQCg1gU0NGQ0fZTAf8v7H6tPkY0P7l17U09lKDU8NfRB8Dyq")56http = Net::HTTP.new(url.host, url.port)7http.use_ssl = true8请求 = Net::HTTP::Get.new(url)9请求["接受"] = "application/json"1011回复 = http.请求(请求)12返回响应.read_body13