Skip to content

Commit

Permalink
Merge pull request #17 from valorem-labs-inc/v0.0.8
Browse files Browse the repository at this point in the history
v0.0.8
  • Loading branch information
nickadamson authored Jan 15, 2024
2 parents e3a9c9a + 33753eb commit d94bae4
Show file tree
Hide file tree
Showing 12 changed files with 133 additions and 148 deletions.
5 changes: 0 additions & 5 deletions .changeset/fluffy-roses-remain.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/shaggy-lies-poke.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/silly-bats-clap.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/smooth-rings-breathe.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/sweet-snakes-clap.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/twelve-fans-marry.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/twelve-seals-cross.md

This file was deleted.

13 changes: 7 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,13 @@ jobs:
- name: Publish to Github Packages
run: pnpm ci:release

- name: Setup .npmrc file to publish to npm
uses: actions/setup-node@v4
with:
node-version: 18
registry-url: 'https://registry.npmjs.org'
scope: '@valorem-labs-inc'
- name: Unset GHP scope, set NPM scope
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
pnpm config delete @valorem-labs-inc:registry --location project
pnpm config set @valorem-labs-inc:registry 'https://registry.npmjs.org' --location project
pnpm config set //registry.npmjs.org/:_authToken '${NODE_AUTH_TOKEN}' --location project
- name: Publish to npm
env:
Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @valorem-labs-inc/react-hooks

## 0.0.8

### Patch Changes

- 8109a48: fix CI workflow for NPM publishing
- 016a055: drop parcel for tsup...
- 3ebc40d: add arbitrum sepolia deployments; drop arbitrum goerli
- 6580e92: add `useIsGeofenced` hook
- 717e435: fix SIWE `Unknown Error` bug
- 31bdd4b: use `window.location.host` in creation of SIWE message
- 19ecb4a: pin `trade-interfaces` to v1.4.0
- e3015bb: update `onResponse` props in useRFQ/useSoftQuote

## 0.0.7

### Patch Changes
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ function Component() {
The package offers several hooks for various aspects of options trading:

- useRFQ: Request for quote from market makers.
- useSoftQuote: Get a soft quote from a market maker.
- useSeaportFulfillOrder: Fulfill an order via Seaport.
Each hook is designed to be intuitive and easy to integrate, abstracting away
the complexities of the blockchain interactions.
Expand Down
11 changes: 6 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@valorem-labs-inc/react-hooks",
"version": "0.0.7",
"version": "0.0.8",
"repository": {
"type": "git",
"url": "https://github.com/valorem-labs-inc/react-hooks.git"
Expand Down Expand Up @@ -58,8 +58,8 @@
"@tanstack/query-core": "^4.36.1",
"@testing-library/react": "^14.1.2",
"@testing-library/react-hooks": "^8.0.1",
"@types/node": "^20.10.8",
"@types/react": "^18.2.47",
"@types/node": "^20.11.2",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@vercel/style-guide": "^5.1.0",
"@vitest/coverage-v8": "^1.1.3",
Expand All @@ -72,7 +72,7 @@
"happy-dom": "^12.10.3",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^23.0.1",
"prettier": "^3.1.1",
"prettier": "^3.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"siwe": "^2.1.4",
Expand All @@ -88,7 +88,7 @@
"@connectrpc/connect-query": "0.5.3",
"@connectrpc/connect-web": "^1.2.0",
"@tanstack/react-query": "^4.36.1",
"@valorem-labs-inc/sdk": "^0.0.11-alpha.8",
"@valorem-labs-inc/sdk": "^0.0.11",
"@wagmi/core": "^1.4.13",
"abitype": "0.8.7",
"connectkit": "^1.5.3",
Expand All @@ -111,6 +111,7 @@
},
"pnpm": {
"overrides": {
"@types/react": "^18.2.48",
"@wagmi/core": "^1.4.13",
"viem": "^1.21.4"
}
Expand Down
Loading

0 comments on commit d94bae4

Please sign in to comment.