Skip to content

Commit

Permalink
feat: trigger latest build (#340)
Browse files Browse the repository at this point in the history
  • Loading branch information
cgilbe27 authored Mar 18, 2024
1 parent 0ca0e40 commit 866c603
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,15 @@ if [ -d "./nibiru/" ]; then
cd nibiru
git checkout main
cd ..
else
elif [ -d "../nibiru/" ]; then
cd ../nibiru
git checkout main
git pull
cd ../ts-sdk
else
cd ..
git clone [email protected]:NibiruChain/nibiru.git
cd ts-sdk
fi

yarn gql-generate & yarn proto-gen
Expand Down
4 changes: 2 additions & 2 deletions src/gql/query/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@ export * from "./featureFlags"
export * from "./governance"
export * from "./ibc"
export * from "./inflation"
export * from "./markPriceCandles"
export * from "./marketing"
export * from "./markPriceCandles"
export * from "./oracle"
export * from "./perp"
export * from "./redelegations"
export * from "./spotLpPositions"
export * from "./spotPoolCreated"
export * from "./spotPoolExited"
export * from "./spotPoolJoined"
export * from "./spotPoolSwap"
export * from "./spotPools"
export * from "./spotPoolSwap"
export * from "./stats"
export * from "./unbondings"
export * from "./users"
Expand Down

0 comments on commit 866c603

Please sign in to comment.