Prathamesh Musale
03422548a4
Part of [Service provider auctions](https://www.notion.so/Service-provider-auctions-a7b63697d818479493ec145ea6ea3c1c) Examples: ```bash # vickrey auction laconic registry auction create --kind vickrey --commits-duration 60 --reveals-duration 60 --commit-fee 1000 --reveal-fee 1000 --minimum-bid 1000000 ``` ```bash # provider auction laconic registry auction create --kind provider --commits-duration 60 --reveals-duration 60 --commit-fee 1000 --reveal-fee 1000 --max-price 3000000 --num-providers 5 # Release provider auction funds laconic registry auction release-funds --auction-id <auction-id> ``` Co-authored-by: IshaVenikar <ishavenikar7@gmail.com> Reviewed-on: cerc-io/laconic-registry-cli#83 Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com> Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
51 lines
1.4 KiB
JSON
51 lines
1.4 KiB
JSON
{
|
|
"name": "@cerc-io/laconic-registry-cli",
|
|
"version": "0.2.9",
|
|
"main": "index.js",
|
|
"repository": "git@github.com:cerc-io/laconic-registry-cli.git",
|
|
"author": "",
|
|
"license": "UNLICENSED",
|
|
"devDependencies": {
|
|
"@types/fs-extra": "^9.0.13",
|
|
"@types/jest": "^27.4.1",
|
|
"@types/js-yaml": "^4.0.5",
|
|
"@types/lodash": "^4.14.182",
|
|
"@types/node": "^17.0.25",
|
|
"@types/yargs": "^17.0.10",
|
|
"@typescript-eslint/eslint-plugin": "^5.47.1",
|
|
"@typescript-eslint/parser": "^5.47.1",
|
|
"dotenv": "^16.3.2",
|
|
"eslint": "^8.35.0",
|
|
"eslint-config-semistandard": "^15.0.1",
|
|
"eslint-config-standard": "^16.0.3",
|
|
"eslint-plugin-import": "^2.27.5",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"eslint-plugin-promise": "^5.1.0",
|
|
"eslint-plugin-standard": "^5.0.0",
|
|
"husky": "^9.0.2",
|
|
"jest": "29.0.0",
|
|
"ts-jest": "^29.0.2",
|
|
"ts-node": "^10.2.1",
|
|
"typescript": "^4.6.3"
|
|
},
|
|
"dependencies": {
|
|
"@cerc-io/registry-sdk": "^0.2.10",
|
|
"@cosmjs/stargate": "^0.32.2",
|
|
"fs-extra": "^10.1.0",
|
|
"js-yaml": "^3.14.1",
|
|
"lodash": "^4.17.21",
|
|
"lodash-clean": "^2.2.3",
|
|
"yargs": "^17.4.1"
|
|
},
|
|
"scripts": {
|
|
"test": "jest --runInBand --verbose test/cli.test.ts",
|
|
"lint": "eslint .",
|
|
"clean": "rm -rf ./dist",
|
|
"build": "tsc",
|
|
"prepare": "husky"
|
|
},
|
|
"bin": {
|
|
"laconic": "bin/laconic"
|
|
}
|
|
}
|