Blocto
About porttoBlog
  • 📣Introduction
  • Blocto Environment
  • Give Feedback
  • BLOCTO SDK
    • Overview
    • JavaScript SDK
      • Flow
        • Tutorial
        • Configure FCL
        • Authenticate / Unauthenticate
        • Send Transaction
        • Account Proof
        • Flow Networks
        • Verified Transaction
        • Migration Guide
  • Blocto App
    • Token Listing
  • Technical Documents
    • Key Management
  • Support
    • Contact Us
    • Web Wallet v1 Sunset Notice and Migration Guide
  • Community
    • Discord
    • Twitter
    • Facebook
Powered by GitBook
On this page
  • Mainnet
  • Testnet

Was this helpful?

  1. BLOCTO SDK
  2. JavaScript SDK
  3. Flow

Flow Networks

Flow networks that Blocto supports

Mainnet

  • Access Node https://rest-mainnet.onflow.org

  • Blocto Wallet

    • front channel https://wallet-v2.blocto.app/-/flow/authn

    • back channel https://wallet-v2.blocto.app/api/flow/authn

Front Channel

import * as fcl from "@blocto/fcl"

fcl.config({
  "accessNode.api": "https://rest-mainnet.onflow.org", // connect to Flow mainnet
  "discovery.wallet": `https://wallet-v2.blocto.app/-/flow/authn` // use Blocto mainnet wallet
});

Back Channel

import * as fcl from "@blocto/fcl";

fcl.config({
  "accessNode.api": "https://rest-mainnet.onflow.org", // connect to Flow mainnet
  "discovery.wallet": "https://wallet-v2.blocto.app/api/flow/authn", // use Blocto mainnet wallet
  "discovery.wallet.method": "HTTP/POST",
});

Testnet

  • Access Node https://rest-testnet.onflow.org

  • Blocto Wallet

    • front channel https://wallet-v2-dev.blocto.app/-/flow/authn

    • back channel https://wallet-v2-dev.blocto.app/api/flow/authn

Front Channel

import * as fcl from "@blocto/fcl"

fcl.config({
  "accessNode.api": "https://rest-testnet.onflow.org", // connect to Flow testnet
  "discovery.wallet": `https://wallet-v2-dev.blocto.app/-/flow/authn` // use Blocto testnet wallet
});

Back Channel

import * as fcl from "@blocto/fcl";

fcl.config({
  "accessNode.api": "https://rest-testnet.onflow.org", // connect to Flow testnet
  "discovery.wallet": "https://wallet-v2-dev.blocto.app/api/flow/authn", // use Blocto testnet wallet
  "discovery.wallet.method": "HTTP/POST",
});
PreviousAccount ProofNextVerified Transaction

Last updated 1 month ago

Was this helpful?