from web3 import Web3
w3 = Web3(Web3.HTTPProvider("https://YOUR_QUICKNODE_ENDPOINT_HERE.com"))
resp = w3.provider.make_request(
'qn_sendRawTransactionWithWebhook',
["0x0", "https://webhook.site/b3d157e8-0a39-4e99-a9cc-73320b9046f6"]
)
print(resp)
require 'eth'
client = Eth::Client.create "https://YOUR_QUICKNODE_ENDPOINT_HERE.com"
payload = {
"id":1,
"jsonrpc":"2.0",
"method":"qn_sendRawTransactionWithWebhook",
"params": ["0x0", "https://webhook.site/b3d157e8-0a39-4e99-a9cc-73320b9046f6"]
}
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(
"qn_sendRawTransactionWithWebhook",
["0x0", "https://webhook.site/b3d157e8-0a39-4e99-a9cc-73320b9046f6"]
);
console.log(network);
})();
curl https://YOUR_QUICKNODE_ENDPOINT_HERE.com \
-X POST \
-H "Content-Type: application/json" \
--data '{"method":"qn_sendRawTransactionWithWebhook","params": ["0x0", "https://webhook.site/b3d157e8-0a39-4e99-a9cc-73320b9046f6"],"id":1,"jsonrpc":"2.0"}'