Helpful Core Contracts' Endpoints This page provides a list of useful in practice functions for a Network across Symbiotic Core contracts. FunctionUse-casecreate(InitParams params) -> address, address, addressCreate a new VaultVault.delegator() → addressGet the Vault's delegatorVault.slasher() → addressGet the Vault's slasherBaseDelegator.TYPE() → uint64Get the delegator's type (0 - NetworkRestake, 1 - FullRestake, etc.)BaseDelegator.stake(bytes32 subnetwork, address operator) → uint256Get the operator-network's stakeNetworkRestakeDelegator.setNetworkLimit(bytes32 subnetwork, uint256 amount)Set a amount of collateral to allocate to the networkNetworkRestakeDelegator.networkLimit(bytes32 subnetwork) -> uint256Check the network's allocationNetworkRestakeDelegator.setOperatorNetworkShares(bytes32 subnetwork, address operator, uint256 shares) Set the operator's share from the network's allocationNetworkRestakeDelegator.operatorNetworkShares(bytes32 subnetwork, address operator) -> uint256Check the operator-network's sharesFullRestakeDelegator.setNetworkLimit(bytes32 subnetwork, uint256 amount)Set a amount of collateral to allocate to the networkFullRestakeDelegator.networkLimit(bytes32 subnetwork) -> uint256Check the network's allocationNetworkRestakeDelegator.setOperatorNetworkLimit(bytes32 subnetwork, address operator, uint256 amount)Set the operator's limit over the network's allocationNetworkRestakeDelegator.operatorNetworkLimit(bytes32 subnetwork, address operator) -> uint256Check the operator-network's limitOperatorSpecificDelegator.setNetworkLimit(bytes32 subnetwork, uint256 amount)Set a amount of collateral to allocate to the networkOperatorSpecificDelegator.networkLimit(bytes32 subnetwork) -> uint256Check the network's allocationOperatorSpecificDelegator.operator() -> addressCheck the operator who receive all the allocationsOperatorSpecificDelegator.network() -> addressCheck the network who receive all the allocationsOperatorSpecificDelegator.operator() -> addressCheck the operator who receive all the allocationsBaseSlasher.TYPE() → uint64Get the slasher's type (0 - Slasher, 1 - VetoSlasher)