668325a4ce
* Added separate gateway active set size * Grabbing contract state * Defined PartialOrd on MixnodeBond and GatewayBond * Some initial stub for active set * Unit tests for mixnode and gateway bond partialord implementation * Obtaining active sets * Active nodes routes * Additional methods on validator client * Added state migration * Feature locking unused import * Fixed State test fixture * Included block height for partial_ord * Missing post-merge imports * api on the client for active nodes * Native/socks5/wasm clients using active nodes * Rewarding only active nodes * Updated validator client StateParams definition * Gateway active set size * Contract migration update * Cargo fmt * Updated TauriStateParams * [ci skip] Generate TS types Co-authored-by: jstuczyn <jstuczyn@users.noreply.github.com>
44 lines
1.3 KiB
JSON
44 lines
1.3 KiB
JSON
{
|
|
"name": "@nymproject/nym-validator-client",
|
|
"version": "0.18.0",
|
|
"description": "A TypeScript client for interacting with smart contracts in Nym validators",
|
|
"repository": "https://github.com/nymtech/nym",
|
|
"main": "./dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"test": "ts-mocha tests/**/*.test.ts",
|
|
"coverage": "nyc npm test",
|
|
"lint": "eslint \"**/*.ts\"",
|
|
"docs": "typedoc --out docs src/index.ts"
|
|
},
|
|
"keywords": [],
|
|
"author": "Nym Technologies SA (https://nymtech.net)",
|
|
"contributors": [
|
|
"Dave Hrycyszyn (https://constructiveproof.com/)",
|
|
"Jędrzej Stuczynski"
|
|
],
|
|
"license": "Apache-2.0",
|
|
"devDependencies": {
|
|
"@types/chai": "^4.2.15",
|
|
"@types/expect": "^24.3.0",
|
|
"@types/mocha": "^8.2.1",
|
|
"@typescript-eslint/eslint-plugin": "^4.14.0",
|
|
"@typescript-eslint/parser": "^4.14.0",
|
|
"chai": "^4.2.0",
|
|
"eslint": "^7.18.0",
|
|
"mocha": "^8.2.1",
|
|
"moq.ts": "^7.2.0",
|
|
"nyc": "^15.1.0",
|
|
"ts-mocha": "^8.0.0",
|
|
"typedoc": "^0.20.27",
|
|
"typescript": "^4.1.3"
|
|
},
|
|
"dependencies": {
|
|
"axios": "^0.21.1",
|
|
"@cosmjs/cosmwasm-stargate": "^0.25.5",
|
|
"@cosmjs/stargate": "^0.25.5",
|
|
"@cosmjs/math": "^0.25.5",
|
|
"@cosmjs/proto-signing": "^0.25.5"
|
|
}
|
|
} |