Skip to content

Commit

Permalink
feat(npm): update versions
Browse files Browse the repository at this point in the history
  • Loading branch information
githubotoro committed Dec 2, 2024
1 parent 0fd965b commit 812b156
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 16 deletions.
5 changes: 0 additions & 5 deletions .changeset/automated-patch-release.md

This file was deleted.

6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# royco

## 0.5.27

### Patch Changes

- 0fd965b: New SDK version @ 2024-12-02 22:41:59 UTC

## 0.5.26

### Patch Changes
Expand Down
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "royco",
"description": "SDK for building frontends on top of Royco Protocol",
"version": "0.5.26",
"version": "0.5.27",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
Expand All @@ -28,47 +28,47 @@
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./client": {
"types": "./dist/client/index.d.ts",
"import": "./dist/client/index.js",
"import": "./dist/client/index.mjs",
"require": "./dist/client/index.js"
},
"./constants": {
"types": "./dist/constants/index.d.ts",
"import": "./dist/constants/index.js",
"import": "./dist/constants/index.mjs",
"require": "./dist/constants/index.js"
},
"./hooks": {
"types": "./dist/hooks/index.d.ts",
"import": "./dist/hooks/index.js",
"import": "./dist/hooks/index.mjs",
"require": "./dist/hooks/index.js"
},
"./market": {
"types": "./dist/market/index.d.ts",
"import": "./dist/market/index.js",
"import": "./dist/market/index.mjs",
"require": "./dist/market/index.js"
},
"./provider": {
"types": "./dist/provider/index.d.ts",
"import": "./dist/provider/index.js",
"import": "./dist/provider/index.mjs",
"require": "./dist/provider/index.js"
},
"./queries": {
"types": "./dist/queries/index.d.ts",
"import": "./dist/queries/index.js",
"import": "./dist/queries/index.mjs",
"require": "./dist/queries/index.js"
},
"./types": {
"types": "./dist/types/index.d.ts",
"import": "./dist/types/index.js",
"import": "./dist/types/index.mjs",
"require": "./dist/types/index.js"
},
"./utils": {
"types": "./dist/utils/index.d.ts",
"import": "./dist/utils/index.js",
"import": "./dist/utils/index.mjs",
"require": "./dist/utils/index.js"
}
},
Expand Down
4 changes: 3 additions & 1 deletion sdk/hooks/use-enriched-royco-stats.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"use client";

import { useRoycoClient, type RoycoClient } from "@/sdk/client";
import { getEnrichedRoycoStatsQueryOptions } from "@/sdk/queries";
import { useQuery } from "@tanstack/react-query";
Expand All @@ -7,7 +9,7 @@ export const useEnrichedRoycoStats = ({
custom_token_data,
}: {
custom_token_data?: CustomTokenData;
} = {}) => {
} = {}) => {
const client: RoycoClient = useRoycoClient();

return useQuery({
Expand Down

0 comments on commit 812b156

Please sign in to comment.