Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: implement bigint support #641

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
timeout-minutes: 40 # default is 360
strategy:
matrix:
node-version: [20.x]
node-version: [22.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v18
v22
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Hathor Wallet Mobile

See the instructions to run on (Windows)[./WINDOWS.md].
See the instructions to run on [Windows](./WINDOWS.md).

## Install

Expand Down
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
];
packages = with pkgs; [
nixpkgs-fmt
nodejs_20
nodejs_20 // TODO?
ruby
gnumake
gettext
Expand Down
40 changes: 31 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "HathorMobile",
"version": "0.30.1",
"engines": {
"node": ">=18.0.0",
"node": ">=22.0.0",
"npm": ">=9.0.0"
},
"private": true,
Expand All @@ -25,7 +25,7 @@
"@fortawesome/react-native-fontawesome": "0.2.7",
"@hathor/hathor-rpc-handler": "0.0.3-experimental-alpha",
"@hathor/unleash-client": "0.1.0",
"@hathor/wallet-lib": "1.10.0",
"@hathor/wallet-lib": "2.0.1",
"@json-rpc-tools/utils": "1.7.6",
"@lavamoat/preinstall-always-fail": "2.1.0",
"@notifee/react-native": "5.7.0",
Expand Down
Loading