Staking
Deposits
Staking deposits to validator on the network
The sui.staking.deposits
model tracks all staking deposits made to validators on the Sui network.
Staking Process
-
User selects a validator to stake with
-
User delegates SUI to the validator’s staking pool
-
User receives pool tokens representing their stake
-
Rewards automatically accumulate through an increasing exchange rate
Table Columns
Unique Key: unique_id
Column | Description |
---|---|
checkpoint_timestamp | Timestamp of when the checkpoint was created |
epoch | The epoch number |
sender | Address of the sender |
staker_address | Address of the staker |
validator_address | Address of the validator |
pool_id | ID of the staking pool |
amount_str | Amount of SUI deposited (string format for precision) |
amount | Amount of SUI deposited (float format) |
checkpoint_sequence | Sequence number of the checkpoint |
transaction_block_digest | Digest of the transaction block |
unique_id | Unique ID of the deposit |