예제 #1
0
 public static byte[] Get(this StorageMap map, string key)
 {
     byte[] k = map.Prefix.Concat(key.ToByteArray());
     return(Storage.Get(map.Context, k));
 }
예제 #2
0
 public static void Put(this StorageMap map, byte[] key, string value)
 {
     byte[] k = map.Prefix.Concat(key);
     Storage.Put(map.Context, k, value);
 }
예제 #3
0
 public static void Delete(this StorageMap map, string key)
 {
     byte[] k = map.Prefix.Concat(key.ToByteArray());
     Storage.Delete(map.Context, k);
 }
예제 #4
0
 public static byte[] Get(this StorageMap map, byte[] key)
 {
     byte[] k = map.Prefix.Concat(key);
     return(Storage.Get(map.Context, k));
 }
예제 #5
0
 public static void Put(this StorageMap map, string key, string value)
 {
     byte[] k = map.Prefix.AsByteArray().Concat(new byte[] { 0 }).Concat(key.AsByteArray());
     Storage.Put(map.Context, k, value);
 }
예제 #6
0
 public static void Delete(this StorageMap map, byte[] key)
 {
     byte[] k = map.Prefix.Concat(key);
     Storage.Delete(map.Context, k);
 }
예제 #7
0
 public static void Put(this StorageMap map, byte[] key, BigInteger value)
 {
     byte[] k = map.Prefix.AsByteArray().Concat(new byte[] { 0 }).Concat(key);
     Storage.Put(map.Context, k, value);
 }
예제 #8
0
 public static byte[] Get(this StorageMap map, byte[] key)
 {
     byte[] k = map.Prefix.AsByteArray().Concat(new byte[] { 0 }).Concat(key);
     return(Storage.Get(map.Context, k));
 }
예제 #9
0
 public static void Delete(this StorageMap map, byte[] key)
 {
     byte[] k = map.Prefix.AsByteArray().Concat(new byte[] { 0 }).Concat(key);
     Storage.Delete(map.Context, k);
 }
예제 #10
0
 public static void Put(this StorageMap map, string key, BigInteger value)
 {
     byte[] k = map.Prefix.Concat(key.AsByteArray());
     Storage.Put(map.Context, k, value);
 }
예제 #11
0
 public static ByteString Get(this StorageMap map, ByteString key)
 {
     byte[] k = map.Prefix.Concat(key);
     return(Storage.Get(map.Context, k));
 }