Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
b3f2e48
refactor: remove pear-wrk-wdk dependency and pass bundleConfig directly
gatteo Jan 6, 2026
727800e
docs: update README with bundle configuration instructions
gatteo Jan 6, 2026
412e770
docs: fix bundler documentation link to GitHub repo
gatteo Jan 6, 2026
9e92416
fix: use ReturnType<typeof setTimeout> for cross-platform compatibility
gatteo Jan 13, 2026
f470ed1
fix: resolve SecureStorage race condition by setting it synchronously
gatteo Jan 13, 2026
2a16b5c
chore: update dep
nulllpc Jan 14, 2026
331f215
Merge remote-tracking branch 'origin/main' into nampc/dev
nulllpc Jan 14, 2026
d092be1
Merge branch 'refactor/remove-pear-wrk-wdk-dependency' into nampc/dev
nulllpc Jan 14, 2026
03337c4
feat: Update pear-wrk-wdk dependency
nulllpc Jan 20, 2026
6b91084
feat: refactor token config
nulllpc Jan 20, 2026
a459b3a
chore: rename asset
nulllpc Jan 21, 2026
cc46749
feat: fully compatible with dynamic bundle and updated token configs
nulllpc Jan 21, 2026
43afce7
feat: refactor test files and remove redundant interfaces
nulllpc Jan 21, 2026
ef8a803
Merge remote-tracking branch 'origin/main' into nampc/dev
nulllpc Jan 21, 2026
c402152
feat: Enhance account method typing and wallet generation
nulllpc Jan 21, 2026
3f49af6
fix: error initiating worklet
nulllpc Jan 22, 2026
a84e8cb
wip: fix bug loading bundle
nulllpc Jan 22, 2026
7aafd44
wip: worklet cannot load bundle
nulllpc Jan 22, 2026
980bd0e
feat: update react-native-bare-kit
nulllpc Jan 22, 2026
2e9a449
fix: HRPC import
nulllpc Jan 23, 2026
78e4ce4
fix: temporary fix to pass networkConfigs
nulllpc Jan 23, 2026
0f184a6
fix: temp fix to bypass config
nulllpc Jan 23, 2026
fce62f4
feat: allow passing protocol configs
nulllpc Jan 23, 2026
c1efb4b
fix: mapping network keys in useWallet
nulllpc Jan 23, 2026
87275f9
fix: error parsing wdk config
nulllpc Jan 23, 2026
9e5ea7a
feat: update readme
nulllpc Jan 26, 2026
9f22fc4
multi-argument methods
itsdeka Jan 28, 2026
63ecad7
Merge pull request #1 from itsdeka/array
nulllpc Jan 31, 2026
d1158cf
fix: sanitiseErrorMessage in logger
jonathunne Feb 3, 2026
90ddb88
feat: refactor useWalletManager hook
nulllpc Feb 3, 2026
bfdef7c
chore: cleanup exports and unused useState
nulllpc Feb 6, 2026
7df9c95
feat: update creating temporary wallet
nulllpc Feb 6, 2026
5fa63f2
feat: add bitcoin address validation
nulllpc Feb 7, 2026
d7aed1a
feat: remove old useWalletManager
nulllpc Feb 8, 2026
ad45e4a
feat: update README
nulllpc Feb 8, 2026
6d28f42
fix: migrate broken tests
nulllpc Feb 8, 2026
e87e97c
feat: fix linting issues
nulllpc Feb 8, 2026
56201aa
fix: cleanup
jonathunne Feb 8, 2026
13a1254
fix: add null check
jonathunne Feb 8, 2026
0684784
feat: publish workflow, prepare for publish
jonathunne Feb 8, 2026
544ca28
chore: update ref to pear-wrk-wdk
jonathunne Feb 8, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 48 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: publish

on:
release:
types: [published]

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set up Node 22.19.0
uses: actions/setup-node@v4
with:
node-version: '22.19.0'
cache: 'npm'
registry-url: 'https://registry.npmjs.org'

- name: Install dependencies
run: npm clean-install
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

publish:
needs: test
runs-on: ubuntu-latest
environment: npm-publish

steps:
- uses: actions/checkout@v3

- name: Set up Node 22.19.0
uses: actions/setup-node@v4
with:
node-version: '22.19.0'
cache: 'npm'
registry-url: 'https://registry.npmjs.org'

- name: Install dependencies
run: npm clean-install
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: Publish to npm
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,5 @@ yarn-error.log*
.env
.env.local

# Docs
docs/
Loading
Loading