LogoLogo
  • 🌊Superfluid
  • Protocol Overview
    • 💡What is Superfluid?
    • 📄In-Depth Overview
      • Super Tokens
      • Super Agreements
        • 🚰Money Streaming (CFA)
        • ✳️Distributions (IDA)
        • 🌊Streaming Distributions
      • Super Apps
      • Superfluid Host
    • 🧠Use Cases
      • Recurring Payments
      • DeFi
      • Social & Community
      • Gaming
    • 📔Glossary of Terms
  • Developers
    • 🏃Quickstart
    • 🪙Super Tokens
      • Super Tokens - Solidity
      • Super Tokens - SDK Core
      • Super Tokens - Frontend Examples
      • Types of Super Tokens
      • Deploy a Super Token
        • Deploying a Wrapper Super Token
        • Deploying a Self Governed Super Token
        • Deploying a Pure Super Token
      • In-Depth
        • Tracking Super Token Balances
        • ERC777 in Super Tokens
      • Test Super Token Faucet
    • 🌊Money Streaming (CFA)
      • Solidity
        • Read Methods
          • getFlowInfo
          • getFlowRate
          • getNetFlowRate
        • Write Methods
          • createFlow
          • updateFlow
          • deleteFlow
          • With User Data
          • With Context
      • SDK Core
        • Read Methods
          • getFlow
          • getNetFlow
          • getAccountFlowInfo
        • Write Methods
          • createFlow
          • updateFlow
          • deleteFlow
      • Access Control List (ACL)
        • Solidity
          • createFlowFrom
          • updateFlowFrom
          • deleteFlowFrom
          • setFlowPermissions
          • setMaxFlowPermissions
          • revokeFlowPermissions
          • increaseFlowRateAllowanceWithPermissions
          • decreaseFlowRateAllowanceWithPermissions
          • getFlowPermissions
        • SDK Core
          • createFlowByOperator
          • updateFlowByOperator
          • deleteFlowByOperator
          • updateFlowOperatorPermissions
          • revokeFlowOperatorPermissions
          • increaseFlowRateAllowanceWithPermissions
          • getFlowOperatorData
      • Frontend Examples
      • More...
        • Flow Rate Time Frames
        • Building Batched Streams in Safe
        • Flow NFTs
    • ✳️Distributions (IDA)
      • IDA - Solidity
      • IDA - SDK Core
      • IDA - Frontend Examples
    • 🤖Super Apps
      • Super Apps in Depth
      • Super App Callbacks
        • Calling Agreements In Super Apps
      • User Data
        • NFT Billboard Example
      • SuperAppBaseFlow
      • Super App Examples
      • Super App Deployment Guide
    • 🧺Batch Calls
      • Batch Calls - SDK Core
      • Batch Calls - Frontend Examples
    • ⚙️Automations
      • Auto-Wrap
        • Dev Guide
      • Stream Scheduler
        • Dev Guide
      • Vesting Scheduler
        • Dev Guide
      • Stream Accounting API
        • Dev Guide
      • Automation Subgraphs
        • Stream Scheduler Subgraph
        • Vesting Scheduler Subgraph
        • Auto Wrap Subgraph
    • 🏗️Integration Guides
      • For Your Integration: The Basics
        • Supporting Super Tokens
        • Supporting Money Streams
        • Supporting Instant Distributions
      • Gating with Superfluid Subscriptions & Guild.xyz
      • Displaying Token Balances
      • Useful Queries for Your Integration
        • Instant Distribution Events
        • Money Streaming Events
        • Super Token Events
        • Other Helpful Queries
      • Constructing Links to The Superfluid Dashboard
    • 🔁Superfluid Subscriptions
      • Superfluid Checkout Widget
      • Implementing Subscriptions in your App
    • SDK Core General
      • Initialization
      • Functionality
      • Getting Data
      • Resolver
      • Reference Docs
    • Solidity General
      • Calling Super Agreements
      • Libraries
      • Resolver
    • Testing Guide
      • Hardhat Testing
      • Foundry Testing
      • In-Depth
        • Hardhat Mainnet Fork Testing
        • Super App Testing on Mainnet Forks
    • Subgraph
    • Reference
      • Deploying The Framework
      • EVM Contracts
      • SDK Redux
      • Superfluid Console
      • Superfluid Protocol Addresses
    • Contract Addresses
  • Sentinels
    • 🥅Liquidations & TOGA
    • 🤖Running a Sentinel
    • 🗺️Solvency Dashboard
  • Resources
    • 🌊Superfluid Wave Pool
    • 📜Superfluid on Ethereum Mainnet
    • 💰Bounty Program
    • 🛡️Security & Bug Bounties
    • 💡Project Ideas
    • 🗳️Token Dashboard Submission
    • 🎥Videos
    • Superfluid Deployment Guide
    • Learn about Ethereum
    • Code of Conduct
Powered by GitBook
On this page
  • How do I create a prefilled Superfluid Dashboard Send Stream link?
  • How to construct links to Superfluid Dashboard Stream Details Pages
  • How do I create a prefilled Superfluid Dashboard Li.Fi Bridge link?

Was this helpful?

  1. Developers
  2. Integration Guides

Constructing Links to The Superfluid Dashboard

Generating pre-filled dashboard links for your users

PreviousOther Helpful QueriesNextSuperfluid Subscriptions

Last updated 2 years ago

Was this helpful?

How do I create a prefilled Superfluid Dashboard Send Stream link?

If you want to send a payment request using the Superfluid Dashboard, you can do so by tweaking the URL parameters

If you're interested in sending someone else a prefilled Send Stream link, here's how:

A fully-filled send stream link looks as follows:

<https://app.superfluid.finance/send?network=polygon&receiver=0x7BDa037dFdf9CD9Ad261D27f489924aebbcE71Ac&token=0x263026e7e53dbfdce5ae55ade22493f828922965&flow-rate=250/minute>

You may tweak the parameters as follows:

network: The intended network of the stream to be created. Examples: gnosis, polygon, polygon-mumbai, avalanche-fuji, optimism, arbitrum-one, avalanche, bsc, goerli

receiver: The hex address of the intended recipient of the stream to be created.

token: The hex address of the Super Token to be used for the stream. You can find Super Token addresses in the .

flow-rate: The flow rate of the intended stream, number/frequency e.g. 1/second, 1000/month, 120000/year

How to construct links to Superfluid Dashboard Stream Details Pages

Method 1 (recommended):

sender-receiver-tokenaddress-StreamRevision.revisionIndex

Method 2 (legacy):

txhash-logindex

How do I create a prefilled Superfluid Dashboard Bridge link?

Instructions for a prefilled link to Swap and Bridge in the Superfluid Dashboard

<https://app.superfluid.finance/bridge?fromChain=137&toChain=10&fromToken=0xCAa7349CEA390F89641fe306D93591f87595dc1F&toToken=0x7f5c764cbc14f9669b88837ca1490cca17c31607&fromAmount=100>

You may tweak the parameters as follows:

fromChain: The chainId of the source chain. e.g. 137 for Polygon

toChain: The chainId of the destination chain. e.g. 10 for Optimism

fromToken: The token hex address of the source token

toToken: The token hex address of the destination token

fromAmount: The amount of tokens to be swapped

A fully prefilled Bridge Widget link looks as follows:

🏗️
Superfluid Console
https://app.superfluid.finance/stream/polygon/0xd964ab7e202bab8fbaa28d5ca2b2269a5497cf68-0x7bda037dfdf9cd9ad261d27f489924aebbce71ac-0x3862c15cdc4c38517aa4c6f94197a93253502168-0.0
https://app.superfluid.finance/stream/polygon/0x2214a32b03a13a68f5f3d84c17c9fd549ab6fcc01b96ffcea8cf209982cf32da-95
Li.Fi
Li.Fi