Skip to content

Commit

Permalink
update main
Browse files Browse the repository at this point in the history
  • Loading branch information
mmaurello committed Jan 25, 2024
2 parents 133bbfc + a5f3557 commit 62722bd
Show file tree
Hide file tree
Showing 33 changed files with 692 additions and 482 deletions.
2 changes: 1 addition & 1 deletion .changeset/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
"changelog": [
"@changesets/changelog-github",
{ "repo": "PureStake/xcm-sdk" }
{ "repo": "moonbeam-foundation/xcm-sdk" }
],
"commit": false,
"fixed": [],
Expand Down
2 changes: 1 addition & 1 deletion .github/pull-request-template.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Please explain the changes this PR addresses here.

### Checklist

- [ ] If this requires a documentation change, I have created a PR in [moonbeam-docs](https://github.com/PureStake/moonbeam-docs) repository.
- [ ] If this requires a documentation change, I have created a PR in [moonbeam-docs](https://github.com/moonbeam-foundation/moonbeam-docs) repository.
- [ ] If this requires it, I have updated the Readme
- [ ] If necessary, I have updated the examples
- [ ] I have verified if I need to create/update unit tests
Expand Down
33 changes: 33 additions & 0 deletions .github/workflows/xcm-wss-endpoints-monitor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: XCM WS endpoints monitor

on:
workflow_dispatch:
schedule:
# Runs every 30 minutes
- cron: '*/30 * * * *'

jobs:
run_script:
runs-on: ubuntu-latest

steps:
- name: 🤘 checkout
uses: actions/checkout@v3

- name: ⚙️ Setup Node.js environment
uses: actions/[email protected]
with:
node-version: 18.x
cache: 'npm'

- name: Update npm
run: npm i -g npm@9

- name: ⬇️ install
run: npm ci --ignore-scripts

- name: 🛠️ Build
run: npm run build

- name: 💻 Run script
run: npx bun ./scripts/check-websockets.ts --slack-wh=${{ secrets.SLACK_WEBHOOK_URL }}
6 changes: 3 additions & 3 deletions examples/sdk-simple/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
"author": "",
"license": "MIT",
"dependencies": {
"@moonbeam-network/xcm-config": "1.3.18",
"@moonbeam-network/xcm-sdk": "1.4.14",
"@moonbeam-network/xcm-utils": "1.0.3"
"@moonbeam-network/xcm-config": "1.3.24",
"@moonbeam-network/xcm-sdk": "1.4.20",
"@moonbeam-network/xcm-utils": "1.0.4"
},
"devDependencies": {
"bun": "^1.0.21"
Expand Down
118 changes: 95 additions & 23 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "xcm-sdk",
"author": "PureStake",
"author": "moonbeam-foundation",
"license": "MIT",
"private": true,
"homepage": "https://docs.moonbeam.network/builders/xcm/xcm-sdk/xcm-sdk/",
"bugs": {
"url": "https://github.com/PureStake/xcm-sdk/issues"
"url": "https://github.com/moonbeam-foundation/xcm-sdk/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PureStake/xcm-sdk.git"
"url": "git+https://github.com/moonbeam-foundation/xcm-sdk.git"
},
"type": "module",
"workspaces": [
Expand Down Expand Up @@ -43,6 +43,7 @@
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.27.1",
"@slack/webhook": "^7.0.2",
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
Expand Down
Loading

0 comments on commit 62722bd

Please sign in to comment.