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

add SQD Portal API support #352

Draft
wants to merge 23 commits into
base: master
Choose a base branch
from
Draft
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
8 changes: 6 additions & 2 deletions .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,18 @@ name: prerelease
on:
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
release:
name: release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: beta
ref: ${{ github.ref_name }}
fetch-depth: 0

- name: Configure git user
Expand All @@ -26,6 +30,6 @@ jobs:
- name: Publish npm packages
run: |
commit_hash=$(git rev-parse HEAD)
node common/scripts/install-run-rush.js publish --apply --version-policy npm --partial-prerelease --publish --tag beta --prerelease-name beta.${commit_hash::6}
node common/scripts/install-run-rush.js publish --apply --version-policy npm --partial-prerelease --publish --tag ${{ github.ref_name }} --prerelease-name ${{ github.ref_name }}.${commit_hash::6}
env:
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@subsquid/evm-processor",
"comment": "add SQD Portal support",
"type": "minor"
}
],
"packageName": "@subsquid/evm-processor"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@subsquid/portal-client",
"comment": "init",
"type": "patch"
}
],
"packageName": "@subsquid/portal-client"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@subsquid/substrate-processor",
"comment": "add portal api support",
"type": "minor"
}
],
"packageName": "@subsquid/substrate-processor"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@subsquid/util-internal-archive-layout",
"comment": "export `.splitLines()`",
"type": "minor"
}
],
"packageName": "@subsquid/util-internal-archive-layout"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@subsquid/util-internal",
"comment": "add `.wait() to `AsyncQueue``",
"type": "minor"
}
],
"packageName": "@subsquid/util-internal"
}
44 changes: 28 additions & 16 deletions common/config/rush/pnpm-lock.yaml

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

1 change: 1 addition & 0 deletions evm/evm-processor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"@subsquid/http-client": "^1.6.0",
"@subsquid/logger": "^1.3.3",
"@subsquid/rpc-client": "^4.11.0",
"@subsquid/portal-client": "^0.0.0",
"@subsquid/util-internal": "^3.2.0",
"@subsquid/util-internal-archive-client": "^0.1.2",
"@subsquid/util-internal-hex": "^1.2.2",
Expand Down
Loading
Loading