casper-storage 2.1.1

Storage for a node on the Casper network.
Documentation
use casper_types::{
    bytesrepr::{FromBytes, ToBytes},
    system::mint::Error,
    CLTyped, URef, U512,
};

/// Provides functionality of a contract storage.
pub trait StorageProvider {
    /// Create new [`URef`].
    fn new_uref<T: CLTyped + ToBytes>(&mut self, init: T) -> Result<URef, Error>;

    /// Read data from [`URef`].
    fn read<T: CLTyped + FromBytes>(&mut self, uref: URef) -> Result<Option<T>, Error>;

    /// Write a [`U512`] amount under a [`URef`].
    fn write_amount(&mut self, uref: URef, amount: U512) -> Result<(), Error>;

    /// Add data to a [`URef`].
    fn add<T: CLTyped + ToBytes>(&mut self, uref: URef, value: T) -> Result<(), Error>;

    /// Read total balance.
    fn total_balance(&mut self, uref: URef) -> Result<U512, Error>;

    /// Read balance.
    fn available_balance(&mut self, uref: URef) -> Result<Option<U512>, Error>;

    /// Write balance.
    fn write_balance(&mut self, uref: URef, balance: U512) -> Result<(), Error>;

    /// Add amount to an existing balance.
    fn add_balance(&mut self, uref: URef, value: U512) -> Result<(), Error>;
}