public ulong GetBalance(string address) { return(PersistentState.GetUInt64($"Balance:{address}")); }
public ulong BalanceOf(Address owner) { return(PersistentState.GetUInt64($"Balance:{owner}")); }
public ulong GetEventEscrow(string eventUniqueId) { return(PersistentState.GetUInt64($"EventEscrow:{eventUniqueId}")); }