Skip to content

Commit 8d54fde

Browse files
authored
chore: fix send-transaction example
1 parent a820b22 commit 8d54fde

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

examples/send-transaction.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ import { ethers } from "ethers";
22
import axios from "axios";
33
import dotenv from "dotenv";
44
dotenv.config();
5+
6+
const SEQUENCER_ADDRESS = "0x197f818c1313dc58b32d88078ecdfb40ea822614";
57
const WVM_RPC_URL= "https://testnet-rpc.wvm.dev"
68
const SEQUENCER_ENDPOINT = "https://wvm-lambda-0755acbdae90.herokuapp.com";
79

@@ -66,4 +68,4 @@ async function sendTransaction() {
6668
}
6769
}
6870

69-
sendTransaction();
71+
sendTransaction();

0 commit comments

Comments
 (0)