Admin Components Diagram
This page contains the components diagram for the Admin Role.

This diagram focuses on the regular user role and its interactions within the system. Here's a breakdown of the diagram:
Main Components:
Registry: Provides access to other components and configurations.
InterNetworkExecutor: Handles cross-network swaps.
IntraNetworkExecutor: Handles within-network swaps.
Vault: Manages token deposits and withdrawals.
RegularUser: Represents the external entity with the regular user role.
Relationships:
Solid lines with open arrows (-->) represent dependencies or usage.
Entry Points:
InterNetworkExecutor: The
swap(InterNetworkSwapActions)
method is an entry point for cross-network swaps.IntraNetworkExecutor: The
swap(SwapAction)
method is an entry point for within-network swaps.Vault: The
deposit(uint256)
andwithdraw(uint256)
methods are entry points for vault operations.
Key Interactions:
The RegularUser interacts directly with InterNetworkExecutor, IntraNetworkExecutor, and Vault.
All components depend on the Registry for accessing other parts of the system.
Last updated