Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
75db95d
removed updater
May 10, 2025
1cec628
removed updater
May 11, 2025
8977f7a
added disable/re-enable transactions
May 11, 2025
707dc92
minimized tx data
May 11, 2025
1c263cf
fixed addWhitelist bug
May 11, 2025
ef402fe
unpinned some deps and moved brittle to devDeps
May 14, 2025
c63bce9
unpinned some deps and moved brittle to devDeps
May 17, 2025
bb7c00e
unpinned some deps and moved brittle to devDeps
May 18, 2025
60290c4
fixed wakeup stream
May 18, 2025
decc617
fixed wakeup stream
May 19, 2025
5b785a9
fixed wakeup stream
May 19, 2025
09fbd9d
added backoff
May 19, 2025
fb284f6
added backoff
May 19, 2025
f29cc59
force signing fix
May 20, 2025
16b0682
force signing fix
May 20, 2025
b885f6e
force signing fix
May 21, 2025
f1a387f
force signing fix
May 22, 2025
1cddfa8
fixed wrong check on message_handler existence
May 22, 2025
35a4340
unpinned readline and fs
May 25, 2025
c9999f2
unpinned readline and fs
May 25, 2025
4a4d4f4
extended address validator
May 28, 2025
b1ed1f5
extended address validator
May 30, 2025
0f2ca25
extended address validator
May 31, 2025
9fee686
extended address validator
Jun 21, 2025
3812052
extended address validator
Jun 21, 2025
daa5f2d
extended address validator
Jun 30, 2025
5e1471f
version bump
Nov 21, 2025
73f259a
Bump msb
leonardotc Jan 14, 2026
6da3b88
Quick fix
leonardotc Jan 16, 2026
b0f329f
Change contract and fix rpc
leonardotc Jan 16, 2026
2852c86
Bump msb
leonardotc Jan 19, 2026
dcf9233
Remove internal msb dep
leonardotc Jan 19, 2026
b47ef66
Msb fixes
leonardotc Jan 19, 2026
db7fe41
Multiple fixes
leonardotc Jan 20, 2026
9b8025b
Expose funding address
leonardotc Jan 20, 2026
8b943ae
fix: pear env
jusufsuljic Jan 20, 2026
830283f
fix: apply tx payload guard test
jusufsuljic Jan 20, 2026
39837f9
Bump version
leonardotc Jan 20, 2026
0f0131e
Update workflow
leonardotc Jan 21, 2026
f58b266
Change package.json url
leonardotc Jan 21, 2026
16b0bc5
Change ci scope package
leonardotc Jan 21, 2026
0928fcf
Remove dead file
leonardotc Jan 21, 2026
6f054f2
Remove outdated test
leonardotc Jan 21, 2026
d35ba96
Revert blake3
leonardotc Jan 21, 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
39 changes: 39 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Build and Test
on:
push:
branches:
- "**"
tags:
- "v*"
pull_request:
branches:
- "**"
permissions:
id-token: write # Required for OIDC
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: 'npm'
- run: npm ci
- run: npm run test:all
release:
needs: test
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '24'
registry-url: 'https://registry.npmjs.org/'
cache: 'npm'
- run: npm ci
- run: npm publish --public
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
/node_modules/
/contract/stores/
/contract/stores_msb/
/package-lock.json
.vscode/
Loading