Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace bundler beta endpoints with production in examples #22

Merged
merged 1 commit into from
Jul 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#sepolia chain example values
CHAIN_ID=11155111
BUNDLER_URL=https://sepolia.test.voltaire.candidewallet.com/rpc
BUNDLER_URL=https://sepolia.voltaire.candidewallet.com/rpc
JSON_RPC_NODE_PROVIDER=

#account owner public address and privatekey
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#sepolia chain example values
CHAIN_ID=11155111
BUNDLER_URL=https://sepolia.test.voltaire.candidewallet.com/rpc
BUNDLER_URL=https://sepolia.voltaire.candidewallet.com/rpc
JSON_RPC_NODE_PROVIDER=

#account owner public address and privatekey
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#sepolia chain example values
CHAIN_ID=11155111
BUNDLER_URL=https://sepolia.test.voltaire.candidewallet.com/rpc
BUNDLER_URL=https://sepolia.voltaire.candidewallet.com/rpc
JSON_RPC_NODE_PROVIDER=

#account owner public address and privatekey
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#sepolia chain example values
CHAIN_ID=11155111
BUNDLER_URL=https://sepolia.test.voltaire.candidewallet.com/rpc
BUNDLER_URL=https://sepolia.voltaire.candidewallet.com/rpc
JSON_RPC_NODE_PROVIDER=

#account owner public address and privatekey
Expand Down
2 changes: 1 addition & 1 deletion examples/UsingBundlerRPC/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {Bundler} from "abstractionkit";

async function main(): Promise<void> {
let bundler: Bundler = new Bundler(
"https://sepolia.test.voltaire.candidewallet.com/rpc",
"https://sepolia.voltaire.candidewallet.com/rpc",
);

//an example for using a bundler json rpc methods other than sendUserOperation and estimateUserOperationGas which is covered in another example
Expand Down