Creating A Node
Deployment Process
1. Node Creation
function deployFullNode(
NodeInitArgs calldata initArgs,
bytes[] calldata nodePayload,
SetupCall[] calldata setupCalls,
bytes32 salt
) external returns (INode node, address escrow)
struct NodeInitArgs {
string name;
string symbol;
address asset;
address owner;
}
struct SetupCall {
address target;
bytes payload;
}Constructor Parameters
Parameter
Description
Constraints
Default Values
Post-Creation Configuration
Security Considerations
Last updated