logo
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
use crate::{
    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 data under a [`URef`].
    fn write<T: CLTyped + ToBytes>(&mut self, uref: URef, value: T) -> Result<(), Error>;

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

    /// Read balance.
    fn read_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>;
}