verifyAddress method

bool verifyAddress(
  1. String address
)

Verifies that the public key is associated with the provided address

Implementation

bool verifyAddress(String address) {
  return toSuiAddress() == address;
}