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

Change Paseo RPC to wss://sys.dotters.network/paseo #418

Merged
merged 5 commits into from
Jun 4, 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
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ variables:
KUBE_NAMESPACE: "faucetbots"
CI_REGISTRY: "docker.io/paritytech"
GIT_STRATEGY: fetch
CI_IMAGE: node:18.16-alpine
CI_IMAGE: node:20.14-alpine
# BUILDAH_IMAGE is defined in group variables
BUILDAH_COMMAND: "buildah --storage-driver overlay2"
ARGOCD_IMAGE: argoproj/argocd:v2.5.5
Expand Down
5 changes: 0 additions & 5 deletions CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,3 @@
# - The latest matching rule, if multiple, takes precedence.

* @paritytech/opstooling

# CI
/.github/ @paritytech/ci
/.gitlab-ci.yml @paritytech/ci
/*Dockerfile @paritytech/ci
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/library/node:20.11.1-alpine
FROM docker.io/library/node:20.14-alpine

RUN apk add --no-cache python3 make g++

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

## Development

#### Setup dependencies and git hooks
#### Setup dependencies, git hooks and generate papi

```bash
yarn install
Expand Down
1 change: 0 additions & 1 deletion helm/values-parity-testnet-paseo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ substrate-faucet:
SMF_CONFIG_MATRIX_ACCESS_TOKEN: ref+vault://kv/argo-cd/substrate-faucet/devops-parity-testnet#PASEO_MATRIX_ACCESS_TOKEN
config:
SMF_CONFIG_NETWORK: 'paseo'
SMF_CONFIG_RPC_ENDPOINT: "wss://sys.dotters.network/paseo"
SMF_CONFIG_MATRIX_SERVER: 'https://matrix.org'
SMF_CONFIG_MATRIX_BOT_USER_ID: '@paseo-faucet:matrix.org'
SMF_CONFIG_FAUCET_IGNORE_LIST: ''
Expand Down
1 change: 0 additions & 1 deletion helm/values-parity-testnet-westend.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ substrate-faucet:
SMF_CONFIG_MATRIX_ACCESS_TOKEN: ref+vault://kv/argo-cd/substrate-faucet/devops-parity-testnet#WESTEND_MATRIX_ACCESS_TOKEN
config:
SMF_CONFIG_NETWORK: 'westend'
SMF_CONFIG_RPC_ENDPOINT: "wss://westend-rpc.polkadot.io/"
SMF_CONFIG_MATRIX_SERVER: 'https://matrix.org'
SMF_CONFIG_MATRIX_BOT_USER_ID: '@westend-faucet:matrix.org'
SMF_CONFIG_FAUCET_IGNORE_LIST: ''
Expand Down
12 changes: 8 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,23 +74,27 @@
"@eng-automation/testing": "^1.3.0",
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.13",
"@types/jest": "^29.4.0",
"@types/jest": "^29.5.12",
"@types/node": "^18.16",
"@types/request": "^2.48.8",
"@types/supertest": "^2.0.12",
"eslint-plugin-security": "^1.5.0",
"jest": "^29.4.2",
"jest": "^29.7.0",
"joi": "^17.6.4",
"lint-staged": "^12.3.8",
"nodemon": "^2.0.19",
"rxjs": "^7.8.1",
"simple-git-hooks": "^2.7.0",
"supertest": "^6.3.3",
"testcontainers": "v10.8.1",
"ts-jest": "^29.0.5",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.1",
"ts-patch": "^3.1.2",
"ts-patch": "^3.2.0",
"typescript": "^5.3.2",
"typescript-transform-paths": "^3.4.7"
},
"engines": {
"node": ">=20.0.0",
"yarn": ">=1.22.22"
}
}
2 changes: 1 addition & 1 deletion polkadot-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"metadata": "src/papi/chains/data/versi.scale"
},
"paseo": {
"wsUrl": "wss://paseo.rpc.amforc.com/",
"wsUrl": "wss://sys.dotters.network/paseo",
"metadata": "src/papi/chains/data/paseo.scale"
}
}
2 changes: 1 addition & 1 deletion src/papi/chains/paseo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const networkData: NetworkData = {
dripAmount: "100",
explorer: null,
networkName: "Paseo",
rpcEndpoint: "wss://paseo.rpc.amforc.com/",
rpcEndpoint: "wss://sys.dotters.network/paseo",
matrixWhitelistPatterns: [
/^@erin:parity\.io$/,
/^@mak:parity\.io$/,
Expand Down
450 changes: 232 additions & 218 deletions yarn.lock

Large diffs are not rendered by default.

Loading