FAQ (2024)

FAQ (1)

What is the Flow blockchain?

FAQ (2)

Flow is a proof of stake blockchain designed to be the foundation of Web3 and the open metaverse, supporting consumer-scale decentralized applications, NFTs, DeFi, DAOs, PFP projects, and more. Powered by Cadence, an original programming language built specifically for digital assets, Flow empowers developers to innovate and push the limits that will bring the next billion to Web3. Created by a team that has consistently delivered industry-leading consumer-scale experiences including CryptoKitties, NBA Top Shot, and NFL ALL DAY, Flow is an open, decentralized platform with a thriving ecosystem of creators from top brands, development studios, venture-backed startups, crypto leaders, and more.

What is the FLOW cryptocurrency?

FAQ (3)

FLOW is the native currency of the Flow network. It is the exclusive token for staking, delegating, paying transaction fees, and paying storage fees. It is also the primary token used for buying, selling, and trading assets and experiences on Flow.

Is Flow decentralized?

FAQ (4)

Yes, as of October 2021, less than 1/3 of consensus nodes, the nodes responsible for the security of the network, are run by any single entity. Cadence, Flow's programming language, is still in beta but will be available for permissionless deployment in the summer of 2022.

Will there be a Flow token?

FAQ (5)

Yes – the native token for the Flow network is FLOW. All decentralized blockchains use cryptographic tokens (cryptocurrencies) to ensure the security of the system.

When can I start building on Flow?

FAQ (6)

You can start building on Flow immediately! Visit docs.onflow.org to get going.

What is composability? Why does it matter?

FAQ (7)

Composability refers to developers building on top of shared standards - for example: contract standards like those that define fungible and non-fungible tokens or integration standards like the Flow Client Library (FCL) - or shared resources like an existing user base (i.e. community), public data, or existing platforms.

This opportunity for integration allows developers to jump start their own applications and ecosystems by building on existing infrastructure without platform risk (i.e. the risk that the service built on could be turned off). This is something made uniquely possible by standards and resources existing on decentralised blockchains like Flow.

Jesse Walden of a16z says ""A platform is composable if its existing resources can be used as building blocks and programmed into higher order applications. Composability is important because it allows developers to do more with less, which in turn, can lead to more rapid and compounding innovation.” – Jesse Walden, 4 eras of blockchain computing

How is Flow different from other blockchains?

FAQ (8)

Flow is unique in that it addresses the scalability trilemma - a problem that forces trade-offs between scale, security and decentralisation which public blockchains face - by dividing the security and performance work over different groups of nodes which are each specialised for their respective tasks. This unique multi-node architecture allows Flow to scale performantly to service mainstream adoption without compromising the security or long term decentralisation of the network. This multi-node architecture also allows Flow to provide full ACID guarantees which unlocks rich interactions between smart contracts ("composability") and creates strong network effects for apps built on Flow without the complexity of sharding (other chains answer to managing complex state).

How will Flow deal with the overhead of providing state proofs for a high volume of transactions per second?

FAQ (9)

The Flow Architecture defines an Access role specifically to provide cryptographic proofs of transaction outcomes. Furthermore, Access Nodes are also designed to answer general state queries and supply proofs of correctness. Client software works with Access Nodes to provide users with a view of the network that is accurate and secure, without requiring those clients to keep up with the torrent of traffic flowing through the entire network.

The number of Access Nodes in the network has no fixed limit, which will support a practically unbounded number of light clients fetching full state proofs.

What are SPoCKs?

FAQ (10)

Specialized Proofs of Confidential Knowledge (SPoCKs) are a new cryptographic technique developed by the Flow team, formally defined in a technical paper. SPoCKs allow any number of provers to demonstrate to a third-party observer that they each have access to the same confidential knowledge. These proofs are non-interactive and don’t leak information about the confidential knowledge itself. Each prover’s SPoCK is specialized to them, and can’t be copied or forged by any other prover.

Flow uses SPoCKs to address the Verifier’s Dilemma by requiring Execution and Verification Nodes to “show their work”. In order to get paid, these nodes need to provide a SPoCK showing access to confidential knowledge that can only be obtained by executing all of the transactions assigned to them.

How difficult will it be to port a dapp from Ethereum to Flow?

FAQ (11)

When porting dapps from Ethereum to Flow, the following should be considered:

1. ACID properties can be assumed, just like on Ethereum. Thus, all dapps can assume a single shared state space, and don't need to be rearchitected to support a sharded environment or asynchronous function calls.

2. The programming language for Flow is Cadence. It is not compatible with EVM. Thus, smart contract logic needs to be re-implemented. The effort for the implementation largely depends upon the context and complexity of the application. Porting will be simple for NFT-based projects primarily off-the-shelf use cases: transferring, minting, selling on secondary market places, royalties, etc. It will be much more involved if Ethereum-specific ecosystem tools and services were utilized. For instance, the stablecoins compatible with the Flow ecosystem might be different to the ones dapp builders used on Ethereum. Right now, Flow supports FUSD, tUSDT, and USDC.

3. The integration of blockchain interactions into web applications can be done with FCL, a JS library. While architecturally different, it accomplishes similar goals as web3.js. Web applications will need to be updated to support FCL (handling transactions, handling authentication, and handling queries to Flow).

4. The token standards for Flow are implemented differently to account for the resource-oriented programming model represented in Cadence.

5. The wallets compatible with the Flow ecosystem are not the same wallets users and dapp builders are familiar with. Their users accounts would need to be re-created.For a comparison of building blocks for common NFT use cases, please check out the Flow documentation.

How will Flow get past the limitations of processing a high volume of transactions on commodity hardware? Can’t you overload an SSD with just a few hundred TPS?

FAQ (12)

The workhorses of the Flow architecture are the Execution Nodes. You shouldn’t simply think of Execution Nodes as fast computers; each of them is likely to be an entire cluster of high-end server hardware colocated in a professional data center.

Execution Nodes are super fast and have very high staking requirements, but are only ever entrusted with executing the deterministic block transition function. All of the work they do is verified and confirmed by the network of Consensus and Verification Nodes.

How can the Verification Nodes check the work of the Execution Nodes if they aren’t as powerful?

FAQ (13)

Collectively, the Verification Nodes will confirm every part of the block computation many times over, but each individual Verification Node will only do a fraction of the work. For example, if there are 1000 Verification Nodes, each Verification Node would only need to check 4% of the total block for the entire block has been inspected 40 times over. The Flow Technical Papers provide the full details and security analysis of this approach.

What about the Scalability Trilemma? It says you can’t have security, decentralization, and scalability at the same time!

FAQ (14)

The Scalability Trilemma is an important conjecture made by Vitalik Buterin that is not formally proven, but is almost certainly correct for hom*ogenous blockchain designs. If every node in the network has the same role, you have to compromise on at least one of those dimensions.

Flow doesn’t “break” or disprove the Trilemma, it dodges around it. The trick is noting that, if we let different nodes participate in different roles, we can choose the right trade-offs for each part of the system.

Flow maximizes security and decentralization for the Consensus Nodes, the part of the system most vulnerable to Byzantine attacks. This limits their scalability, of course, but that isn’t actually a problem because we don’t ask the Consensus Nodes to do anything computationally expensive.

On the other hand, we crank up the scalability for Execution Nodes to dramatically increase computation throughput. This compromises the security and decentralization of those nodes, which we address by ensuring that every step of every transaction is confirmed by the high security and decentralised Verification Nodes.

For each node type, the Trilemma holds as expected, but the overall effect is a system where the weaknesses of one part of the system are more than offset by the strengths of the other parts.

How do I buy Flow?

FAQ (15)

The Flovatar team has put together a helpful guide for getting Flow.

Where/how can I purchase Flow?

FAQ (16)

You can find a list of exchanges FLOW is available on here.

Where can I store my Flow tokens?

FAQ (17)

You can store them in a wallet. You can find wallets supporting FLOW here: https://www.flowverse.co/projects

Is Flow only for NFTs?

FAQ (18)

Flow is a multi purpose blockchain that supports everything the world of web3 has to offer including: fungible tokens (FTs), non-fungible tokens (NFTs), decentralised autonomous organisations (DAOs), profile pictures (PFPs), and is home to Cadence - a fully featured programming language for building anything you can imagine.

Is it true Cryptokitties broke the the Ethereum blockchain?

FAQ (19)

CryptoKitties rendered Etheruem unusable in December 2017. Read more here.

Is there a quickstart guide for using Flow?

FAQ (20)

Yes. A very high level guide of building a Web3 app on Flow is available here.

If you want to start building, here's a few hands-on resources:

  • If you are just getting started, we recommend following the Flow App quickstart tutorial.
  • If want to jump right in and tackle a more complex project, get a fully-fledged NFT marketplace up and running with the Kitty Items demo app.
  • To learn how to write smart contracts using Flow's revolutionary new smart contract programming language, Cadence, explore the tutorials in the interactive playground.

Can ledgers be used for NFTs?

FAQ (21)

No, currently ledgers can't be used for NFTs. For now, the ledger team only allows an approved set of transactions with ledger devices. That said, NFTs may be allowed in the future.

Does FLOW support fractional NFTs?

FAQ (22)

Cadence is Turing complete, so anything can be built with it, including fractional NFTS.

What is FCL?

FAQ (23)

The Flow Client Library (FCL) JS is a package used to interact with user wallets and the Flow blockchain. When using FCL for authentication, dapps are able to support all FCL-compatible wallets on Flow and their users without any custom integrations or changes needed to the dapp code.

It was created to make developing applications that connect to the Flow blockchain easy and secure. It defines a standardized set of communication patterns between wallets, applications, and users that is used to perform a wide variety of actions for your dapp. FCL also offers a full featured SDK and utilities to interact with the Flow blockchain.

FAQ (2024)

FAQs

How do you write FAQ answers? ›

Short, straightforward answers are the most effective way of relaying information to customers so try to keep it brief. Try not to write more than a paragraph or two for each question. Consider the customer journey. Think about what the customer is asking about and why then tailor your answer to respond to it.

How long should FAQ answers be? ›

How long should my FAQ answers be? As short as possible while still answering the question. If you find your response drags on, you can always split one set into multiple sections. Alternatively, you can end your short answer with a link to another page with full-length legalese.

How do you respond to FAQs? ›

How To Handle FAQs Effectively
  1. Keep the structure logical, clear, and simple.
  2. Make sure the answers are straightforward and concise.
  3. For detailed explanations, provide a link to a guide or article.
  4. Regularly update questions and answers with new information.
  5. Organize questions into categories.
  6. Provide a search bar.

What are typical FAQ questions? ›

Some FAQ pages will contain just a handful of questions because that's all that was needed. Others may have dozens of questions. It entirely depends on the brand and product. Typical areas of interest for FAQ pages are shipping and return policies, product materials, sustainability, payment methods, etc.

What makes a good FAQ section? ›

Accuracy: The FAQ page should be a single source of truth, offering customers answers to general questions. Affordability: When customers can get answers themselves, they don't have to rely on customer service agents. This ultimately lowers payroll costs.

How many questions should a FAQ have? ›

How many questions should a FAQ page have? I suggest at least 10 for a full FAQ page. Most businesses can find at least that number to answer concisely. The exact number is less important than being organized and concise.

Are FAQs still relevant? ›

Are FAQ Pages Still Relevant? Just because FAQs aren't displayed as much in rich results doesn't necessarily mean we should do away with them entirely. Many site visitors do read FAQs and find them helpful and informative.

How to optimize FAQs? ›

How Do You Create SEO-Friendly FAQ Pages?
  1. Compile the most common questions users have.
  2. Provide complete, concise answers to those questions.
  3. Format your FAQ pages for user experience (UX)
  4. Optimize the title tag and meta descriptions for your FAQ pages.
  5. Markup your page with FAQ schema.
Sep 2, 2020

How should you frame a FAQ? ›

Tips for writing a good FAQ page
  1. Make the FAQs easy to find.
  2. Write questions from the point of view of your customer.
  3. Write the FAQ sheet in an actual question-and-answer format.
  4. Keep answers short.
  5. Fully answer the question, don't just link to a different page.
  6. Start your answers to yes/no questions with a “yes” or a “no”
Oct 20, 2021

How do you answer Q&A effectively? ›

Here are 17 tips to keep in mind when preparing to answer difficult questions effectively and constructively:
  1. Prepare for tough questions. ...
  2. Pause before responding. ...
  3. Monitor your body language. ...
  4. Reword the question. ...
  5. Take more time if you need to. ...
  6. Acknowledge the other person's emotions. ...
  7. Answer a portion of the question.
Aug 15, 2024

How do you answer a Q&A session? ›

Be polite • Repeat the question to ensure everyone has heard it • Answer clearly and concisely, using plain language • Thank the questioner • If you do not know the answer, admit it. Do not bluff. Promise to follow it up – and do so!

How important are FAQs? ›

Frequently asked questions, or FAQs as they are known, are a great way to improve your customer's experience of your website. It allows you to answer the questions that are most commonly asked surrounding your product or service.

How to make FAQ interesting? ›

Here are some tips on how to design a FAQ page.
  1. Use service data to identify your most common questions. ...
  2. Include real frequently asked questions. ...
  3. Keep it simple & organized. ...
  4. Make it searchable. ...
  5. Include space for live support options. ...
  6. Design your FAQ page. ...
  7. Publish the FAQ page on your site.
Feb 27, 2024

Do FAQs have to be questions? ›

Benefits of a FAQ Page

Customers can easily find answers to their questions about your product or business all on their own. However, FAQ pages don't need to be entirely made up of customer service questions.

What is the difference between FAQ and Q&A? ›

In this schema type, a question can have multiple answers. This is the basic difference between Q&A schema and FAQ Schema. In FAQ Schema one question has only one answer but in Q&A schema, one question may have multiple answers.

How do you answer questions on Q&A? ›

Be polite • Repeat the question to ensure everyone has heard it • Answer clearly and concisely, using plain language • Thank the questioner • If you do not know the answer, admit it. Do not bluff. Promise to follow it up – and do so!

Do you write FAQ or FAQs? ›

FAQ can be pronounced as an initialism, "F-A-Q", or as an acronym, "FAQ". Web designers often label a single list of questions as a "FAQ", such as on Google Search, while using "FAQs" to denote multiple lists of questions such as on United States Treasury sites.

Top Articles
Six Tips for Passing a Microsoft Certification Exam (from Someone Who Hates Taking Tests)
Difficulty Levels - TV Tropes
Enrique Espinosa Melendez Obituary
Missed Connections Inland Empire
Falgout Funeral Home Obituaries Houma
Ventura Craigs List
Beds From Rent-A-Center
Words From Cactusi
Boat Jumping Female Otezla Commercial Actress
Progressbook Brunswick
Morocco Forum Tripadvisor
Craigslist Mpls Cars And Trucks
Dit is hoe de 130 nieuwe dubbele -deckers -treinen voor het land eruit zien
Suffix With Pent Crossword Clue
Rufus Benton "Bent" Moulds Jr. Obituary 2024 - Webb & Stephens Funeral Homes
Empire Visionworks The Crossings Clifton Park Photos
Mtr-18W120S150-Ul
Xfinity Cup Race Today
UMvC3 OTT: Welcome to 2013!
Hdmovie2 Sbs
Miles City Montana Craigslist
Leben in Japan – das muss man wissen - Lernen Sie Sprachen online bei italki
Chicago Pd Rotten Tomatoes
Autotrader Bmw X5
Sun-Tattler from Hollywood, Florida
Mgm Virtual Roster Login
Rise Meadville Reviews
Joe's Truck Accessories Summerville South Carolina
Mta Bus Forums
Skill Boss Guru
Gpa Calculator Georgia Tech
Marcus Roberts 1040 Answers
Babbychula
Ticket To Paradise Showtimes Near Regal Citrus Park
2023 Nickstory
Oppenheimer Showtimes Near B&B Theatres Liberty Cinema 12
Isabella Duan Ahn Stanford
Dickdrainersx Jessica Marie
Mynord
Fluffy Jacket Walmart
CrossFit 101
The Complete Uber Eats Delivery Driver Guide:
Canada Life Insurance Comparison Ivari Vs Sun Life
The Machine 2023 Showtimes Near Roxy Lebanon
Minterns German Shepherds
Legs Gifs
Costco Tire Promo Code Michelin 2022
Craigslist Charlestown Indiana
Southern Blotting: Principle, Steps, Applications | Microbe Online
Craigslist Centre Alabama
Unity Webgl Extreme Race
Latest Posts
Article information

Author: Kareem Mueller DO

Last Updated:

Views: 6202

Rating: 4.6 / 5 (46 voted)

Reviews: 85% of readers found this page helpful

Author information

Name: Kareem Mueller DO

Birthday: 1997-01-04

Address: Apt. 156 12935 Runolfsdottir Mission, Greenfort, MN 74384-6749

Phone: +16704982844747

Job: Corporate Administration Planner

Hobby: Mountain biking, Jewelry making, Stone skipping, Lacemaking, Knife making, Scrapbooking, Letterboxing

Introduction: My name is Kareem Mueller DO, I am a vivacious, super, thoughtful, excited, handsome, beautiful, combative person who loves writing and wants to share my knowledge and understanding with you.