public static void Delete(StorageContext context, string key) { Delete(context, Op.String2Bytes(key)); }
public static void Put(StorageContext context, string key, string value) { Put(context, Op.String2Bytes(key), value); }
public static byte[] Get(StorageContext context, string key) => Get(context, Op.String2Bytes(key));
public static void Put(StorageContext context, byte[] key, string value) { Put(context, key, Op.String2Bytes(value)); }
public static byte[] ToScriptHash(this string address) => Op.String2Bytes(address);