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

feat: add deployer service #271

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ yarn-error.log*
# do not commit any .env files to git, except for the .env.example file. https://create.t3.gg/en/usage/env-variables#using-environment-variables
.env
.env*.local
deploy-config.json
deployed-contracts.json
packages/coordinator/deploy-config.json
packages/coordinator/deployed-contracts.json

# vercel
.vercel
Expand Down
3 changes: 2 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,5 @@ test-results/
packages/subgraph/templates/subgraph.template.yaml
packages/subgraph/subgraph.yaml
packages/subgraph/generated/

packages/contracts/deploy-config.json
packages/contracts/deployed-contracts.json
2 changes: 2 additions & 0 deletions packages/contracts/ts/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
export { ERegistryManagerRequestType, ERegistryManagerRequestStatus } from "./constants";

export * from "../typechain-types";
12 changes: 9 additions & 3 deletions packages/coordinator/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,14 @@ SUBGRAPH_FOLDER=./node_modules/maci-subgraph
# API Key for Pimlico RPC Bundler
PIMLICO_API_KEY="pim_"

# A private key for e2e tests
TEST_PRIVATE_KEY=""
# RPC URL for Zerodev bundler on OP sepolia
ZERODEV_BUNDLER_RPC_OP_SEPOLIA=""

# RPC URL for Zerodev bundler on OP mainnet
ZERODEV_BUNDLER_RPC_OP=""

# An RPC API KEY to interact with live networks (used in e2e tests)
# RPC API KEY for Alchemy
RPC_API_KEY=""

# A private key for e2e tests
TEST_PRIVATE_KEY=""
Loading
Loading