fromVMCode method

Future<Address> fromVMCode (Uint8List code)

Implementation

static Future<Address> fromVMCode(Uint8List code) async {
  var hash = await Hash.sha256ripemd160(code);
  return Address(hash);
}