Flow Networks
Flow networks that Blocto supports
Mainnet
Access Node
https://rest-mainnet.onflow.orgBlocto Wallet
front channel
https://wallet-v2.blocto.app/${YOUR_DAPP_ID}/flow/authnback channel
https://wallet-v2.blocto.app/api/flow/authn
Front Channel
import * as fcl from "@blocto/fcl"
fcl
  .config()
  .put("accessNode.api", "https://rest-mainnet.onflow.org")// connect to Flow mainnet
  .put("discovery.wallet", `https://wallet-v2.blocto.app/${YOUR_DAPP_ID}/flow/authn`)// use Blocto walletBack Channel
import * as fcl from "@blocto/fcl";
fcl
  .config()
  .put("accessNode.api", "https://rest-mainnet.onflow.org")// connect to Flow mainnet
  .put("discovery.wallet","https://wallet-v2.blocto.app/api/flow/authn")// use Blocto wallet
  .put("discovery.wallet.method", "HTTP/POST")
  .put("app.detail.id", YOUR_DAPP_ID)// this line is optionalTestnet
Access Node
https://rest-testnet.onflow.orgBlocto Wallet
front channel
https://wallet-v2-dev.blocto.app/${YOUR_DAPP_ID}/flow/authnback channel
https://wallet-v2-dev.blocto.app/api/flow/authn
Front Channel
import * as fcl from "@blocto/fcl"
fcl
  .config()
  .put("accessNode.api", "https://rest-testnet.onflow.org")// connect to Flow testnet
  .put("discovery.wallet", `https://wallet-v2-dev.blocto.app/${YOUR_DAPP_ID}/flow/authn`)// use Blocto testnet walletBack Channel
import * as fcl from "@blocto/fcl";
fcl
  .config()
  .put("accessNode.api", "https://rest-testnet.onflow.org")// connect to Flow testnet
  .put("discovery.wallet","https://wallet-v2-dev.blocto.app/api/flow/authn")// use Blocto testnet wallet
  .put("discovery.wallet.method", "HTTP/POST")
  .put("app.detail.id", YOUR_DAPP_ID)// this line is optionalLast updated
Was this helpful?