description |
---|
Flow networks that Blocto supports |
- Access Node
https://rest-mainnet.onflow.org
- Blocto Wallet
- front channel
https://wallet-v2.blocto.app/${YOUR_DAPP_ID}/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/${YOUR_DAPP_ID}/flow/authn` // use Blocto mainnet wallet
});
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",
"app.detail.id": "YOUR_DAPP_ID"
});
- Access Node
https://rest-testnet.onflow.org
- Blocto Wallet
- front channel
https://wallet-v2-dev.blocto.app/${YOUR_DAPP_ID}/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/${YOUR_DAPP_ID}/flow/authn` // use Blocto testnet wallet
});
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",
"app.detail.id": "YOUR_DAPP_ID"
});