diff --git a/docs/pages/build/cli/deploy.mdx b/docs/pages/build/cli/deploy.mdx index 7158191..859621b 100644 --- a/docs/pages/build/cli/deploy.mdx +++ b/docs/pages/build/cli/deploy.mdx @@ -2,11 +2,12 @@ The `deploy` command is used to deploy your Micro-Rollup to the Vulcan network as well as set the initial genesis conditions on-chain. -It performs the following 3 operations: +It performs the following 4 operations: -1. Extracts and compiles the State Machine into Wasm ([`compile`](/build/cli/compile) command) -2. Creates a commitment of the Wasm (binary) and genesis state (JSON), signs it using the operator private key and sends it to the `AppInbox` contract to initialize the application -3. Uploads the Wasm binary to Vulcan. +1. Reads the `stackr.config.ts` file for your project's configuration such as the operator account, L1 and Vulcan RPC URLs, and `deployment.json` file for your project's registration details such as the app ID and app inbox contract address. +2. Extracts and compiles the State Machine into Wasm ([`compile`](/build/cli/compile) command) +3. Creates a commitment of the Wasm (binary) and genesis state (JSON), signs it using the operator private key and sends it to the `AppInbox` contract to initialize the application +4. Uploads the Wasm binary to Vulcan. :::warning After deployment, if you make any changes to the genesis state or state machine code, you'd need to re-register and re-deploy your application. diff --git a/docs/pages/build/cli/init.mdx b/docs/pages/build/cli/init.mdx index 9ac8f2b..3c53915 100644 --- a/docs/pages/build/cli/init.mdx +++ b/docs/pages/build/cli/init.mdx @@ -46,8 +46,11 @@ The project directory will look something like this depending on the template - │ │ ├── machine.ts │ │ ├── mru.ts │ │ ├── state.ts -│ │ └── transitions.ts -│ ├── index.ts -│ ├── stackr.config.ts -│ └── deployment.json +│ │ ├── transitions.ts +│ │ └── hooks.ts +│ └── index.ts +│── .env.example +└── stackr.config.ts ``` + +This project structure is defined [here](/build/zero-to-one/build-your-first-mru#project-structure). \ No newline at end of file diff --git a/docs/pages/build/cli/introduction.mdx b/docs/pages/build/cli/introduction.mdx index 74b847d..4a00d94 100644 --- a/docs/pages/build/cli/introduction.mdx +++ b/docs/pages/build/cli/introduction.mdx @@ -26,7 +26,7 @@ USAGE $ stackr [COMMAND] COMMANDS - add Adds Bridge or Hook to the AppInbox contract of your MRU + add Add a Bridge contract to the AppInbox contract of your MRU compile Compile yours Stackr State Machines to portable WASM modules. deploy Deploy your MRU to Vulcan help Display help for stackr. diff --git a/docs/pages/build/cli/register.mdx b/docs/pages/build/cli/register.mdx index 281f037..d191705 100644 --- a/docs/pages/build/cli/register.mdx +++ b/docs/pages/build/cli/register.mdx @@ -1,16 +1,32 @@ # `register` [Register your Micro-Rollup with Stackr] -The `register` command is the most crucial command in the Stackr SDK. It is used to register your Micro-Rollup with the Stackr on-chain registry. +The `register` command is used to add your Micro-Rollup to the Stackr on-chain registry. :::info **Few details to note** - You don't need to register your application during development with the Stackr SDK. -- It's recommended to develop and test your application in sandbox mode. +- It's recommended to develop and test your application in [sandbox mode](/build/zero-to-one/run-it/#lets-run--sandbox-mode). - It's recommended to register your application only once you are done with the development. - After registration and deployment, if you make any changes to the genesis state or state machine code, you'd need to re-register and re-deploy your application. ::: +It performs the following 3 operations: + +1. Reads the `stackr.config.ts` file for your project's configuration such as the operator account, registry contract address, L1 and Vulcan RPC URLs +2. Sends a transaction signed with the operator private key to Stackr's registry contract on the L1 +3. The Stackr registry contract assigns a new app ID and deploys a new `AppInbox` contract for your micro-rollup. The operator address is also set as the owner of this contract. + +:::tip +**AppInbox contract** 📝 + +The AppInbox contract on the L1 acts as the settlement contract for your micro-rollup chain. Some of its responsibilites: + +- It is the source of truth for all critical information of your app such as the state machine hash, genesis state hash, current block height, current state root and more. +- The blocks produced by your app are periodically batched (in sequence) and sent to it for verification and settlement. +- It only accept blocks that are signed by the micro-rollup operator. +::: + ## Usage ```bash @@ -34,8 +50,6 @@ EXAMPLES npx @stackr/cli@latest register ``` -This command reads your `stackr.config.json` file for project details and sends a transaction to Stackr's on-chain registry to deploy a new `AppInbox` contract for the application. All the blocks that the app produces will be sent to this contract. - ### Deployment cost In addition to gas fees, the deployment cost for the `AppInbox` contract is 0.001 ETH. Make sure you have enough balance in your account to deploy the contract. This ETH is sent to the Vulcan operator. diff --git a/docs/pages/build/cli/transfer-ownership.mdx b/docs/pages/build/cli/transfer-ownership.mdx index b7cef55..d8088d3 100644 --- a/docs/pages/build/cli/transfer-ownership.mdx +++ b/docs/pages/build/cli/transfer-ownership.mdx @@ -2,6 +2,10 @@ The `transfer-ownership` command is used to transfer ownership of the AppInbox contract to a new address. +:::info +Only the current operator is allowed to transfer ownership to a new address. +::: + ## Usage ```bash @@ -36,7 +40,7 @@ You'll be prompted to enter the address of the new owner. ? Enter the address of the new owner ``` -Enter the address and hit enter. +Enter the address and hit enter. Output if it passes all the checks: diff --git a/docs/pages/build/framework/config.mdx b/docs/pages/build/framework/config.mdx index 1cfa086..779f1c9 100644 --- a/docs/pages/build/framework/config.mdx +++ b/docs/pages/build/framework/config.mdx @@ -87,7 +87,7 @@ When running an MRU in sandbox mode, the rollup creates a temporary SQLite datab 2. `deploymentFile`: Relative path to the deployment file containing the `appId`, `appInbox` and `chainId` of the micro-rollup. Defaults to `deployment.json`. -This file is created automatically during registration of the micro-rollup with the registry contract using `stackr register` command. See [Register](/build/cli/register) for more details. +This file is created automatically during registration of the micro-rollup with the registry contract using [`stackr register`](/build/cli/register) command. --- @@ -112,25 +112,29 @@ This file is created automatically during registration of the micro-rollup with 5. `operator`: Contains the parameters for the operator module. -- `accounts`: Contains the private key of the operator account. This private key is used for registration and batch signing +- `accounts`: Contains the private key of the operator account. This private key is used for registration, deployment, and signing on incoming actions and proposed blocks. --- -6. `domain`: Contains the parameters for the EIP-712 domain. +6. `domain`: Contains the parameters for the [EIP-712](https://eips.ethereum.org/EIPS/eip-712) domain. - `name`: The name of the micro-rollup - `version`: The version of the micro-rollup - `salt`: A random salt value -The other fields, `chainId` and `verifyingContract`, required by [EIP-712](https://eips.ethereum.org/EIPS/eip-712) domain definition are taken automatically from the given deployment file. +The other fields, `chainId` and `verifyingContract`, required by EIP-712 domain definition are taken automatically from the given deployment file. -This is used for EIP-712 Typed Signature over the inputs of actions. +This is used for EIP-712 Typed Signature over the action payloads submitted by users. + +:::note +Note that the `domain` object here is incomplete and should not be used directly in your code. See [Accessing config values](/build/framework/config#accessing-config-values). +::: --- 7. `datastore`: Contains the parameters for the datastore module. -This is used for local storage of the micro-rollup state, actions and blocks +This is used for local storage of the micro-rollup state, actions and blocks. --- diff --git a/docs/pages/build/zero-to-one/build-your-first-mru.mdx b/docs/pages/build/zero-to-one/build-your-first-mru.mdx index 0dacf9a..3417b04 100644 --- a/docs/pages/build/zero-to-one/build-your-first-mru.mdx +++ b/docs/pages/build/zero-to-one/build-your-first-mru.mdx @@ -61,13 +61,77 @@ Get started by running the following commands: ``` +Now that we have a local copy of a micro-rollup project, let's understand its architecture. + +## Project Structure + +Our pre-defined project templates use the default and recommended project structure which is as given: + +```bash +├── src +│ ├── stackr +│ │ ├── machine.ts +│ │ ├── mru.ts +│ │ ├── state.ts +│ │ └── transitions.ts +│ └── index.ts +│── .env.example +└── stackr.config.ts +``` + +- The root directory contains configuration files of your project. + - `.env.example` is a template containing the necessary environment variables required by the micro-rollup. + - `stackr.config.ts` exports the [`StackrConfig`](/build/framework/config) object defining the configuration of the your micro-rollup. +- The `src` directory contains source code files of your project. + - `index.ts` is the main entrypoint file containing code to run your project. +- The `src/stackr` directory contains the source code files specific to defining a micro-rollup with Stackr SDK. + + - `machine.ts` contains the custom state machine class (extending [`StateMachine`](/build/framework/state-machine/introduction)) instance for your app. + + - Please make sure to export the `StateMachine` object from this file in one of the following ways: + + :::code-group + + ```ts [machine.ts (declaration export)] + export const myMachine = new StateMachine({ ... }); + ``` + + ```ts [machine.ts (named export)] + const myMachine = new StateMachine({ ... }); + + export { myMachine }; + ``` + + ```ts [machine.ts (default export)] + const myMachine = new StateMachine({ ... }); + + export default myMachine; + ``` + + ::: + + - `state.ts` exports the custom state class (extending [`State`](/build/framework/state-machine/state)) for your micro-rollup. + - `transitions.ts` exports the [State Transition Functions](/build/framework/state-machine/state-transitions) (as `Transitions`) for your micro-rollup. This file may be omitted if no transitions are defined. + - `mru.ts` exports the [`MicroRollup`](/build/framework/micro-rollup) instance which is the controller for your micro-rollup. + +:::info +Note that + +1. It's recommended that the `machine.ts`, `state.ts`, and `transitions.ts` files shouldn't import anything from `@stackr/sdk` and instead use `@stackr/sdk/machine` for the `StateMachine`, `State`, `Transitions`, `Hooks` and other utility classes. +2. We don't enforce any specific restrictions on the naming of the files, but keeping the above set of files in the `src/stackr` directory is recommended. +3. It's recommended to not keep the `State` and `StateMachine` classes in the same file as this would cause circular dependency issue when importing the `State` class for writing STFs in `transitions.ts`. +::: + ## Setting up your config +Since we are using the "Counter" template for this tutorial, the source code is already there so we only need to setup the micro-rollup configuration before we can run it. + ### Setup `.env` - Let's `cd` into the project directory and first copy the `.env.example` file to `.env`. - Update the following values in the `.env` file. - - You can get the latest values listed in the [Providers and RPCs](/build/references/providers-and-rpc) page. + - `PRIVATE_KEY` is the hex-encoded private key of the Ethereum address that will act as the rollup operator. This private key is used for registration and deployment of your micro-rollup, and to sign on incoming actions and proposed blocks. + - For the other fields, you can get the latest values listed in the [Providers and RPCs](/build/references/providers-and-rpc) page. ```bash [.env] PRIVATE_KEY= @@ -78,90 +142,54 @@ DATABASE_URI= ``` :::info -`PRIVATE_KEY` is the private key of account you want to register and deploy the rollup with. This address acts as the Operator. +Note that -We don't store your private key anywhere, it is stored in your local environment. It's only used to sign on incoming actions and proposed blocks. +1. We don't store or upload your private key anywhere, it is stored only in your local environment. +2. No paying transactions would be made from your private key in this tutorial so feel free to use any existing Ethereum account or create a new one without any ETH balance. ::: ### Setup `stackr.config.ts` Now let's dive into the `stackr.config.ts` file. -- By default, the micro-rollup is configured to run in Sandbox mode (`isSandbox`). This is explained in the next section. -- The main properties you might wish to tune here are `blockSize` and `blockTime` of your micro-rollup. - You can also set `allowEmptyBlocks` to `true` if you want your micro-rollup to always produce blocks every `blockTime` milliseconds (even when there are no actions). +- By default, the micro-rollup is configured to run in Sandbox mode. This will be explained in the next section. ```ts [stackr.config.ts] - sequencer: { - blockSize: 16, - blockTime: 10, - allowEmptyBlocks: true - } + const stackrConfig: StackrConfig = { + isSandbox: true, + /* ... */ + }; ``` -- The `domain` in the config is used to create EIP-712 Typed Signature over the inputs of actions. Feel free to tune this as per your requirements. +- Tune the sequencer as per your needs. + - `blockSize`: The number of actions that the sequencer picks up from the pool to build a block. + - `blockTime`: The time interval (in milliseconds) after which the sequencer picks up actions from the pool to build a block. + - `allowEmptyBlocks`: A flag to allow creation of empty blocks every `blockTime` even when there are no actions. Defaults to `false`. ```ts [stackr.config.ts] - domain: { - name: "", - version: "", - salt: "0x0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef" - } - ``` -- You can refer to [Stackr Config](/build/framework/config) section for the explanation of every available configuration property. - -## Project Structure - -- The `src` directory contains the code for your application. -- The `src/stackr` directory contains the code for the State Machines and State Transition Functions. - -We don't enforce any specific restrictions on the naming of the files, but keeping files related to the State Machines and STF in the `src/stackr` directory is recommended. - -```bash -├── src -│ ├── stackr -│ │ ├── machine.ts -│ │ ├── mru.ts -│ │ ├── state.ts -│ │ └── transitions.ts -│ ├── index.ts -│ ├── stackr.config.ts -│ └── deployment.json -``` - -- `machine.ts` contains the [`StateMachine`](/build/framework/state-machine/introduction) and [`State`](/build/framework/state-machine/state) classes for your application. - - - Please make sure to export the `StateMachine` object from this file in one of the following ways: - - :::code-group - - ```ts [machine.ts (declaration export)] - export const myMachine = new StateMachine({ ... }); - ``` - - ```ts [machine.ts (named export)] - const myMachine = new StateMachine({ ... }); - - export { myMachine }; + const stackrConfig: StackrConfig = { + /* ... */ + sequencer: { + blockSize: 16, + blockTime: 10, + allowEmptyBlocks: false, + }, + /* ... */ + }; ``` - - ```ts [machine.ts (default export)] - const myMachine = new StateMachine({ ... }); - - export default myMachine; +- The `domain` object contains some fields for [EIP-712](https://eips.ethereum.org/EIPS/eip-712) domain definition. + - `name`: The name of the micro-rollup + - `version`: The version of the micro-rollup + - `salt`: A random salt value + ```ts [stackr.config.ts] + const stackrConfig: StackrConfig = { + /* ... */ + domain: { + name: "", + version: "", + salt: "0x0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef", + }, + /* ... */ + }; ``` - - ::: - -- `state.ts` contains the custom state class (extending [`State`](/build/framework/state-machine/state)) for your application. -- `transitions.ts` contains the [State Transition Functions (STF)](/build/framework/state-machine/state-transitions) for your application. -- `hooks.ts` contains the [Block Hooks](/build/framework/state-machine/block-hooks) for your application, if any. - -:::warning - -Note that: - -1. It's recommended that all 4 of the above files shouldn't import anything from `@stackr/sdk` and instead use `@stackr/sdk/machine` for the `StateMachine`, `State`, `Transitions`, `Hooks` and other utility classes. -2. It's recommended to not keep the `State` and `StateMachine` classes in the same file as this would cause circular-import issue when importing the `State` class for writing STFs in `transitions.ts`. - -::: +- You can refer to [Stackr Config](/build/framework/config) section for the explanation of every available configuration property. ## Next Steps