Welcome to the code for Coordinape! If you're new to the project, check out our docs.
Stack: React, Hasura, & Vercel serverless functions
We use pnpm to manage our dependencies. It's a drop-in replacement for npm and yarn that's faster and more space-efficient. If you don't have it installed, you can install it with npm i -g pnpm.
We recommend NVM to manage your NodeJS versions. If you don't have it installed, you can install it:https://github.com/nvm-sh/nvm?tab=readme-ov-file#install--update-script
Then, run the following commands to install NodeJS v20 and set it as your default:
nvm install 20
nvm alias default v20
pnpm installpnpm setupcp .env.example .env.envHARDHAT_OWNER_ADDRESS and LOCAL_SEED_ADDRESS to your local dev walletVITE_ALCHEMY_ETH_MAINNET_API_KEY to an Alchemy Ethereum Mainnet project API KEY, which you can get for free at alchemy.compnpm docker:start - Start Hasura and postgrespnpm docker:cleanpnpm db-seed-fresh - Seed the db w/ dummy datapnpm startapi/If you want to hack on end-to-end tests, or see why one might be failing, see our cypress README.
# Co shortcuts
alias co='cd ~/code/coordinape/'
# hasura migrations
mg() {
pnpm hasura migrate --database-name default $@
}
# apply hasura migrations
mga() {
pnpm hasura migrate apply --database-name default $@
}
# show status of migrations
mgs() {
pnpm hasura migrate status --database-name default $@
}
# restart hasura and reload metadata
alias mdr='pnpm hasura metadata apply && pnpm hasura metadata reload && pnpm hasura metadata ic list'
# inntall and start
alias start="pnpm i && pnpm start"
VITE_ALCHEMY_ETH_MAINNET_API_KEY in .env to the API-KEY of an RPC node with access to archive data. It's used to set up a mainnet fork for the test environmentFor a one-off test run, run pnpm test:ci. This starts test instances of Hasura, Postgres, and the web app, populates them with test data, and runs both Jest and Cypress tests against them.
If you want to run tests interactively as you develop:
pnpm test:up. This will start the test instances.pnpm test for the Jest tests, or pnpm cy:dev for the Cypress tests.More detailed guidelines coming soon.
When writing new frontend components, please use Stitches instead of Material-UI. See:
stitches.config.tssrc/ui, where we have a set of basic componentsstyled; components with logic and/or state should still go in src/components, or in a subfolder named for the main component they belong to.Hasura creates a
GraphQL API
atop our postgres db. We use it to apply
migrations
and
manage metadata.
Perhaps the easiest way to get a feel is start the app and run pnpm hasura console.
pnpm hasura console to modify and explore the databasepnpm generate after schema changes to codegen Zeus & react-query libspnpm start to be runningIf you pull in any new changes to the schema, your local Hasura instance might start complaining about metadata inconsistency. In order to apply the new migrations / metadata to your local instance, run the following commands:
pnpm hasura migrate apply
pnpm hasura metadata apply
Any changes you make in pnpm hasura console will be automatically exported to your local hasura directory as migrations or metadata.
These will be applied to the production instance once the PR is merged. You can test them in preview apps by merging them to staging first.
Hardhat is used with typechain to generate TypeScript bindings for the smart contracts, which are in this repo as a git submodule at hardhat/contracts.
./scripts/rebuild_hardhat.sh - Rebuild the generated code after making changes to contract codeIf you have more questions, please create an issue or ask in our Discord channel #devs-all.
$ claude mcp add coordinape \
-- python -m otcore.mcp_server <graph>