Skip to content

Commit

Permalink
bump deps (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
xlc authored Dec 4, 2022
1 parent 3db7f76 commit cc78099
Show file tree
Hide file tree
Showing 3 changed files with 384 additions and 370 deletions.
32 changes: 16 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,39 +21,39 @@
"dev:acala": "ts-node-dev --transpile-only --inspect --notify=false src/index.ts -- dev --config=configs/acala.yml"
},
"dependencies": {
"@polkadot/api": "^9.5.2",
"@polkadot/rpc-provider": "^9.5.2",
"@polkadot/util": "^10.1.11",
"@polkadot/api": "^9.10.1",
"@polkadot/rpc-provider": "^9.10.1",
"@polkadot/util": "^10.2.1",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"pino": "^8.6.1",
"pino": "^8.7.0",
"reflect-metadata": "^0.1.13",
"sqlite3": "^5.1.2",
"typeorm": "^0.3.10",
"ws": "^8.9.0",
"yargs": "^17.6.0",
"typeorm": "^0.3.11",
"ws": "^8.11.0",
"yargs": "^17.6.2",
"zod": "^3.19.1"
},
"devDependencies": {
"@types/js-yaml": "^4",
"@types/lodash": "^4",
"@types/node": "^18.11.0",
"@types/ws": "^8",
"@types/yargs": "^17",
"@types/js-yaml": "^4.0.5",
"@types/lodash": "^4.14.191",
"@types/node": "^18.11.10",
"@types/ws": "^8.5.3",
"@types/yargs": "^17.0.15",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.28.0",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"husky": "^8.0.2",
"lint-staged": "^13.0.4",
"lint-staged": "^13.1.0",
"pino-pretty": "^9.1.1",
"prettier": "^2.8.0",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.4",
"vitest": "^0.24.3",
"typescript": "^4.9.3",
"vitest": "^0.25.3",
"wasm-pack": "^0.10.3"
},
"prettier": {
Expand Down
4 changes: 4 additions & 0 deletions src/genesis-provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,10 @@ export class GenesisProvider implements ProviderInterface {
return new GenesisProvider(genesisSchema.parse(file))
}

get isClonable(): boolean {
return true
}

clone = (): ProviderInterface => {
return new GenesisProvider(this.#genesis)
}
Expand Down
Loading

0 comments on commit cc78099

Please sign in to comment.