From cae2d1560dca5498747672e794dc67bd875e4107 Mon Sep 17 00:00:00 2001 From: Cameron Gilbert Date: Mon, 18 Mar 2024 16:01:49 -0400 Subject: [PATCH] chore: develop -> main (#341) * refactor: adding contract type to user * fix: tests * test: fix * feat: trigger latest build (#340) --------- Co-authored-by: elshenak Co-authored-by: Calico Nino <54007257+CalicoNino@users.noreply.github.com> --- scripts/build.sh | 6 +++++- src/gql/query/index.ts | 4 ++-- 2 files changed, 7 insertions(+), 3 deletions(-) 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"