from web3 import Web3
w3 = Web3(Web3.HTTPProvider("https://YOUR_QUICKNODE_ENDPOINT_HERE.com"))
resp = w3.provider.make_request(
'gh_sendRawTransaction',
["EXAMPLE", "{\\\"untilDate\\\":\\\"2023-10-11T21:35:15.393Z\\\",\\\"privateRpc\\\":true}"]
)
print(resp)
require 'eth'
client = Eth::Client.create "https://YOUR_QUICKNODE_ENDPOINT_HERE.com"
payload = {
"id":1,
"jsonrpc":"2.0",
"method":"gh_sendRawTransaction",
"params": ["EXAMPLE", "{\\\"untilDate\\\":\\\"2023-10-11T21:35:15.393Z\\\",\\\"privateRpc\\\":true}"]
}
response = client.send(payload.to_json)
puts response
const ethers = require("ethers");
(async () : {
const provider = new ethers.providers.JsonRpcProvider("https://YOUR_QUICKNODE_ENDPOINT_HERE.com");
const network = await provider.send(
"gh_sendRawTransaction",
["EXAMPLE", "{\\\"untilDate\\\":\\\"2023-10-11T21:35:15.393Z\\\",\\\"privateRpc\\\":true}"]
);
console.log(network);
})();
curl https://YOUR_QUICKNODE_ENDPOINT_HERE.com \
-X POST \
-H "Content-Type: application/json" \
--data '{"method":"gh_sendRawTransaction","params": ["EXAMPLE", "{\\\"untilDate\\\":\\\"2023-10-11T21:35:15.393Z\\\",\\\"privateRpc\\\":true}"],"id":1,"jsonrpc":"2.0"}'