-
Notifications
You must be signed in to change notification settings - Fork 196
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: refactor ledger wallet strategy
- Loading branch information
1 parent
a16a7b2
commit 5a8e8bf
Showing
25 changed files
with
8,152 additions
and
149 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
{ | ||
"name": "@injectivelabs/wallet-ledger", | ||
"description": "Ledger wallet strategy for use with @injectivelabs/wallet-ts.", | ||
"version": "1.14.13", | ||
"sideEffects": false, | ||
"author": { | ||
"name": "InjectiveLabs", | ||
"email": "[email protected]" | ||
}, | ||
"license": "Apache-2.0", | ||
"types": "dist/cjs/index.d.ts", | ||
"main": "dist/cjs/index.js", | ||
"module": "dist/esm/index.js", | ||
"files": [ | ||
"dist" | ||
], | ||
"_moduleAliases": { | ||
"~wallet-ts": "dist" | ||
}, | ||
"scripts": { | ||
"postinstall": "link-module-alias", | ||
"build:cjs": "BUILD_MODE=cjs node ./../../../etc/replacements.js && tsc --build tsconfig.build.json", | ||
"build:esm": "BUILD_MODE=esm node ./../../../etc/replacements.js && tsc --build tsconfig.build.esm.json", | ||
"build": "yarn build:esm && yarn build:cjs && yarn build:post && link-module-alias", | ||
"build:watch": "tsc --build -w tsconfig.build.json && tsc -w --build tsconfig.build.esm.json && yarn build:post && link-module-alias", | ||
"build:post": "shx cp ../../../etc/stub/package.json.stub dist/cjs/package.json && shx cp ../../../etc/stub/package.esm.json.stub dist/esm/package.json", | ||
"clean": "tsc --build tsconfig.build.json --clean && tsc --build tsconfig.build.esm.json --clean && shx rm -rf coverage *.log junit.xml dist && jest --clearCache && shx mkdir -p dist", | ||
"test": "jest", | ||
"test:watch": "jest --watch", | ||
"test:ci": "jest --coverage --ci --reporters='jest-junit'", | ||
"coverage": "jest --coverage", | ||
"coverage:show": "live-server coverage", | ||
"dev": "ts-node -r tsconfig-paths/register src/index.ts", | ||
"start": "node dist/index.js" | ||
}, | ||
"dependencies": { | ||
"@ethereumjs/common": "^3.1.1", | ||
"@ethereumjs/tx": "^4.1.1", | ||
"@injectivelabs/exceptions": "^1.14.13", | ||
"@injectivelabs/networks": "^1.14.13", | ||
"@injectivelabs/sdk-ts": "^1.14.13", | ||
"@injectivelabs/ts-types": "^1.14.13", | ||
"@injectivelabs/utils": "^1.14.13", | ||
"@injectivelabs/wallet-ts": "^1.14.13", | ||
"@ledgerhq/hw-app-cosmos": "^6.29.5", | ||
"@ledgerhq/hw-app-eth": "6.35.6", | ||
"@ledgerhq/hw-transport": "6.30.4", | ||
"@ledgerhq/hw-transport-webhid": "6.28.4", | ||
"@ledgerhq/hw-transport-webusb": "6.28.4", | ||
"alchemy-sdk": "^2.6.3", | ||
"eip1193-provider": "^1.0.1", | ||
"eth-sig-util": "^3.0.1", | ||
"ethereumjs-util": "^7.1.0", | ||
"ethers": "^6.5.1", | ||
"hdkey": "^2.0.1", | ||
"link-module-alias": "^1.2.0", | ||
"long": "^5.2.1", | ||
"shx": "^0.3.3" | ||
}, | ||
"devDependencies": { | ||
"@types/eth-sig-util": "^2.1.1", | ||
"@types/ethereumjs-util": "^6.1.0", | ||
"@types/hdkey": "^2.0.1", | ||
"@types/ledgerhq__hw-transport-webusb": "^4.70.1" | ||
}, | ||
"gitHead": "35bd09035587be3fd170cc48b5c13f231e699a79", | ||
"typedoc": { | ||
"entryPoint": "./src/index.ts", | ||
"readmeFile": "./README.md", | ||
"displayName": "wallet-ledger API Documentation" | ||
}, | ||
"resolutions": { | ||
"**/libsodium": "npm:@bangjelkoski/noop", | ||
"**/libsodium-wrappers": "npm:@bangjelkoski/noop" | ||
} | ||
} |
Oops, something went wrong.