diff --git a/scripts/build.sh b/scripts/build.sh index 2e5eff49..014725d5 100644 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -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 git@github.com:NibiruChain/nibiru.git + cd ts-sdk fi yarn gql-generate & yarn proto-gen diff --git a/src/gql/query/index.ts b/src/gql/query/index.ts index fd5d833e..c1fe4cb9 100644 --- a/src/gql/query/index.ts +++ b/src/gql/query/index.ts @@ -9,8 +9,8 @@ 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" @@ -18,8 +18,8 @@ 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"