Skip to content

Commit

Permalink
feat: add deployer service
Browse files Browse the repository at this point in the history
  • Loading branch information
ctrlc03 committed Sep 16, 2024
1 parent 07b0754 commit 5dbceb9
Show file tree
Hide file tree
Showing 28 changed files with 4,172 additions and 99 deletions.
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: 12 additions & 0 deletions packages/coordinator/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,15 @@ SUBGRAPH_FOLDER=./node_modules/maci-subgraph

# API Key for Pimlico RPC Bundler
PIMLICO_API_KEY="pim_"

# 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=""

# RPC API KEY for Alchemy
RPC_API_KEY=""

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

0 comments on commit 5dbceb9

Please sign in to comment.