Skip to content
Draft
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
1 change: 1 addition & 0 deletions packages/contracts-sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
"type": "module",
"types": "dist/index.d.ts",
"dependencies": {
"@farcaster/hub-nodejs": "^0.11.16",
"@snickerdoodlelabs/common-utils": "workspace:^",
"@snickerdoodlelabs/node-utils": "workspace:^",
"@snickerdoodlelabs/objects": "workspace:^",
Expand Down
6 changes: 4 additions & 2 deletions packages/contracts-sdk/src/debug/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@ import {
import { ethers } from "ethers";

// #region export constants
export const chainId = ChainId(31337);
export const providerUrl = URLString("http://localhost:8545");
export const chainId = ChainId(10);
export const providerUrl = URLString(
"https://optimism-mainnet.infura.io/v3/a6271a49218848a7ad939ee62d225914",
);

// This is the private key of the account that A. deployed the contracts and B. has all the token
// #0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266
Expand Down
Loading