f2401e6953
* Update method to create bond using cosmjs * Fix method get next bond id * Update method to refill bond * Update methods to withdraw and cancel bond * Add wallet and address fields to Account class * Rename bond amount constant --------- Co-authored-by: neeraj <neeraj.rtly@gmail.com>
61 lines
1.8 KiB
JSON
61 lines
1.8 KiB
JSON
{
|
|
"name": "@cerc-io/laconic-sdk",
|
|
"version": "0.1.15",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"repository": "git@github.com:cerc-io/laconic-sdk.git",
|
|
"author": "",
|
|
"license": "UNLICENSED",
|
|
"devDependencies": {
|
|
"@types/jest": "^27.4.1",
|
|
"@types/lodash": "^4.14.181",
|
|
"@types/semver": "^7.3.9",
|
|
"@types/tiny-secp256k1": "1.0.0",
|
|
"dotenv": "^16.0.0",
|
|
"google-protobuf": "^3.21.0",
|
|
"jest": "29.0.0",
|
|
"ts-jest": "^29.0.2",
|
|
"ts-proto": "1.121.6",
|
|
"typescript": "^4.6.2"
|
|
},
|
|
"dependencies": {
|
|
"@cosmjs/amino": "^0.28.1",
|
|
"@cosmjs/crypto": "^0.28.1",
|
|
"@cosmjs/encoding": "^0.28.1",
|
|
"@cosmjs/launchpad": "^0.27.1",
|
|
"@cosmjs/proto-signing": "^0.32.2",
|
|
"@cosmjs/stargate": "^0.32.2",
|
|
"@cosmjs/tendermint-rpc": "^0.32.2",
|
|
"@ipld/dag-cbor": "^7.0.1",
|
|
"@ipld/dag-json": "^8.0.9",
|
|
"@metamask/eth-sig-util": "^4.0.0",
|
|
"@tharsis/address-converter": "^0.1.7",
|
|
"@tharsis/eip712": "^0.2.1",
|
|
"@tharsis/proto": "^0.1.16",
|
|
"@tharsis/provider": "^0.2.4",
|
|
"@tharsis/transactions": "^0.2.2",
|
|
"axios": "^0.26.1",
|
|
"bip32": "3.0.1",
|
|
"bip39": "^3.0.4",
|
|
"canonical-json": "^0.0.4",
|
|
"ethers": "^5.6.2",
|
|
"evmosjs": "^0.2.5",
|
|
"graphql.js": "^0.6.8",
|
|
"js-sha256": "^0.9.0",
|
|
"js-yaml": "^3.14.1",
|
|
"jsonschema": "^1.4.0",
|
|
"lodash": "^4.17.21",
|
|
"multiformats": "^9.5.4",
|
|
"node-yaml": "^4.0.1",
|
|
"secp256k1": "^4.0.1",
|
|
"semver": "^7.3.5",
|
|
"tiny-secp256k1": "^1.1.6"
|
|
},
|
|
"scripts": {
|
|
"test": "jest --runInBand --verbose --testPathPattern=src",
|
|
"test:auctions": "TEST_AUCTIONS_ENABLED=1 jest --runInBand --verbose src/auction.test.ts",
|
|
"test:nameservice-expiry": "TEST_NAMESERVICE_EXPIRY=1 jest --runInBand --verbose src/nameservice-expiry.test.ts",
|
|
"build": "tsc"
|
|
}
|
|
}
|