diff --git a/_data/pages/starknet-frequently-asked-questions.yml b/_data/pages/starknet-frequently-asked-questions.yml new file mode 100644 index 0000000000..d2d5572c92 --- /dev/null +++ b/_data/pages/starknet-frequently-asked-questions.yml @@ -0,0 +1,717 @@ +id: b5689d3a-348b-4ccb-b787-520b64c55e41 +title: Starknet Frequently Asked Questions +seoTitle: Starknet Frequently Asked Questions +seoDescription: The one-stop shop for answers to all your questions about + Starknet. Learn about the leading L2's role in the blockchain ecosystem, it's + native token, and how to get started. +template: content +parent_page: /learn/ +breadcrumbs: false +page_last_updated: true +blocks: + - type: page_header + title: Frequently asked questions + - type: heading_container + heading_variant: h3 + blocks: [] + heading: Common questions + - type: accordion + heading: "" + blocks: + - body: >- + The Starknet Provisions Program (“Provisions”) is the distribution of + Starknet's native token (STRK) to eligible users, builders, and + community members who have contributed to Starknet. Making Starknet’s + native token available for the community will enable the community to + pay fees in STRK, and engage in the decentralization of the network by + participating in governance votes and in the decentralized + proof-of-stake (PoS) model that will be implemented in later stages.  + + + The [Provisions blog post](https://www.starknet.io/en/content/starknet-provisions-program) details the purpose of Provisions, the guiding principles for its distribution, and the criteria for its allocation. + label: What are the goals of the Starknet Provisions Program? + - label: What is the purpose of STRK? What will it be used for? + body: >- + STRK will be used for several functions: + + + * **Network fees:** Starting with Provisions, users will be able to pay transaction fees using STRK. Fees on Starknet are currently paid in ETH, and following Provisions, users will have the choice of paying fees in ETH or STRK. + + * **Governance:** Following Provisions, recipients of STRK will be able to participate in governance related to a range of matters that will shape Starknet’s future. More information on Starknet’s governance can be found in the [Starknet Governance Hub](https://governance.starknet.io/). + + * **Staking:** In the future, STRK will be used for staking within a proof-of-stake (PoS) model that will enable stakers to choose among a decentralized network of sequencers, ensuring Starknet’s decentralized operation. + + + You can find more information in the [Starknet Token Announcement post](https://docs.starknet.io/documentation/architecture_and_concepts/Economics-of-Starknet). + - type: accordion_item + label: Where can I monitor Starknet’s transactions? + body: "There are several block explorers you can use: + [StarkScan](https://starkscan.co/), + [Voyager](https://voyager.online/txns), + [ViewBlock](https://viewblock.io/starknet)." + - label: "What are Starknet Appchains? " + body: >- + Starknet Appchains are instances of Starknet that power a specific + application (or a host of applications). Setting up a Starknet + appchain can be done in several ways using [the Starknet + Stack](https://starkware.co/resource/the-starknet-stacks-growth-spurt/).\ + + \ + + Operating an app-specific Starknet appchain allows configuring the network’s block size, latency, data availability mode, fees, consensus mechanism, and more, according to the unique requirements of the application. Appchains also enable the implementation of unique features and logic that are not available on the public Starknet network.\ + + \ + + In addition to the adjusted configuration and unique features, appchains benefit from Starknet’s technology, including massive throughput, native Account Abstraction, and Ethereum level of security, as well as the tools and infrastructure that are part of the public network. + - type: accordion_item + label: I want to write my own contract on Starknet. Where do I start? Are there + any available toolkits? + body: >- + A good place to start is the [Hello Starknet + tutorial](https://docs.starknet.io/documentation/), which guides the + developer step by step through writing and deploying a simple + contract. The [Starknet + Playground](https://starknet.io/playground/?lesson=starknet_contract) + offers an environment for learning how to write Starknet contracts and + test them.  + + + You can become part of the developers’ community, and support it, by joining the [Starknet Discord](https://discord.gg/starknet-community) server. + - type: accordion_item + body: SHARP (shared prover) is a service for computing proofs of the correct + execution of Cairo programs. It can be used to prove the correct + execution of a particular Cairo program which enforces the validity of + Starknet state transitions – the Starknet OS (operating system). + Currently, Starknet uses SHARP alongside many other customers to + amortize proof costs. In the future, Starknet throughput may justify a + dedicated prover layer.. + label: How is Starknet related to SHARP? + - type: accordion_item + label: In Starknet, are STARK proofs zero-knowledge proofs? + body: >- + Currently not. STARKs are defined as Validity proofs, meaning they + prove computational integrity. With Validity proofs (STARKs included), + one party can prove to another that a certain computation was + performed correctly. Zero-Knowledge is an additional property + asserting that the prover does not have to reveal any information + included in the computation. + + + Most ZK-Rollups are not really Zero-Knowledge. The mistake comes from the confusion between Validity proofs (assures computational integrity) and Zero-Knowledge proofs (assures no information is revealed). + + + Starknet uses STARK Validity proofs. It is worth noting that extracting information from the proof is extremely hard – almost impossible in practice. + - type: accordion_item + label: Can I maintain privacy on Starknet? + body: >- + Currently, Starknet transactions and their payloads are visible to the + network in the same way that they are visible on Ethereum. + + + It is possible to deploy various privacy protocols on Starknet, which will offer full privacy from all network participants. Since those protocols usually require a lot of computation, they will benefit greatly from Starknet scalability. + - type: heading_container + heading_variant: h3 + blocks: [] + heading: Cairo + - type: accordion + heading: "" + blocks: + - type: accordion_item + label: What is Cairo? + body: Cairo is an overloaded term which stands for three different things. + First, Cairo is a CPU architecture. Second, “Cairo” is shorthand for + CPU AIR which is an algebraic representation of this CPU architecture. + Lastly, Cairo is a Turing complete programming language that enables + blockchain developers to harness the power of STARKs. The first two + aspects, alongside the instruction set of the language, are outlined + in the [whitepaper](https://eprint.iacr.org/2021/1063). For the + language, see the [github + repo](https://github.com/starkware-libs/cairo). + - type: accordion_item + label: What is STARK? + body: STARK is a proof system. It uses cutting-edge cryptography to provide + polylogarithmic verification complexity and proof size, quasilinear + proof complexity, and minimal assumptions which are + post-quantum-secure. More information + [here](https://starkware.co/stark/). + - type: accordion_item + label: What Is the difference between Starknet contracts and Cairo programs? + body: >- + [Cairo](https://medium.com/starkware/hello-cairo-3cb43b13b209) is a + Turing-complete language designed for succinctly proving the correct + execution of Cairo programs. A Cairo program is stateless, meaning you + do not have native access to storage, other Cairo programs, or the L1 + state (although you can access those, as explained below).  + + + Starknet contracts, on the other hand, live in the Starknet VM, which has a persistent state that smart contracts can access and modify. These smart contracts can store variables, communicate with other contracts, and send/receive messages to/from L1 ([read more](https://www.cairo-lang.org/docs/hello_starknet/index.html)). + - type: accordion_item + label: Do I have to write my contract in Cairo to deploy on Starknet? + body: >- + No. You have several options for writing a contract, each with its own + benefits.  + + + Cairo is the native language for a Starknet contract, which most fully realizes the scaling potential of Starknet. On the other hand, several teams are developing transpilers from other programming languages (notably Solidity) to Cairo. Such transpilers facilitate quick deployment of existing contracts on Starknet.**[See our latest development tooling](/developers/tools-resources).** + - type: heading_container + heading_variant: h3 + blocks: [] + heading: Operating on Starknet + - type: accordion + heading: "" + blocks: + - label: Who will be able to participate in Starknet? + body: >- + Starknet is evolving to become fully permissionless, allowing anyone + to operate on the network: + + + 1. **Sequencers**  – Anyone will be able to operate a sequencer, i.e., batch transactions and propose new blocks (somewhat analogous to Ethereum miners, without the Proof of Work part). + + 2. **Provers** – Anyone will be able to set up a prover and create proofs for the validity of new blocks. + + 3. **Developers** – Developers will be able to deploy their smart contracts – permissionlessly. + + 4. **Users** – Users will be able to send transactions permissionlessly. As the system will be decentralized, the possibility of censorship will be eliminated. + - label: What types of dApps can be deployed on Starknet? + body: Any dApp can be deployed on Starknet. As Cairo allows general computation, + any business logic can be implemented and processed over StarkNet. + - label: Who can deploy a smart contract on Starknet? + body: >- + Anyone can interact with Starknet and deploy contracts. + + + During the Alpha phase, developers need to make sure they are aware of the network status as part of the onboarding process. + - label: What will decentralization on Starknet look like? + body: >- + The decentralization of the network has two aspects: + + + 1. The permissionless layer of Sequencers and Provers ensures that the network will be censorship-resistant. + + 2. The usage of STARK-proofs ensures that the state is correct, allows everyone to verify the entire Starknet chain with low hardware requirements – regardless of the network’s throughput, and without trusting any external entity. + - label: Can I run a Starknet full node? + body: >- + Yes! + + + You can take a look at [this tutorial](https://github.com/eqlabs/pathfinder/#readme). + - label: Does Starknet support EVM? + body: >- + The Warp team at Nethermind is developing a Solidity to Cairo + transpiler: [Warp](https://github.com/NethermindEth/warp). + + + Starknet does not natively support EVM. + - type: heading_container + heading_variant: h3 + blocks: [] + heading: Starknet and StarkEx + - type: accordion + heading: "" + blocks: + - label: What is the difference between StarkEx and Starknet? + body: >- + **StarkEx** is a standalone, customizable Layer-2 SAAS for exchanges + that uses the STARK proof system in order to provide massive scaling. + Several significant exchanges are already using StarkEx in production + on Ethereum Mainnet (read more about StarkEx). + + + **Starknet** is a general-purpose network where you can write and deploy your own smart contracts, interact with other contracts, and so on, just like Ethereum. + - label: What will happen to StarkEx dapps? Will they migrate to Starknet? + body: Once Starknet is ready, StarkEx apps may migrate to StarkNet if they so + choose. + - type: heading_container + heading_variant: h3 + blocks: [] + heading: Starknet Token - STRK + - type: accordion + heading: Vision + blocks: + - label: What are the goals of the Starknet Provisions Program? + body: >- + The Starknet Provisions Program (“Provisions”) is the distribution of + Starknet's native token (STRK) to eligible users, builders, and + community members who have contributed to Starknet. Making Starknet’s + native token available for the community will enable the community to + pay fees in STRK, and engage in the decentralization of the network by + participating in governance votes and in the decentralized + proof-of-stake (PoS) model that will be implemented in later stages.  + + + The [Provisions blog post](https://www.starknet.io/en/content/starknet-provisions-program) details the purpose of Provisions, the guiding principles for its distribution, and the criteria for its allocation. + - label: How does the STRK allocation fit into the plans to decentralize Starknet? + body: >- + STRK will play an important role in the decentralization of the + Starknet network in two ways: + + + 1. STRK will be used to allow the community to participate in governance votes, either by voting directly, or by delegating their voting power. Allocating STRK to the broader community will allow it to shape Starknet’s future through these votes. + + 2. In the future, the community will be able to stake STRK within a proof-of-stake (PoS) model, ensuring Starknet’s decentralized operation. + - label: What is the purpose of STRK? What will it be used for? + body: >- + STRK will be used for several functions: + + + * **Network fees:** Starting with Provisions, users will be able to pay transaction fees using STRK. Fees on Starknet are currently paid in ETH, and following Provisions, users will have the choice of paying fees in ETH or STRK. + + * **Governance:** Following Provisions, recipients of STRK will be able to participate in governance related to a range of matters that will shape Starknet’s future. More information on Starknet’s governance can be found in the [Starknet Governance Hub](https://governance.starknet.io/). + + * **Staking:** In the future, STRK will be used for staking within a proof-of-stake (PoS) model that will enable stakers to choose among a decentralized network of sequencers, ensuring Starknet’s decentralized operation. + + + You can find more information in the [Starknet Token Announcement post](https://docs.starknet.io/documentation/architecture_and_concepts/Economics-of-Starknet). + - label: How does the Provisions program fit into the community allocation plan? + body: >- + The Provisions program is one of the first steps planned for + distributing STRK to the community.  + + + During the first round of Provisions, the Starknet Foundation will distribute more than 700 million out of 900 million STRK dedicated to the program. Tokens not claimed within 4 months (until June 20th, 2024) of this initial phase of Provisions will be reallocated for future distribution. + + + The total amount dedicated to the Starknet community is 1.8 billion STRK. Future plans for STRK distribution to the community include rebates, and initiatives of various special community committees dedicated to DeFi, gaming, and more. Details of future plans for the distribution of tokens beyond the first round of Provisions will be announced in due course.  + + + ***Note***: *The Starknet Foundation is the sole body leading distributions of STRK. Anyone claiming to be leading parallel distributions is running a scam.* + + + For more information about the entire allocation plan of the STRK token, see [here](https://docs.starknet.io/documentation/architecture_and_concepts/Economics-of-Starknet). + - label: What were the guiding principles for determining the eligibility and + levels of allocation? + body: >- + The guiding principles for the allocation of Provisions were as + follows: + + + * **Contribution:** Allocation is aimed at those who have contributed substantially to the advancement of Starknet, STARK-tech infrastructure, Ethereum, and some non-crypto open-source software projects. + + * **Broad distribution:** The Starknet Foundation aims to distribute Provisions to the largest possible number and variety of individuals who have had an impact, directly or indirectly, on Starknet. The Foundation will allocate STRK to nearly 1.3 million addresses, with Starknet users receiving more than 50% of the STRK dedicated to this round of Provisions. + + * **Transparency:** Criteria for distribution can be found in the [Provisions blog post](https://www.starknet.io/en/content/starknet-provisions-program), and the resulting recipients and their token allocation will be [made public](https://github.com/starknet-io/provisions-data/). + + * **Expanding Ethereum adoption:** Allocation will aim to expand Ethereum and blockchain to new audiences, including those outside the blockchain ecosystem. This aligns with Starknet’s vision of facilitating the mass adoption of Ethereum and decentralized protocols more broadly. + + * **Sybil resistance:** The Provisions program aims, as much as possible, to avoid rewarding gamification and achieve Sybil resistance. The objective of this is to ensure the influence that comes with STRK governance votes correlates with the contribution of individuals and projects. + - label: "Which groups are considered to have made contributions to Starknet and + are eligible to claim STRK via Provisions? Why were those groups + chosen? " + body: >- + Provisions allocations are available to groups and individuals who + have made genuine contributions to Starknet, by enhancing the quality + and features of the Starknet stack and ecosystem, of Ethereum, and of + select open-source software projects.  + + + Below are the groups of those who are considered to have made meaningful contributions: + + + * **Starknet stack & ecosystem contributors** - The Starknet Foundation is committed to recognizing individuals or groups who have engaged with and battle-tested the Starknet stack. For this reason, the following groups are eligible for Provisions: + + * Starknet Users + * Starknet Ecosystem Contributors (approved members of the [ECMP](https://community.starknet.io/t/announcing-the-early-community-member-program/102092) plan) + * Starknet Developers + * **StarkEx users** - The users of StarkEx-powered dApps contributed to testing the robustness of certain components that are part of the Starknet stack, including the STARK proof system and Cairo, Starknet’s native programming language. Their interactions with early-stage STARK technology helped to fortify the foundations of Starknet. + + * **Ethereum developers and stakers** - In an industry first, the Starknet Provisions program will distribute tokens to Ethereum stakers—solo stakers and those who staked through liquidity pools—for their contribution to Ethereum’s security. Starknet uses Ethereum for settlement and data availability thanks to the decentralization and security it provides. Starknet and its Ethereum-level security are possible thanks to the pioneering work of Ethereum's community. For this reason, members of the following groups are eligible for Provisions: + + * Ethereum Protocol Guild members + * Ethereum PoS stakers: Solo stakers & those who staked through liquidity pools + * Ethereum developers + * Authors of Ethereum Improvement Proposals (including ERCs) + * **Open-source developers** - Blockchain infrastructure, including Ethereum and Starknet, emerged as a result of previous science and engineering advances that were built by developers of projects that are now public goods. For this reason, the following group is eligible. + + + A more detailed review of the groups mentioned above and the criteria that qualify members of these groups to be eligible for Provisions can be found in the [Provisions blog post](https://www.starknet.io/en/content/starknet-provisions-program). + - label: Why was it decided to allocate Provisions to Ethereum stakers? + body: Ethereum stakers are the reason Ethereum, and by extension Starknet, are + as secure as they are today. Those who staked before the Merge took a + considerable risk and leap of faith in the Ethereum network, as the + successful launch of Ethereum 2.0 was not yet a certainty. This risk + was even more substantial for solo stakers. + - label: Why was it decided to allocate Provisions to developers of non-crypto + open-source projects? + body: Starknet stands on the shoulders of giants, among them a myriad of + open-source projects that have become the public goods of cyberspace. + It is not only fair, but also critical to the open-source ecosystem, + that the individuals behind these projects are supported. + - label: What are the guidelines for the different tiers in the allocation to + Starknet users? + body: >- + + + Allocation to Starknet users comes in different tiers, all aimed at rewarding users whose feedback helped to harden Starknet going forward. Those tiers were determined by their level of activity on the network. The Starknet Foundation checked three metrics for eligible users: + + + * **Months of use** - Users who engaged with Starknet actively participated in improving the network by providing vital feedback during its early stages.  + + * **Contract interactions** - Users who interacted with a greater number of contracts can provide a wider breadth of feedback. + + * **Cumulative transaction volume** - Users who transacted at higher volumes show greater commitment to the network. + + + More concretely we use the the following points system: + + + * All eligible addresses get one point.  + + * Further points are allocated as follows: + + + ![](/assets/screen-shot-2024-02-14-at-10.54.09.png) + + + Then, each address gets allocation according to the following mapping: + + + ![](/assets/screen-shot-2024-02-14-at-10.56.39.png) + - label: What are the guidelines for the different tiers in the allocation to the + Early Community Member Program (ECMP) recipients? + body: >- + The evaluation committee evaluated individuals and projects for the + Early Community Member Program (ECMP) based on four essential + criteria: + + + * Reach/impact: Refers to the extent to which the contributor’s work has spread throughout the community. It may encompass things like the number of people using or relying on their code, engaging with their content, or following their thought leadership. + + * Importance: Evaluates the significance of a contributor’s work within the community or a specific project. This means focusing on how essential a contributor’s work is to the success of a project or how influential they are in shaping the direction and development of the ecosystem. + + * Effort: Assesses the amount of time and energy a contributor has put into their contributions. This is not limited to coding. It may also include community support, mentoring, and engaging with others to share knowledge. + + * Originality: Looks at how unique or innovative a contributor’s work is. This can include creating new algorithms, methods, or tools that haven’t been seen before, or approaching existing problems in a novel way. + + + For more information on ECMP criteria, click [here](https://community.starknet.io/t/announcing-the-early-community-member-program/102092). + - type: accordion + heading: Distribution and Eligibility + blocks: + - label: What is the total amount of STRK tokens distributed? + body: The initial phase of the Provisions program will distribute 726 million + STRK out of 900 million designated for the Provisions program as a + whole. Tokens not claimed within 4 months (until June 20th, 2024) of + this first phase will be reallocated for future distribution rounds. + Zooming out, the amount designated for Provisions is part of a total + of 1.8 billion STRK dedicated to the community overall. + - label: How many recipients are eligible for the first round of Provisions? + body: A total of 1,297,738 addresses are eligible for Provisions. In addition to + recipients who are eligible to claim STRK directly to their accounts + via Provisions, Ethereum stakers who staked through liquidity pools + will be able to receive their allocations through those pools. + - label: Will there be a public list of recipient addresses and the number of + tokens received? + body: Yes, you can find it + [here](https://github.com/starknet-io/provisions-data/). + - label: "How many tokens are distributed to each eligible recipient? " + body: >- + The number of tokens allocated to each eligible recipient varies + between 111.1 STRK and 200,000 STRK, depending on the category.  + + + The size of the Provisions allocation is determined by the effort exerted by the category’s members to contribute to the network’s robustness (e.g. contributing code to the infrastructure of the network requires significant effort and skill). The number allocated is tied to the impact of the contribution on Starknet, as well as the resources spent to make it. Contribution to Starknet is rewarded with more tokens than a contribution to Ethereum, which is rewarded with more tokens than a contribution to non-crypto projects. + - label: What proportion of the total allocation is distributed to each eligible + category? + body: |- + See the below diagram for the breakdown of each category’s allocation. + + ![](/assets/provisions-allocations-pie-final.jpeg) + - label: How can I check my eligibility for Provisions? + body: Recipients can check their eligibility for Provisions in the Provisions + portal at . + - label: When was the snapshot of recipients’ addresses taken for Provisions? + body: >- + The snapshot date differs between categories: + + + * For Ethereum stakers, the snapshot date is the date of the Merge (September 15th, 2022). The Merge was a turning point in Ethereum’s maturity, and stakers that staked prior to the Merge showed significantly more faith in Ethereum compared with stakers that began staking only when the protocol was mature. + + * For Starknet users, the snapshot date is in the recent past: November 15th, 2023. + + * For StarkEx users, the snapshot date is June 1st, 2022, as was determined and communicated in [part 3](https://medium.com/starkware/part-3-starknet-token-design-5cc17af066c6) of the Starknet Decentralization Roadmap. + - label: "Can one person be eligible for Provisions in more than one category? " + body: Recipients who are eligible for Provisions in more than one category can + receive tokens for each category in which they qualify. + - label: How can someone claim STRK via Provisions? + body: >- + + + * Provisions can be claimed via the Provisions portal. Recipients who have an eligible Starknet or Ethereum address can also claim by interacting directly with the Provisions smart contract if they choose. Note: The Starknet Foundation will only cover fees for those claiming via the Provisions portal. + + * Eligible ETH stakers who staked via liquidity pools need to contact their liquidity pools and claim their provisions through them. + + * Recipients will need to claim their Provisions allocations no later than four months (until June 20th, 2024) after Provisions launches on Mainnet.  + + * Recipients claiming through the Provisions portal will need to claim with their [Starknet wallet](https://www.starknet.io/en/ecosystem/wallets). **Make sure your Starknet wallet is up to date with its latest version.**  + + * Beware of scams and make sure you follow only the official communication channels and interact with the official Provisions portal, as found in the Starknet [Foundation’s official Provisions blog post](https://www.starknet.io/en/content/starknet-provisions-program) and [X (formerly Twitter) announcement](https://twitter.com/StarknetFndn/status/1757676598730342761). Here are the official Starknet communication channels: + + * Starknet on X (formerly Twitter): + * Starknet Hub: + * Starknet Foundation on X:  [https://twitter.com/StarknetFndn](https://twitter.com/Starknetfndn) + * Provisions portal: + - label: What is the starting date for the distribution of Provisions? + body: STRK will become available for claiming on Starknet Mainnet starting at + 12pm (UTC) on February 20, 2024. + - label: What is the last date for claiming STRK via Provisions? + body: Those eligible for Provisions may claim them within four months of the + date on which claiming is enabled (until June 20th, 2024). Tokens not + claimed in this first phase will be reallocated via the Starknet + Foundation for future distribution rounds. + - label: If I staked on Ethereum through a liquidity pool, how do I claim STRK via + Provisions? + body: Those who used liquid-staking mechanisms or centralized exchanges to stake + on Ethereum may receive distribution from the relevant pools and + exchanges. Validators operated by pools and exchanges—as determined by + the Starknet Foundation via data from [Rated + Network](https://www.rated.network/?network=mainnet&view=pool&timeWindow=1d&page=1&poolType=all)—are + eligible to claim 360 STRK to be distributed among their pre-Merge + stakers. Please contact your staking service for more information. + - label: Are there any fees associated with claiming STRK via Provisions? + body: No. Fees for Provisions-related transactions claimed via the Provisions + portal, including the transaction for claiming STRK and depositing it + in the Starknet wallet, are paid by the Starknet Foundation. + - label: What happens to Provisions allocations that are not claimed? + body: Allocations that are not claimed during the four-month claiming period of + this round of Provisions will be reclaimed to the pool and distributed + in future rounds and/or programs. + - label: Are there any jurisdictional restrictions for receiving Provisions? + body: >- + Yes. Due to regulatory constraints and/or an uncertain regulatory + environment, Provisions and STRK will not be available to: + + + * Any person or entity in Russia, Cuba, Iran, North Korea, Syria, Lebanon, or any person or entity on the Specifically Designated Nationals and Blocked Persons List maintained by the U.S. Treasury’s Office of Foreign Assets Control (OFAC). + + * Any person or entity on the U.K. Sanctions List maintained by His Majesty’s Treasury Office or Office of Financial Sanctions Implementation (OFSI).  + + * At this time, Provisions are also unavailable to U.S. Persons, including U.S. citizens, U.S. residents (tax or otherwise), green card holders, and corporate entities with a majority of U.S. ownership or a principal place of business or registered office in the United States of America. + + + For more information about the restrictions applicable to Provisions, please refer to the [terms of use](http://starknet.io/en/provisions-terms-of-use). + - label: Are there any tax implications for receiving Provisions? + body: There may be tax implications for the recipients of Provisions, which may + vary by jurisdiction. It is your sole responsibility to determine + whether, and to what extent, any taxes apply to any transactions you + conduct in connection with your use of the service, and to withhold, + collect, report and remit the correct amounts of taxes to the + appropriate tax authorities. Please consult a tax advisor in your + country. + - label: Why do different staking categories receive different allocations? + body: >- + Solo stakers are allocated more per validator compared with stakers + that used a CEX or staking pool. This is especially true for solo + stakers before Genesis. Why?  + + + We appreciate the risk all stakers took upon themselves, and solo stakers that couldn’t cash out in any form took a much larger leap of faith with Ethereum compared to their counterparts on staking pools or CEXes. Solo stakers do, however, have a cap per deposit address, while CEXes do not. That’s because we want to limit the allocation a single entity receives, especially since the classification provided by [rated.network](https://www.rated.network/?network=mainnet&view=pool&timeWindow=1d&page=1&poolType=all) is heuristic and might contain false positives. There were also validators that are not solo stakers, yet their identity is unknown. These validators may claim through the Provisions portal but receive the same allocation as staking pools of CEXes (while also adhering to the solo-staker category’s cap). + - label: "I’m unable to claim through the Provisions portal because:" + body: >- + I’m receiving a prompt that says “your wallet is not up to date” or + “your account is not up to date.”  + + + * In this case, try the following: + + * Make sure you’ve installed the latest versions of Chrome and all relevant extensions. + + * If your wallet extension has been reset and you receive this message, your wallet should ask you to upgrade your account. Follow the wallet’s instructions. + * If the above doesn’t work, please contact us on [Discord](https://discord.com/invite/qypnmzkhbc) or [Telegram](https://t.me/+efDitGbILOFmMDNk). + + + The portal doesn’t offer my Ethereum wallet as a connection option. + + + * A guide on how to claim Provisions allocations directly from your Ethereum wallet will be published soon after claim opens. + + + ArgentX Wallet displays: “Account is deprecated - reach out for support.” + + + * Reach out to ArgentX for support at + + + The portal doesn’t offer my Starknet wallet as a connection option. + + + Please contact us on [Discord](https://discord.com/invite/qypnmzkhbc) or [Telegram](https://t.me/+efDitGbILOFmMDNk). + - label: "What is the reason for implementing Sybil-resistance mechanisms in the + Provisions allocation? " + body: >- + The Provisions program aims to empower those who contributed to the + advancement and achievements of Starknet. Such contributions may have + been made by users, developers, community members, and others. + Inauthentic interaction with the network, including the use of bots, + is not seen as a genuine contribution as it repeats the same action + multiple times, and not in a unique and natural manner. Such + interaction does not yield insights that will improve the network for + those who will later on interact with it in a genuine manner.  + + + Given that the STRK token will be used in governance votes, allocation needs to be based on genuine contribution, which includes authentic interaction with the network. The Provisions criteria, therefore, aim to exclude non-genuine interaction. + - label: What has been done to ensure Sybil resistance? + body: >- + For Starknet users, the Starknet Foundation has partnered with [Trusta + Labs](https://www.trustalabs.ai/) to provide Sybil-resistant lists of + users.  + + + For StarkEx users, the StarkWare team has provided the Starknet Foundation with a usage snapshot it took prior to the announcement of the Starknet tokens. The cut-off date for StarkEx users was June 1st, 2022, as stated in the Starknet Decentralization series ([Part 1](https://www.starknet.io/en/posts/governance/part-1-starknet-sovereignty-a-decentralization-proposal), [Part 2](https://www.starknet.io/en/posts/governance/part-2-a-decentralization-and-governance-proposal-for-starknet), and [Part 3](https://www.starknet.io/en/posts/governance/part-3-starknet-token-design)). + + + For more information on Sybil-resistance detection, click [here](https://github.com/starknet-io/provisions-data/). + - type: accordion + heading: Governance + blocks: + - label: Can Provisions recipients participate in Starknet governance votes? + body: "**Yes. Following Provisions, recipients will also be able to participate + in voting on various issues that will shape Starknet’s future.**" + - label: Can STRK tokens obtained as part of Provisions be delegated or + transferred to others? + body: >- + To use STRK on Starknet for governance, token holders must wrap their + STRK to vSTRK, a unique token solely dedicated to governance + processes. + + + vSTRK tokens on Starknet, and STRK tokens on Ethereum, can be delegated to others for governance purposes. This means a recipient can let someone else use the voting power of the tokens they received in order to participate in governance votes on their behalf. + - label: What is vSTRK? + body: >- + Starknet will have a unique token for governance processes (vSTRK), + which will be used for voting. Anyone with STRK on Starknet can lock + it in the vSTRK contract at a 1:1 ratio of STRK to vSTRK to + participate in governance votes. vSTRK can also be converted back to + STRK. For more information on vSTRK, please [read this + overview](https://governance.starknet.io/learn/vstrk_overview) and + about [why vSTRK is + necessary](https://governance.starknet.io/learn/why_is_vstrk_necessary). + + + More information on Starknet’s governance can be found in [Starknet Governance Hub](https://governance.starknet.io/). + - label: Can I stake STRK? + body: Not yet. Updates about staking STRK on Starknet after the network + transitions to a proof-of-stake (PoS) model will be shared in due + course. + - label: Will any major lockup periods for StarkWare employees and investors or + the Starknet Foundation end soon? + body: To align the long-term incentives of the core contributors and investors + of StarkWare with the interests of the Starknet community, and + following common practice in decentralized ecosystems, all tokens + allocated in previous allocation plans to core contributors and + investors will be released from lockup according to the schedule that + appears in the [STRK tokenomics + document](https://docs.starknet.io/documentation/architecture_and_concepts/Economics-of-Starknet). + - label: "What are the expected plans for minting new coins of STRK and what will + be the inflation mechanism? " + body: >- + Starknet is on the path to decentralization and a proof-of-stake (PoS) + model that will reward stakers for participating in the network’s + governance, security, and overall maintenance. Like any PoS model, + Starknet will need to control the issuing of new tokens to encourage + participation in network maintenance and manage inflation.  + + + StarkWare has proposed a minting curve that aims to strike a balance between the needs of rewarding stakers and setting inflation expectations on Starknet. Like all changes affecting the Starknet protocol, this is merely a proposal. If adopted it will need to pass community and governance approval. For more information on StarkWare’s minting proposal, read [here](https://starkware.co/resource/a-token-minting-proposal-to-manage-inflation/). + - label: "Will there be another round of Provisions? If so, who will be eligible? + " + body: >- + The initial round of the Provisions program distributes 726 million of + the 900 million STRK allocated for the wider Provisions program + mentioned in the [original STRK allocation + post](https://medium.com/starkware/part-3-starknet-token-design-5cc17af066c6). + Unclaimed tokens after the four-month distribution period of the first + round of Provisions will be redistributed in the future.  + + + It is yet to be decided how and when the remainder of the amount allocated for the wider Provisions program will be distributed. The Starknet Foundation will decide and may announce further plans around Provisions in due course. + - label: What other programs will there be for token allocation to the community? + body: >- + The Starknet Foundation has allocated a total of 1.8 billion STRK (18% + of the total STRK supply) to distribute to the community. During the + first round of Provisions, the Starknet Foundation will distribute + more than 700 million out of 900 million STRK set aside for the + Provisions program. Tokens that aren't claimed during this period will + be distributed to the community in the future. + + + Future plans for STRK distribution to the community also include rebates, initiatives of various special community committees dedicated to DeFi, gaming, and more.  + + + More details for future distribution will be shared at a later date. + - label: What measures are in place to prevent fraud or abuse? + body: >- + The Provisions program was carefully developed with security in mind, + utilizing secure software development life cycle methodologies.  + + + Additionally, the systems and smart contracts related to Provisions underwent extensive code auditing and penetration-testing procedures, both internally and externally (by Trail of Bits and Zellic). Furthermore, the systems are monitored to detect any malicious attempts or bugs, with prevention and recovery mechanisms in place for various scenarios.  + + + We are aware of the fact that there may be scam attempts by creating fake websites and/or social media profiles. We have been and still are taking measures to proactively identify such activities. Users are advised to stay alert and beware of scam attempts. + + + If you have encountered any suspicious activity or bugs, please report them to the community managers on the [Starknet Discord server](https://starknet.io/discord/). + - type: accordion + heading: Communication and Feedback + blocks: + - label: What should I do if I have additional questions or feedback? + body: Please contact the community managers on the [Starknet Discord + server](https://starknet.io/discord/) or reach out to us at + provisionsupport@starknet.org. + - label: How does the Starknet Foundation plan to communicate updates about + Provisions? + body: All future communications will come from the official + [Starknet](https://twitter.com/Starknet) and [Starknet + Foundation](https://twitter.com/StarknetFndn)’s X (formerly Twitter) + accounts. + - label: How can I get involved? + body: >- + + + We invite everyone to join and be involved in the Starknet community.  + + + * Engage with the community on [X](https://twitter.com/starknet?lang=en) and the [Starknet Discord server](http://starknet.io/discord/), or join the [Starknet Community Support Telegram Group](https://t.me/+efDitGbILOFmMDNk). + + * [Start building on Starknet](https://www.starknet.io/en/developers) + + * [Join a Starknet event](https://www.starknet.io/en/events) + - type: heading_container + heading_variant: h3 + blocks: [] + heading: Starknet Foundation + - type: accordion + heading: "" + blocks: + - label: What is the Starknet Foundation? + body: >- + Starknet is a permissionless, decentralized Layer 2 (L2) Validity + Rollup intended to scale Ethereum while retaining Ethereum’s security + and decentralization. In keeping with that mission, the Foundation was + established as an independent entity to advance the shared technology + that is Starknet. Additionally, as a not-for-profit entity with a + narrow mission: to advance Starknet as a public good for all, and + maintain it as such for years to come. + + + The Foundation launches with 50.1% of the initial Token supply to ensure the network’s resources are effectively deployed towards the following goals: the maintenance and security of Starknet as a public good; the continued development and expansion of the network; and support for a culture of constructive collaboration between developers. + + + For more information on the Foundation’s mission, first steps, and board, see the Foundation’s [“Hello World” post](https://medium.com/@StarkNet_Foundation/welcome-to-the-world-starknet-foundation-7bd55d5dbc59) and [StarkWare’s complementary post](https://medium.com/starkware/introducing-the-starknet-foundation-bd4b4379fbb). + - type: heading_container + heading_variant: h3 + blocks: [] + heading: General information + - type: accordion + heading: "" + blocks: + - label: I want to get involved in the Starknet community. How do I do that? + body: If you are excited about StarkNet and its decentralization and wish to + participate in the process, please join the builders on StarkNet + [Discord](https://starknet.io/discord) and [Starknet community + forum](https://community.starknet.io/) + - label: I came across a fraud attempt. How can I warn others against it? + body: You can report scams and check for other reports of scams in the + scam-report channel on the [Starknet + Discord](https://starknet.io/discord) server.