Smart Account Reference
Owners
getOwners

getOwners

Returns a list of Safe owners.

Usage


_10
interface ISafe {
_10
function getOwners() external view returns (address[]);
_10
}
_10
_10
contract Example {
_10
function example() ... {
_10
(ISafe safe).getOwners();
_10
}
_10
}

Returns

owners

  • Type: address[]

Array of Safe owners.

Was this page helpful?