Skip to content

Commit

Permalink
Update building-orbit-faqs.json
Browse files Browse the repository at this point in the history
  • Loading branch information
shughesocl authored Nov 21, 2024
1 parent 025f9de commit 5e977cb
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions website/static/building-orbit-faqs.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
[
{"question": "Can I use Orbit to deploy a mainnet chain?","answer": "<p>\nYes! Arbitrum Orbit's core technology has undergone a comprehensive audit and is now able to support deployments to mainnet. You can read more about it <a href=\"https://docs.arbitrum.io/launch-orbit-chain/concepts/public-preview-expectations#arbitrum-orbit-is-mainnet-ready-but-deploy-to-testnet-first\">here</a>.\n</p>\n\n<p>\n\n</p>\n\n","key": "can-i-use-orbit-to-deploy-a-mainnet-chain"},
{"question": "How can I deploy an Orbit-based Layer 3 (L3) chain?","answer": "<p>\nCheck our <a href=\"https://docs.arbitrum.io/launch-orbit-chain/orbit-quickstart\">Quickstart</a> to learn how to launch your own Orbit chain today.\n</p>\n\n<p>\n\n</p>\n\n","key": "how-can-i-deploy-an-orbitbased-layer-3-l3-chain"},
{"question": "Do I need permission/license to launch an Orbit chain?","answer": "<p>\nYou can permissionlessly launch an L3 Orbit chain that settles to one of Arbitrum's Layer 2 (L2) chains. There is an emerging licensing structure will soon make it possible to permissionlessly launch an L2 Orbit chain that settles directly to Ethereum. Please get in touch with the Arbitrum Foundation or Offchain Labs for more information.\n</p>\n\n<p>\nNote that launching a testnet doesn't require any license.\n</p>\n\n<p>\n\n</p>\n\n","key": "do-i-need-permissionlicense-to-launch-an-orbit-chain"},
{"question": "Do I need permission/license to launch an Orbit chain?","answer": "<p>\nYou can launch any Orbit chain permissionlessly.
Nitro is licensed under a Business Source license, similar to DeFi protocols like Uniswap and Aave, among others. This license contains an Additional Use Grant that permits the permissionless deployment of Nitro software on blockchains that settle to Arbitrum One or Nova. However, Orbit chains that settle to a parent chain other than Arbitrum One or Nova are subject to additional licensing guidelines under the AEP.\n</p>\n\n<p>\nNote that launching a testnet doesn't require any license.\n</p>\n\n<p>\n\n</p>\n\n","key": "do-i-need-permissionlicense-to-launch-an-orbit-chain"},
{"question": "Does Arbitrum officially deploy and/or maintain L3s for external teams?","answer": "<p>\nNo. Teams are required to deploy and maintain their Orbit chains. There are, however, several RaaS (Rollup as a Service) providers that can deploy and maintain the Orbit chain for you.\n</p>\n\n<p>\n\n</p>\n\n","key": "does-arbitrum-officially-deploy-andor-maintain-l3s-for-external-teams"},
{"question": "Can I modify Orbit's underlying technology to customize my chain?","answer": "<p>\nYes, you can make any changes you require to the underlying Nitro code base.\n</p>\n\n<p>\n\n</p>\n\n","key": "can-i-modify-orbits-underlying-technology-to-customize-my-chain"},
{"question": "What Data Availability (DA) solutions are currently available for Orbit chains?","answer": "<p>\nArbitrum Orbit currently supports 3 different DA solutions:\n</p>\n\n<ul>\n<li>Rollup, posting data to the parent chain which ultimately posts the data to Ethereum.</li>\n<li>AnyTrust, posting data to a Data Availability Committee, selected by the chain owner.</li>\n<li>Celestia, posting data to <a href=\"https://blog.celestia.org/celestia-is-first-modular-data-availability-network-to-integrate-with-arbitrum-orbit/\">Celestia network</a>.</li>\n</ul>\n<p>\nNote that using AnyTrust gives the chain owner the most flexibility and cheapest fees.\n</p>\n\n<p>\n\n</p>\n\n","key": "what-data-availability-da-solutions-are-currently-available-for-orbit-chains"},
Expand All @@ -14,4 +15,4 @@
{"question": "Can I increase the maximum contract size for my Orbit chain?","answer": "<p>\nYes, Orbit supports an increased smart contract size limit of up to 96kB. You can use our <a href=\"https://github.com/OffchainLabs/arbitrum-orbit-sdk\">Orbit SDK</a> and configure the parameters <a href=\"https://github.com/OffchainLabs/arbitrum-orbit-sdk/blob/main/src/prepareChainConfig.ts#L29\">MaxCodeSize and MaxInitCodeSize</a> when calling <a href=\"https://github.com/OffchainLabs/arbitrum-orbit-sdk/blob/main/examples/prepare-node-config/index.ts#L43\">prepareNodeConfig</a>. Note that the smart contract size limit parameters can't be changed via upgrade after deployment.\n</p>\n\n<p>\n\n</p>\n\n","key": "can-i-increase-the-maximum-contract-size-for-my-orbit-chain"},
{"question": "How can I modify Nitro to force posting an invalid assertion and test the fraud proof mechanism?","answer": "<p>\nForcing an invalid assertion in the chain is not supported at the moment. However, if you're building Nitro locally, you can run the following test that goes through the whole rollup/challenge mechanism:\n</p>\n\n```shell\ngo test ./system_tests/ -tags=challengetest -run=TestChallenge\n\n```\n<p>\n\n</p>\n\n","key": "how-can-i-modify-nitro-to-force-posting-an-invalid-assertion-and-test-the-fraud-proof-mechanism"},
{"question": "What fee collectors can be configured on my chain?","answer": "<p>\nThere are 4 fee types that can be configured on an Orbit chain:\n</p>\n\n<ul>\n<li>L2 base fee: L2 execution fees corresponding to the minimum base price of the chain. This is paid to the infraFeeAccount, which can be set by calling <code>ArbOwner.setInfraFeeAccount()</code>.</li>\n<li>L2 surplus fee: L2 execution fees above the minimum base price (in the case of congestion). This is paid to the networkFeeAccount, which can be set by calling <code>ArbOwner.setNetworkFeeAccount()</code>.</li>\n<li>L1 base fee: Relative fees for posting a transaction on the parent chain. This is paid ultimately to the fee collector of the active batch poster. The batch poster can be set by calling <code>SequencerInbox.setIsBatchPoster()</code> on the parent chain. And a different fee collector for that batch poster can be specified by calling <code>ArbAggregator.setFeeCollector()</code>.</li>\n<li>L1 surplus fee: Any extra fees rewarded to the batch poster. This is paid to a specific L1RewardRecipient, which can be set by calling <code>ArbOwner.setL1PricingRewardRecipient()</code></li>\n</ul>\n<p>\nMore detailed information about fees can be found in the <a href=\"https://docs.arbitrum.io/arbos/l1-pricing\">L1 fees</a> and <a href=\"https://docs.arbitrum.io/arbos/gas\">L2 fees</a> pages.\n</p>\n\n<p>\nInformation about the precompiles methods can be found in the <a href=\"https://docs.arbitrum.io/build-decentralized-apps/precompiles/reference\">Precompiles reference page</a>.\n</p>\n\n","key": "what-fee-collectors-can-be-configured-on-my-chain"}
]
]

0 comments on commit 5e977cb

Please sign in to comment.