debug_getTrieFlushInterval RPC Method
Please note that this RPC method is available for all Build plans and higher. If you are using the Free Trial plan, you will need to upgrade to utilize this method. See our pricing for more information.
Parameters
This method does not accept any parameters
Returns
time
string
Loading...
Request
1curl -X POST "https://docs-demo.arbitrum-mainnet.quiknode.pro/" \2-H "Content-Type: application/json" \3-d '{4"jsonrpc": "2.0",5"method": "debug_getTrieFlushInterval",6"params": [],7"id": 18}'
1curl -X POST "https://docs-demo.arbitrum-mainnet.quiknode.pro/" \2-H "Content-Type: application/json" \3-d '{4"jsonrpc": "2.0",5"method": "debug_getTrieFlushInterval",6"params": [],7"id": 18}'
1import { ethers } from "ethers";23async function main() {4const provider = new ethers.JsonRpcProvider("https://docs-demo.arbitrum-mainnet.quiknode.pro/");5const response = await provider.send("debug_getTrieFlushInterval", []);6console.log(response);7}89main();
1import { ethers } from "ethers";23async function main() {4const provider = new ethers.JsonRpcProvider("https://docs-demo.arbitrum-mainnet.quiknode.pro/");5const response = await provider.send("debug_getTrieFlushInterval", []);6console.log(response);7}89main();
1from web3 import Web3, HTTPProvider2w3 = Web3(HTTPProvider('https://docs-demo.arbitrum-mainnet.quiknode.pro/'))3response = w3.provider.make_request("debug_getTrieFlushInterval", [])4print(response)
1from web3 import Web3, HTTPProvider2w3 = Web3(HTTPProvider('https://docs-demo.arbitrum-mainnet.quiknode.pro/'))3response = w3.provider.make_request("debug_getTrieFlushInterval", [])4print(response)
1import { createPublicClient, http } from 'viem'23async function main() {4const client = createPublicClient({5transport: http('https://docs-demo.arbitrum-mainnet.quiknode.pro/')6})78const result = await client.request({9method: 'debug_getTrieFlushInterval',10params: []11})1213console.log(result)14}1516main()
1import { createPublicClient, http } from 'viem'23async function main() {4const client = createPublicClient({5transport: http('https://docs-demo.arbitrum-mainnet.quiknode.pro/')6})78const result = await client.request({9method: 'debug_getTrieFlushInterval',10params: []11})1213console.log(result)14}1516main()
1import { Core } from '@quicknode/sdk'23const core = new Core({4endpointUrl: "https://docs-demo.arbitrum-mainnet.quiknode.pro/",5})67core.client8.request({9method: 'debug_getTrieFlushInterval',10params: []11})12.then(res => console.log(res))
1import { Core } from '@quicknode/sdk'23const core = new Core({4endpointUrl: "https://docs-demo.arbitrum-mainnet.quiknode.pro/",5})67core.client8.request({9method: 'debug_getTrieFlushInterval',10params: []11})12.then(res => console.log(res))
1const body = {2jsonrpc: '2.0',3method: 'debug_getTrieFlushInterval',4params: [],5id: 16}78async function main() {9const response = await fetch('https://docs-demo.arbitrum-mainnet.quiknode.pro/', {10method: 'POST',11headers: {'Content-Type': 'application/json'},12body: JSON.stringify(body)13})14const data = await response.json()15console.log(data)16}1718main()
1const body = {2jsonrpc: '2.0',3method: 'debug_getTrieFlushInterval',4params: [],5id: 16}78async function main() {9const response = await fetch('https://docs-demo.arbitrum-mainnet.quiknode.pro/', {10method: 'POST',11headers: {'Content-Type': 'application/json'},12body: JSON.stringify(body)13})14const data = await response.json()15console.log(data)16}1718main()
1import requests2import json34url = "https://docs-demo.arbitrum-mainnet.quiknode.pro/"56payload = json.dumps({7"jsonrpc": "2.0",8"method": "debug_getTrieFlushInterval",9"params": [],10"id": 111})12headers = {13'Content-Type': 'application/json'14}1516response = requests.request("POST", url, headers=headers, data=payload)1718print(response.text)
1import requests2import json34url = "https://docs-demo.arbitrum-mainnet.quiknode.pro/"56payload = json.dumps({7"jsonrpc": "2.0",8"method": "debug_getTrieFlushInterval",9"params": [],10"id": 111})12headers = {13'Content-Type': 'application/json'14}1516response = requests.request("POST", url, headers=headers, data=payload)1718print(response.text)
1require "uri"2require "json"3require "net/http"45uri = URI("https://docs-demo.arbitrum-mainnet.quiknode.pro/")67payload = {8jsonrpc: "2.0",9id: 1,10method: "debug_getTrieFlushInterval",11params: []12}1314request = Net::HTTP::Post.new(uri)15request["Content-Type"] = "application/json"16request.body = JSON.generate(payload)1718response = Net::HTTP.start(uri.host, uri.port, use_ssl: true) do |http|19http.request(request)20end2122puts response.body
1require "uri"2require "json"3require "net/http"45uri = URI("https://docs-demo.arbitrum-mainnet.quiknode.pro/")67payload = {8jsonrpc: "2.0",9id: 1,10method: "debug_getTrieFlushInterval",11params: []12}1314request = Net::HTTP::Post.new(uri)15request["Content-Type"] = "application/json"16request.body = JSON.generate(payload)1718response = Net::HTTP.start(uri.host, uri.port, use_ssl: true) do |http|19http.request(request)20end2122puts response.body
Response
1{2"jsonrpc": "2.0",3"id": 1,4"result": "1h0m0s"5}
1{2"jsonrpc": "2.0",3"id": 1,4"result": "1h0m0s"5}
Don't have an account yet?
Create your Quicknode endpoint in seconds and start building
Get started for free