diff --git a/CHANGELOG.md b/CHANGELOG.md index d712ac11..cead4273 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,27 @@ +## [4.1.0](https://github.com/NibiruChain/ts-sdk/compare/v4.0.0...v4.1.0) (2024-04-01) + +### Features + +- proxy prices ([#343](https://github.com/NibiruChain/ts-sdk/issues/343)) ([#344](https://github.com/NibiruChain/ts-sdk/issues/344)) ([b4ab83c](https://github.com/NibiruChain/ts-sdk/commit/b4ab83c2d9b4f17ec0f8bad6141bc7b5a9dc1228)) + +## [4.0.0](https://github.com/NibiruChain/ts-sdk/compare/v3.3.4...v4.0.0) (2024-03-19) + +### Features + +- trigger latest build ([#340](https://github.com/NibiruChain/ts-sdk/issues/340)) ([866c603](https://github.com/NibiruChain/ts-sdk/commit/866c603be250b06f10ead37bc7859a34b9ad4547)) + +### Bug Fixes + +- tests ([00d98cb](https://github.com/NibiruChain/ts-sdk/commit/00d98cbcfafcc21e9bb32f370be7040c167ab198)) + +### Code Refactors + +- adding contract type to user ([7857b2b](https://github.com/NibiruChain/ts-sdk/commit/7857b2b6fca65a502075f365c5fca4cb235ef78d)) + +### Tests + +- fix ([a12ba71](https://github.com/NibiruChain/ts-sdk/commit/a12ba71fb821c1939a60be978bdc3386a43d7f13)) + ### [3.3.4](https://github.com/NibiruChain/ts-sdk/compare/v3.3.3...v3.3.4) (2024-03-18) ### Miscellaneous Chores diff --git a/package.json b/package.json index fb019433..f6062b23 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@nibiruchain/nibijs", "description": "The TypeScript SDK for the Nibiru blockchain.", - "version": "3.3.4", + "version": "4.1.0", "license": "MIT", "repository": { "type": "git", diff --git a/src/gql/query/index.ts b/src/gql/query/index.ts index 24c5c75a..541fbff4 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 "./marketing" export * from "./markPriceCandles" +export * from "./marketing" export * from "./oracle" export * from "./perp" export * from "./proxies" @@ -19,8 +19,8 @@ export * from "./spotLpPositions" export * from "./spotPoolCreated" export * from "./spotPoolExited" export * from "./spotPoolJoined" -export * from "./spotPools" export * from "./spotPoolSwap" +export * from "./spotPools" export * from "./stats" export * from "./unbondings" export * from "./users"