-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add did:bnb Typescript client library
Provide client library @identity.com/did-bnb-client that conveniently exposes functions to interact with the on-chain EVM bases DIDRegistry contract. It comes with a thorough README and integration test that are exectuted in CI PR: #15 Signed-off-by: Martin Riedel <[email protected]> Reviewed-by: Robert Leonard <[email protected]>
- Loading branch information
Showing
29 changed files
with
1,731 additions
and
2,020 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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,26 +1,67 @@ | ||
{ | ||
"name": "did-bnb-ts-client", | ||
"version": "1.0.0", | ||
"main": "src/index.ts", | ||
"license": "MIT", | ||
"scripts": { | ||
"generate-contract-types": "typechain --target=ethers-v6 ./abi/DIDRegistry.json", | ||
"spawn-devnet": "tenderly devnet spawn-rpc --project project --template bnb-testnet", | ||
"integration-test": "jest" | ||
}, | ||
"dependencies": { | ||
"dotenv": "^16.3.1", | ||
"ethers": "^6.7.1" | ||
}, | ||
"devDependencies": { | ||
"@typechain/ethers-v6": "^0.5.0", | ||
"@types/jest": "^29.5.4", | ||
"@types/node": "^20.5.1", | ||
"jest": "^29.6.3", | ||
"tenderly": "^0.5.3", | ||
"ts-jest": "^29.1.1", | ||
"ts-node": "^10.9.1", | ||
"typechain": "^8.3.1", | ||
"typescript": "^5.1.6" | ||
"name": "@identity.com/did-bnb-client", | ||
"version": "1.0.0-beta.1", | ||
"main": "dist/src/index.js", | ||
"typings": "dist/src/index.d.ts", | ||
"license": "MIT", | ||
"author": "Martin Riedel <[email protected]>", | ||
"repository": "https://github.com/identity-com/did-bnb", | ||
"homepage": "https://github.com/identity-com/did-bnb", | ||
"files": [ | ||
"/dist", | ||
"/npm-shrinkwrap.json" | ||
], | ||
"scripts": { | ||
"postinstall": "$npm_execpath run generate-contract-types", | ||
"lint:fix": "prettier */*.js \"*/**/*{.js,.ts}\" -w", | ||
"lint": "prettier */*.js \"*/**/*{.js,.ts}\" --check", | ||
"clean": "shx rm -rf ./dist", | ||
"compile": "tsc", | ||
"build": "yarn clean && yarn compile", | ||
"prepack": "yarn build", | ||
"generate-contract-types": "typechain --target=ethers-v5 --out-dir ./src/contracts/typechain-types ./src/contracts/abi/DIDRegistry.json", | ||
"spawn-devnet": "tenderly devnet spawn-rpc --project project --template bnb-testnet", | ||
"test:integration": "ts-mocha test/integration/**/*.test.ts" | ||
}, | ||
"dependencies": { | ||
"@ethersproject/abi": "^5.7.0", | ||
"@ethersproject/abstract-signer": "^5.7.0", | ||
"@ethersproject/providers": "^5.7.2", | ||
"bignumber.js": "^9.1.2", | ||
"did-resolver": "^4.1.0", | ||
"dotenv": "^16.3.1", | ||
"ethers": "^5.7.2", | ||
"ramda": "^0.29.0" | ||
}, | ||
"devDependencies": { | ||
"@typechain/ethers-v5": "^11.1.1", | ||
"@types/chai": "^4.3.6", | ||
"@types/chai-as-promised": "^7.1.6", | ||
"@types/mocha": "^10.0.1", | ||
"@types/node": "^20.5.1", | ||
"@types/ramda": "^0.29.4", | ||
"chai": "^4.3.8", | ||
"chai-as-promised": "^7.1.1", | ||
"husky": "^8.0.3", | ||
"mocha": "^10.0.0", | ||
"nyc": "^15.1.0", | ||
"prettier": "^3.0.3", | ||
"shx": "^0.3.4", | ||
"tenderly": "^0.5.3", | ||
"ts-mocha": "^10.0.0", | ||
"ts-node": "^10.9.1", | ||
"typechain": "^8.3.1", | ||
"typescript": "^5.1.6" | ||
}, | ||
"husky": { | ||
"hooks": { | ||
"pre-commit": "yarn lint" | ||
} | ||
} | ||
}, | ||
"prettier": { | ||
"printWidth": 80, | ||
"semi": true, | ||
"singleQuote": true, | ||
"trailingComma": "es5" | ||
} | ||
} |
File renamed without changes.
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,2 @@ | ||
export * from './service'; | ||
export * from './utils'; |
Oops, something went wrong.