-
- State |
- {account.displayState()} |
-
-
- {meta && (
- <>
-
- Rent Reserve (SOL) |
-
- {lamportsToSolString(meta.rentExemptReserve)}
- |
-
-
-
- Stake Authority Address |
-
-
- {meta.authorized.staker.toBase58()}
-
- |
-
-
-
- Withdraw Authority Address |
-
-
- {meta.authorized.withdrawer.toBase58()}
-
- |
-
-
- {hasLockup && (
-
- Lockup Expiry Timestamp |
-
- {new Date(meta.lockup.unixTimestamp).toUTCString()}
- |
-
- )}
-
- {hasLockup && (
-
- Lockup Custodian Address |
-
-
-
- {displayAddress(meta.lockup.custodian.toBase58())}
-
-
- |
-
- )}
- >
- )}
-
- {stake && (
- <>
-
- Delegated Stake (SOL) |
-
- {lamportsToSolString(stake.delegation.stake)}
- |
-
-
-
- Delegated Vote Address |
-
-
-
- {displayAddress(stake.delegation.voterPubkey.toBase58())}
-
-
- |
-
-
-
- Activation Epoch |
-
- {stake.delegation.isBootstrapStake()
- ? "-"
- : stake.delegation.activationEpoch}
- |
-
-
-
- Deactivation Epoch |
-
- {stake.delegation.isDeactivated()
- ? stake.delegation.deactivationEpoch
- : "-"}
- |
-
- >
- )}
-