Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump dependencies, fix tests, update CI #249

Merged
merged 6 commits into from
Jun 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
unitTest:
docker:
- image: web3f/node-dind:v3
- image: parity/polkadot:v1.1.0
- image: parity/polkadot:latest
name: polkadot
command: --chain=kusama-dev --rpc-port 11000 --alice --rpc-external --rpc-methods=Unsafe --rpc-cors=all
command: --dev --rpc-port 11000 --rpc-external
steps:
- checkout
- run: yarn
Expand Down Expand Up @@ -97,13 +97,13 @@ workflows:
version: 2
test_and_deploy:
jobs:
# - unitTest:
# filters:
# tags:
# only: /.*/
# requires:
# - yarnLint
# - helmLint
- unitTest:
filters:
tags:
only: /.*/
requires:
- yarnLint
- helmLint
- helmLint:
filters:
tags:
Expand Down
4 changes: 2 additions & 2 deletions charts/polkadot-watcher-transaction/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
description: Polkadot Watcher
name: polkadot-watcher-transaction
version: v1.3.5
appVersion: v1.3.5
version: v1.3.6
appVersion: v1.3.6
apiVersion: v2
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-transaction",
"version": "1.3.5",
"version": "1.3.6",
"description": "Monitor events on Polkadot networks, specifically transactions",
"repository": "[email protected]:w3f/polkadot-watcher-csv-exporter.git",
"author": "W3F Infrastructure Team <[email protected]>",
Expand All @@ -20,7 +20,7 @@
"start": "node ./dist/index.js start"
},
"dependencies": {
"@polkadot/api": "^11.2.1",
"@polkadot/api": "^12.0.1",
"@w3f/config": "^0.1.1",
"@w3f/logger": "^0.4.2",
"commander": "^4.0.0",
Expand All @@ -41,8 +41,8 @@
"@types/tmp": "0.2.3",
"@typescript-eslint/eslint-plugin": "2.34.0",
"@typescript-eslint/parser": "2.34.0",
"@w3f/polkadot-api-client": "^1.2.26",
"@w3f/test-utils": "^1.2.30",
"@w3f/polkadot-api-client": "^1.3.0",
"@w3f/test-utils": "^1.4.0",
"chai": "4.3.6",
"eslint": "7.32.0",
"fs-extra": "9.1.0",
Expand Down
8 changes: 4 additions & 4 deletions test/subscriber.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ const cfg = {
},
subscriptions: [{
name: 'Alice',
address: 'HNZata7iMYWmk5RvZRTiAsSDhV8366zq2YGb3tLH5Upf74F'
address: '5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY'
},
{
name: 'Bob',
address: 'FoQJpPyadYccjavVdTWxpxU7rUEaYhfLCPwXgkfD6Zat9QP'
address: '5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty'
}]
}
};
Expand All @@ -57,14 +57,14 @@ const cfg2 = {
...cfg.subscriber,
subscriptions: [{
name: 'Alice',
address: 'HNZata7iMYWmk5RvZRTiAsSDhV8366zq2YGb3tLH5Upf74F',
address: '5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY',
transferEventScanner: {
sent: false,
}
},
{
name: 'Bob',
address: 'FoQJpPyadYccjavVdTWxpxU7rUEaYhfLCPwXgkfD6Zat9QP',
address: '5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty',
transferEventScanner: {
received: false,
}
Expand Down
Loading
Loading