Flowchart Aliran Data Member Area CoopKUAT
flowchart TD
A[User Login] --> B[Auth Service]
B --> C[JWT Token Validation]
C --> D[Member API Endpoint]
D --> E[Member Profile]
D --> F[Wallet Service]
D --> G[Account Service]
D --> H[Transaction Service]
D --> I[Block Service]
D --> K[Bridge Service]
D --> L[Relayer]
E --> J[Dashboard UI]
F --> J
G --> J
H --> J
I --> J
K --> J
L --> J
Sequence Diagram Interaksi Member Area
sequenceDiagram
participant U as User
participant Auth as Auth Service
participant API as Member API
participant W as Wallet Service
participant Acc as Account Service
participant Tx as Transaction Service
participant Blk as Block Service
participant Br as Bridge Service
participant Rl as Relayer
participant UI as Dashboard UI
U->>Auth: Login Request
Auth->>API: Validate JWT
API->>W: Check Wallet
API->>Acc: Fetch Accounts
API->>Tx: Fetch Transactions
API->>Blk: Fetch Blocks
API->>Br: Bridge Status
API->>Rl: Relayer Status
W-->>API: Wallet Data
Acc-->>API: Account Data
Tx-->>API: Transaction Data
Blk-->>API: Block Data
Br-->>API: Bridge Data
Rl-->>API: Relayer Data
API->>UI: Render Member Dashboard