Skip to content

Commit

Permalink
Merge pull request #52 from bob-collective/feat/build
Browse files Browse the repository at this point in the history
feat: build sats-wagmi
  • Loading branch information
gregdhill authored Sep 2, 2024
2 parents e43eacd + fc5f638 commit 11ba13e
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .changeset/young-beers-rescue.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@gobob/sats-wagmi": patch
---

Enable build
3 changes: 2 additions & 1 deletion packages/sats-wagmi/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@
"lint": "eslint .",
"lint:fix": "eslint . --ext ts,tsx --fix",
"clean": "rimraf dist .turbo",
"typecheck": "tsc --noEmit"
"typecheck": "tsc --noEmit",
"build": "tsup src/index.ts --dts"
},
"peerDependencies": {
"react": ">=18",
Expand Down
2 changes: 1 addition & 1 deletion packages/sats-wagmi/src/hooks/useFeeEstimate.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { estimateTxFee } from '@gobob/bob-sdk';
import { UndefinedInitialDataOptions, useQuery } from '@tanstack/react-query';
import { INTERVAL } from 'src/utils';

import { INTERVAL } from '../utils';
import { useSatsWagmi } from '../provider';

import { useFeeRate } from './useFeeRate';
Expand Down
2 changes: 1 addition & 1 deletion packages/sats-wagmi/src/hooks/useFeeRate.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { EsploraClient } from '@gobob/bob-sdk';
import { UndefinedInitialDataOptions, useQuery } from '@tanstack/react-query';
import { INTERVAL } from 'src/utils';

import { INTERVAL } from '../utils';
import { useSatsWagmi } from '../provider';

// Confirmation target for fee estimation in Bitcoin blocks
Expand Down

0 comments on commit 11ba13e

Please sign in to comment.