Skip to content
Open
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 packages/pipes-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@subsquid/pipes-cli",
"type": "module",
"version": "1.0.0-alpha.1",
"version": "1.0.0-beta.2",
"author": "Subsquid Team",
"repository": {
"type": "git",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ exports[`planConfigFiles > package.json snapshots per (packageManager, target) >
"@clickhouse/client": "^1.14.0",
"@subsquid/evm-abi": "0.3.1",
"@subsquid/evm-codec": "0.3.0",
"@subsquid/pipes": "^1.0.0",
"@subsquid/pipes": "^1.0.0-beta.1",
"better-sqlite3": "^12.4.5",
"dotenv": "^16.4.5",
"zod": "^4.3.4"
Expand Down Expand Up @@ -47,7 +47,7 @@ exports[`planConfigFiles > package.json snapshots per (packageManager, target) >
"@clickhouse/client": "^1.14.0",
"@subsquid/evm-abi": "0.3.1",
"@subsquid/evm-codec": "0.3.0",
"@subsquid/pipes": "^1.0.0",
"@subsquid/pipes": "^1.0.0-beta.1",
"better-sqlite3": "^12.4.5",
"dotenv": "^16.4.5",
"zod": "^4.3.4"
Expand Down Expand Up @@ -80,7 +80,7 @@ exports[`planConfigFiles > package.json snapshots per (packageManager, target) >
"dependencies": {
"@subsquid/evm-abi": "0.3.1",
"@subsquid/evm-codec": "0.3.0",
"@subsquid/pipes": "^1.0.0",
"@subsquid/pipes": "^1.0.0-beta.1",
"better-sqlite3": "^12.4.5",
"dotenv": "^16.4.5",
"drizzle-kit": "^0.30.0",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
import type { NetworkType, Target } from '~/types/init.js'

const baseDependencies: Record<string, string> = {
'@subsquid/pipes': '^1.0.0',
// Prerelease-aware range: plain '^1.0.0' excludes prereleases, and every
// published 1.0 line is one so far, so it resolves to nothing. This range
// takes the 1.0 betas today and the stable 1.0.0 once it ships.
'@subsquid/pipes': '^1.0.0-beta.1',
dotenv: '^16.4.5',
zod: '^4.3.4',
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,13 +101,13 @@ const pipeline = evmPortalStream({
\`\`\`

#### 2. Run the Pipes UI dashboard
This will start the Pipes UI dashboard at http://localhost:3000. _Learn more about Pipes UI [here](https://docs.sqd.dev/en/sdk/pipes-sdk/evm.autogenerated/reference/pipes-ui)_
This will start the Pipes UI dashboard at http://localhost:3000. _Learn more about Pipes UI [here](https://docs.sqd.dev/en/sdk/pipes-sdk/evm/guides/basic-development/pipes-ui)_
\`\`\`bash
npx @subsquid/pipes-ui
npx @subsquid/pipes-ui@beta
\`\`\`

#### 3. Custom metrics
Need to track custom metrics? Explore the [custom metrics section](https://docs.sqd.dev/en/sdk/pipes-sdk/evm.autogenerated/advanced/quality-of-life#custom-metrics) in the Pipes SDK docs.
Need to track custom metrics? Explore the [custom metrics guide](https://docs.sqd.dev/en/sdk/pipes-sdk/evm/guides/advanced-topics/metrics) in the Pipes SDK docs.


## Going deeper
Expand Down
2 changes: 1 addition & 1 deletion packages/pipes-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@subsquid/pipes-ui",
"version": "1.0.0-alpha.8",
"version": "1.0.0-beta.1",
"type": "module",
"author": "Subsquid Team",
"repository": {
Expand Down
Loading