Store
Defines the way in which the state of the Subaccount is being stored in the chain.
Account Summary
The Create and TopUp messages are used to store the data of a particular subaccount's locked balance in the blockchain. The AccountSummary
entity consists of the following fields:
deposited_amount
: The total amount that has been transferred to a subaccount so far.spent_amount
: The spent amount that has been used for wager and deposit.withdrawn_amount
: The amount that has been withdrawn from the subaccount's unlocked/locked balance.lost_amount
: The amount that has been lost in wager and deposit.
The proto for the Deposit messages is as follows:
LockedBalance
The Create and TopUp messages are used to store the data of a particular subaccount's locked balance in the blockchain. The LockedBalance
entity consists of the following fields:
amount
: The amount of locked balance.unlock_ts
: The time when the amount would be unlocked.
The proto for the locked balance is as follows:
Last updated