diff --git a/specs/interop/predeploys.md b/specs/interop/predeploys.md index a34872548..922144d5a 100644 --- a/specs/interop/predeploys.md +++ b/specs/interop/predeploys.md @@ -272,7 +272,7 @@ The `ConfigType` enum is defined as follows: ```solidity enum ConfigType { - GAS_PAYING_TOKEN, + SET_GAS_PAYING_TOKEN, ADD_DEPENDENCY, REMOVE_DEPENDENCY } @@ -280,11 +280,11 @@ enum ConfigType { The second argument to `setConfig` is a `bytes` value that is ABI encoded with the necessary values for the `ConfigType`. -| ConfigType | Value | -|---------------------|---------------------------------------------| -| `GAS_PAYING_TOKEN` | `abi.encode(token, decimals, name, symbol)` | -| `ADD_DEPENDENCY` | `abi.encode(chainId)` | -| `REMOVE_DEPENDENCY` | `abi.encode(chainId)` | +| ConfigType | Value | +|------------------------|---------------------------------------------| +| `SET_GAS_PAYING_TOKEN` | `abi.encode(token, decimals, name, symbol)` | +| `ADD_DEPENDENCY` | `abi.encode(chainId)` | +| `REMOVE_DEPENDENCY` | `abi.encode(chainId)` | where