Skip to content

Commit

Permalink
Merge pull request #101 from w3f/bump-deps
Browse files Browse the repository at this point in the history
deps upgrade, fixed breaking changes
  • Loading branch information
ironoa authored Jan 21, 2022
2 parents 3f7a4b1 + 17bab7f commit 3a7455b
Show file tree
Hide file tree
Showing 6 changed files with 294 additions and 192 deletions.
2 changes: 1 addition & 1 deletion charts/polkadot-watcher/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
description: Polkadot Watcher
name: polkadot-watcher
version: v3.2.0
version: v3.2.1
apiVersion: v2
2 changes: 1 addition & 1 deletion charts/polkadot-watcher/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ port: 3000

image:
repo: web3f/polkadot-watcher
tag: v3.2.0
tag: v3.2.1

config:
endpoint: "wss://kusama-rpc.polkadot.io"
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "polkadot-watcher",
"version": "3.2.0",
"version": "3.2.1",
"description": "Monitor events on Polkadot networks",
"repository": "git@github.com:w3f/polkadot-watcher.git",
"author": "W3F Infrastructure Team <devops@web3.foundation>",
Expand All @@ -20,7 +20,7 @@
"start": "node ./dist/index.js start"
},
"dependencies": {
"@polkadot/api": "^6.12.1",
"@polkadot/api": "^7.4.1",
"@w3f/config": "^0.1.1",
"@w3f/logger": "^0.4.2",
"commander": "^4.0.0",
Expand All @@ -39,8 +39,8 @@
"@types/tmp": "^0.2.3",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"@w3f/polkadot-api-client": "^1.2.10",
"@w3f/test-utils": "^1.2.13",
"@w3f/polkadot-api-client": "^1.2.11",
"@w3f/test-utils": "^1.2.14",
"chai": "^4.2.0",
"eslint": "7.32.0",
"fs-extra": "^9.0.0",
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import process from 'process';
import program from 'commander';

import { startAction } from './actions/start';
import '@polkadot/api-augment'; //https://github.com/polkadot-js/api/issues/4450


program
Expand Down
1 change: 1 addition & 0 deletions test/subscriber.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import '@polkadot/api-augment'; //https://github.com/polkadot-js/api/issues/4450
import { TestPolkadotRPC } from '@w3f/test-utils';
import { createLogger } from '@w3f/logger';
import { should } from 'chai';
Expand Down
Loading

0 comments on commit 3a7455b

Please sign in to comment.