Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: haqq-network/haqq-wallet-provider-ledger-react-native
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.0.24
Choose a base ref
...
head repository: haqq-network/haqq-wallet-provider-ledger-react-native
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 6 commits
  • 4 files changed
  • 3 contributors

Commits on Nov 27, 2023

  1. Copy the full SHA
    1f4b204 View commit details

Commits on Jan 11, 2024

  1. refactor: typed data params (#13)

    Co-authored-by: iGroza <xneonxneon1@gmail.com>
    iGroza and iGroza authored Jan 11, 2024
    Copy the full SHA
    4dc724f View commit details
  2. fix: prettier (#14)

    Co-authored-by: iGroza <xneonxneon1@gmail.com>
    iGroza and iGroza authored Jan 11, 2024
    Copy the full SHA
    a22bd8e View commit details

Commits on Feb 14, 2024

  1. feat: rxjs support (#15)

    * feat: rxjs support
    
    * chore: update deps
    
    ---------
    
    Co-authored-by: iGroza <xneonxneon1@gmail.com>
    iGroza and iGroza authored Feb 14, 2024
    Copy the full SHA
    1bac486 View commit details

Commits on Feb 20, 2024

  1. fix: typed data signature version (#16)

    Co-authored-by: iGroza <xneonxneon1@gmail.com>
    iGroza and iGroza authored Feb 20, 2024
    Copy the full SHA
    a24344b View commit details

Commits on Mar 18, 2024

  1. fix: error handling (#17)

    * fix: typed data signature version
    
    * fix: error handling
    
    ---------
    
    Co-authored-by: iGroza <xneonxneon1@gmail.com>
    iGroza and iGroza authored Mar 18, 2024
    Copy the full SHA
    10a8131 View commit details
Showing with 1,367 additions and 692 deletions.
  1. +22 −21 package.json
  2. +374 −0 src/device-access.ts
  3. +241 −229 src/provider.ts
  4. +730 −442 yarn.lock
43 changes: 22 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@haqq/provider-ledger-react-native",
"version": "0.0.23",
"version": "0.0.28",
"description": "Provider for react-native ledger",
"main": "dist/index.js",
"types": "dist/index.d.ts",
@@ -19,13 +19,13 @@
"typedoc": "typedoc"
},
"dependencies": {
"@ethersproject/abstract-provider": "5.7.0",
"@ledgerhq/hw-app-eth": "6.33.6",
"@ledgerhq/hw-transport": "6.29.0",
"@ethersproject/abstract-provider": "^5.7.0",
"@ledgerhq/hw-app-eth": "6.35.4",
"@ledgerhq/hw-transport": "6.30.3",
"@ledgerhq/react-native-hw-transport-ble": "6.30.0",
"ethers": "5.7.2",
"events": "3.3.0",
"rxjs": "7.8.1"
"ethers": "^5.7.2",
"events": "^3.3.0",
"rxjs": "^7.8.0"
},
"peerDependencies": {
"@haqq/provider-base": "*",
@@ -34,20 +34,21 @@
"react-native-ble-plx": "*"
},
"devDependencies": {
"@haqq/provider-base": "0.0.18",
"@types/jest": "29.4.0",
"@types/node": "18.14.1",
"@types/react-native": "0.71.3",
"jest": "29.4.3",
"prettier": "2.8.4",
"@haqq/provider-base": "0.0.23",
"@ledgerhq/types-devices": "^6.23.0",
"@types/jest": "^29.4.0",
"@types/node": "^18.14.1",
"@types/react-native": "^0.71.3",
"jest": "^29.4.3",
"prettier": "^2.8.4",
"react": "18.2.0",
"react-native": "0.71.3",
"react-native-ble-plx": "2.0.3",
"ts-jest": "29.0.5",
"tslint": "6.1.3",
"tslint-config-prettier": "1.18.0",
"typedoc": "0.23.25",
"typedoc-plugin-markdown": "3.14.0",
"typescript": "4.9.5"
"react-native-ble-plx": "^2.0.3",
"ts-jest": "^29.0.5",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.23.25",
"typedoc-plugin-markdown": "^3.14.0",
"typescript": "^4.9.5"
}
}
}
Loading