← Back to Portal Setup
Return to the Portal setup overview to explore other deployment options.
Portal is currently in open beta. Please report any bugs or
suggestions to Squid Devs.
Prerequisites
- An existing SDK-based squid using
@subsquid/evm-processorwith.setGateway() - Access to an SQD portal URL (see Step 2 for options)
Migration steps
Install portal-api version
Navigate to your squid’s folder and install the
portal-api version of @subsquid/evm-processor:Obtain a portal URL
Obtain a portal URL for your dataset. Choose the option that matches your setup:
- SQD Cloud user
- Self-hosted portal
- Public portal (testing)
If you’re an existing user of the SQD Cloud:
- Enable the preview mode
- Navigate to the portals page
- Click on the tile of your network and follow the instructions
Once configured, you can run your portal-powered squid both locally and in the Cloud. You can skip Step 3—it’s already configured automatically.
Update processor configuration
Configure your squid to ingest data from the portal by replacing the
.setGateway() call in your processor configuration (typically in src/processor.ts) with .setPortal().- Local or self-hosted portal
- Cloud deployment
Replace
.setGateway() with .setPortal() using your portal URL directly:src/processor.ts
Your squid is now configured to source data from Portal. Test it locally to verify everything works correctly.

