Skip to content

Abracadabra-money/abracadabra-subgraph

Repository files navigation

Abracadabra Subgraph

TheGraph exposes a GraphQL endpoint to query the events and entities within Abracadabra ecosystem.

Currently, there are multiple subgraphs, but additional subgraphs can be added to this repository, following the current architecture.

This repository contains multiple subgraphs:

Subgraphs

  1. Blocks: Tracks all blocks on Chain.

  2. Cauldrons: Tracks all Abracadabra Cauldrons data with price, volume

  3. Magic APE: Tracks Magic APE rewards,apy and tvl

  4. Magic GLP: Tracks Magic GLP rewards

  5. Level Finance: Tracks Level Finance rewards

  6. Beam: Tracks Beam

  7. sSpell: Tracks sSpell

  8. mSpell: Tracks mSpell

  9. Spell: Tracks Spell

  10. Curve:

Build

NETWORK=ethereum pnpm exec turbo run build --scope=<SUBGRAPH_NAME> --force

Testing

Matchstick documentation

# Run all tests
pnpm exec turbo run test --scope=<SUBGRAPH_NAME>

# Run single test
pnpm exec turbo run test -- <TEST> --scope=<SUBGRAPH_NAME>

Deployment script

add a deploy.sh in the root dir with:

# V3 DEPLOYMENT
declare -a networks=("ethereum" "avalance" "arbitrum")
SUBGRAPH=v3
DIRECTORY=v3
USER=wagmi
ACCESS_TOKEN=SET_YOUR_ACCESS_TOKEN_HERE
for network in "${networks[@]}"
do
    echo "BUILD $network $DIRECTORY" 
    NETWORK=$network pnpm exec turbo run build --scope=$DIRECTORY --force
    echo "DEPLOYING TO $USER/$SUBGRAPH-$network" 
    cd subgraphs/$DIRECTORY/ && pnpm exec graph deploy --product hosted-service $USER/$SUBGRAPH-$network --access-token $ACCESS_TOKEN
    cd ../../
done;

Releases

No releases published

Packages

No packages published