Creating A Node
Deployment Process
1. Node Creation
Nodes are created through the NodeFactory using deployFullNode
:
Constructor Parameters
name
Name of the Node token
Cannot be empty
symbol
Symbol of the Node token
Cannot be empty
asset
Address of the underlying asset
Cannot be zero address
owner
Address of the Node owner
Cannot be zero address
components
Array of initial component addresses
Must match componentAllocations length
componentAllocations
Array of component parameters
See ComponentAllocation struct below
targetReserveRatio
Target cash reserve ratio
Must be < 1e18 (100%)
rebalancer
Initial rebalancer address
Must be whitelisted in Registry
quoter
Quoter contract address
Must be whitelisted in Registry
salt
Unique deployment salt
Any bytes32 value
ComponentAllocation Struct
Initialization
During deployment, the Node will be initialized in the constructor:
This sets the following values:
escrow: Address of the Escrow contract (immutable after set)
lastRebalance: block.timestamp - rebalanceWindow (enables immediate rebalancing)
lastPayment: block.timestamp (starts fee period)
maxDepositSize: 10_000_000 * 10 ** decimals() (can be changed by owner)
Enables all routers specified in initial component allocations
Default Values
The Node is created with these default values that can be modified by the owner:
Swing Pricing
By default, swing pricing is disabled at deployment with:
Node owner can enable it later using:
where maxSwingFactor_
must be less than the protocol-wide maximum set in the Registry.
Example Creation (from BaseTest)
Post-Creation Configuration
The Node owner can modify these parameters after creation:
Management fees and fee recipient
Maximum deposit size
Rebalance cooldown and window periods
Swing pricing parameters
Component allocations and parameters
Liquidation queue
Additional routers and rebalancers
Security Considerations
All components must be whitelisted in their respective routers
Component allocation weights must sum to 100% (1e18) with reserve ratio
Routers must be whitelisted in the Registry
Rebalancers must be whitelisted in the Registry
Quoter must be whitelisted in the Registry
Last updated