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