VaultSnapshot
Documentation for eth_defi.grvt.vault_scanner.VaultSnapshot Python class.
- class VaultSnapshot
Bases:
objectA point-in-time snapshot of a GRVT vault’s state.
Contains the key metrics we want to track over time for each vault.
Attributes summary
When this snapshot was taken
Vault string ID on the GRVT platform (e.g.
Numeric on-chain vault ID
Vault display name
Total Value Locked in USDT
Current share price
Annualised percentage return
Number of investors in the vault
Methods summary
__init__(snapshot_timestamp, vault_id, ...)- snapshot_timestamp: datetime.datetime
When this snapshot was taken
- vault_id: str
Vault string ID on the GRVT platform (e.g.
VLT:xxx)
- chain_vault_id: int
Numeric on-chain vault ID
- name: str
Vault display name
- __init__(snapshot_timestamp, vault_id, chain_vault_id, name, tvl, share_price, apr=None, investor_count=None)