Skip to content

Commit

Permalink
chore: update readme.md, route most trafic to graph network
Browse files Browse the repository at this point in the history
  • Loading branch information
martines3000 committed Jun 12, 2024
1 parent 6ff4031 commit 32c9f49
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 12 deletions.
17 changes: 6 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,6 @@ The monorepo consists of three main parts:
* [Dapp](packages/dapp)
* [Subgraphs](packages/subgraphs)

## Getting started

```bash
pnpm install
pnpm build
pnpm test
pnpm lint
```

## Deployed contracts and EAS schemas

### EESCore deployed contracts
Expand All @@ -26,6 +17,10 @@ pnpm lint
* Sepolia: [0x5Cb7f40d8a23d9Baff52cFd5A10994EcEfF9e7ED](https://sepolia.etherscan.io/address/0x5Cb7f40d8a23d9Baff52cFd5A10994EcEfF9e7ED)
* Base Sepolia: [0x63F610a03Caa82ca32386BDb6F447a93d4D6F6e7](https://sepolia.basescan.org/address/0x63F610a03Caa82ca32386BDb6F447a93d4D6F6e7)

For deployed EAS contracts see [EAS deployments](https://docs.attest.org/docs/quick--start/contracts)
For deployed EAS contracts see [EAS deployments](https://docs.attest.org/docs/quick--start/contracts).

Our deployed schemas can be found in [deploy script](packages/contracts/scripts/deployCore.ts#L12).

## Deployed subgraphs on The Graph Network

Our deployed schemas can be found in [deploy script](packages/contracts/scripts/deployCore.ts#L12)
* [ees-base](https://thegraph.com/explorer/subgraphs/CQW91XGnwfL15HU8pgPFz2F2ssYLFtsxfBf6tvznEJ2b?view=Query&chain=arbitrum-one)
2 changes: 1 addition & 1 deletion packages/dapp/src/lib/ees/getGraphqlApiUrl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const getRandomEndpoint = (endpoints: string[]) => {
}

// We won't have more than 2 endpoints
return endpoints[Math.random() <= 0.5 ? 0 : 1];
return endpoints[Math.random() <= 0.2 ? 0 : 1];
};

export const getGraphqlApiUrl = (chainId: number) => {
Expand Down

0 comments on commit 32c9f49

Please sign in to comment.