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
use crate::{
bytesrepr::{FromBytes, ToBytes},
system_contract_errors::mint::Error,
CLTyped, Key, URef,
};
pub trait StorageProvider {
fn new_uref<T: CLTyped + ToBytes>(&mut self, init: T) -> Result<URef, Error>;
fn write_balance_entry(&mut self, purse_uref: URef, balance_uref: URef) -> Result<(), Error>;
fn read_balance_entry(&mut self, purse_uref: &URef) -> Result<Option<Key>, Error>;
fn read<T: CLTyped + FromBytes>(&mut self, uref: URef) -> Result<Option<T>, Error>;
fn write<T: CLTyped + ToBytes>(&mut self, uref: URef, value: T) -> Result<(), Error>;
fn add<T: CLTyped + ToBytes>(&mut self, uref: URef, value: T) -> Result<(), Error>;
}