maxBuilderFee Info Endpoint Method
參數
類型
字串
必填
載入中...
使用者
字串
必填
載入中...
建商
字串
必填
載入中...
退貨
整數
整數
載入中...
請求
1curlmainnet\2-X POST \3-H "Content-Type: application/json" \4--data '{5"type": "maxBuilderFee",6"user": "0x47fc45cebfc47cef07a09a98405b6ebaef00ef75",7"builder": "0x1922810825c90f4270048b96da7b1803cd8609ef"8}'9
1curlmainnet\2-X POST \3-H "Content-Type: application/json" \4--data '{5"type": "maxBuilderFee",6"user": "0x47fc45cebfc47cef07a09a98405b6ebaef00ef75",7"builder": "0x1922810825c90f4270048b96da7b1803cd8609ef"8}'9
1var myHeaders = new Headers();2myHeaders.追加("Content-Type", "application/json");34var 原始 = JSON.stringify({5"type": "maxBuilderFee",6"user": "0x47fc45cebfc47cef07a09a98405b6ebaef00ef75",7"builder": "0x1922810825c90f4270048b96da7b1803cd8609ef"8});910var requestOptions = {11方法: 'POST',12標題: myHeaders,13正文: 原始,14重定向: '追蹤'15};1617fetch(「mainnet」, requestOptions)18.接著(回應 => response.text())19.接著(結果 => 控制台.log(結果))20.catchcatch(錯誤 => console.log('error', error));21
1var myHeaders = new Headers();2myHeaders.追加("Content-Type", "application/json");34var 原始 = JSON.stringify({5"type": "maxBuilderFee",6"user": "0x47fc45cebfc47cef07a09a98405b6ebaef00ef75",7"builder": "0x1922810825c90f4270048b96da7b1803cd8609ef"8});910var requestOptions = {11方法: 'POST',12標題: myHeaders,13正文: 原始,14重定向: '追蹤'15};1617fetch(「mainnet」, requestOptions)18.接著(回應 => response.text())19.接著(結果 => 控制台.log(結果))20.catchcatch(錯誤 => console.log('error', error));21
1匯入 請求2匯入 json34網址 = "mainnet"56有效載荷 = json.dumps({7"type": "maxBuilderFee",8"user": "0x47fc45cebfc47cef07a09a98405b6ebaef00ef75",9"builder": "0x1922810825c90f4270048b96da7b1803cd8609ef"10})11標題 = {12「Content-Type」: 'application/json'13}1415回應 = 請求.請求("POST", url, headers=headers, data=有效載荷)1617列印(回應.text)18
1匯入 請求2匯入 json34網址 = "mainnet"56有效載荷 = json.dumps({7"type": "maxBuilderFee",8"user": "0x47fc45cebfc47cef07a09a98405b6ebaef00ef75",9"builder": "0x1922810825c90f4270048b96da7b1803cd8609ef"10})11標題 = {12「Content-Type」: 'application/json'13}1415回應 = 請求.請求("POST", url, headers=headers, data=有效載荷)1617列印(回應.text)18
1需要 "uri"2require "json"3需要 "net/http"45網址 = URI("mainnet")67https = 網::HTTP.new(url.主機, 網址.port)8https.use_ssl = true910請求 = 淨額::HTTP::POST.新增(網址)11請求["Content-Type"] = "application/json"12請求。主體 = JSON.dump({13"type": "maxBuilderFee",14"user": "0x47fc45cebfc47cef07a09a98405b6ebaef00ef75",15"builder": "0x1922810825c90f4270048b96da7b1803cd8609ef"16})1718回應 = https.請求(請求)19puts 回應。read_body20
1需要 "uri"2require "json"3需要 "net/http"45網址 = URI("mainnet")67https = 網::HTTP.new(url.主機, 網址.port)8https.use_ssl = true910請求 = 淨額::HTTP::POST.新增(網址)11請求["Content-Type"] = "application/json"12請求。主體 = JSON.dump({13"type": "maxBuilderFee",14"user": "0x47fc45cebfc47cef07a09a98405b6ebaef00ef75",15"builder": "0x1922810825c90f4270048b96da7b1803cd8609ef"16})1718回應 = https.請求(請求)19puts 回應。read_body20