AuthorizationManager

Used to register authorized proxy, each user has their own independent proxy.

Methods

revoke

function revoke() external nopayable

registerProxy

function registerProxy() external returns (address) nopayable

Returns

renounceOwnership

function renounceOwnership() external nonpayable

Leaves the contract without owner. It will not be possible to call onlyOwner functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner.

transferOwnership

function transferOwnership(address newOwner) external nonpayable

Transfers ownership of the contract to a new account (newOwner). Can only be called by the current owner.

Parameters

View methods

proxies

function proxies(address owner) external view returns (address)

Parameters

Returns

authorizedAddress

function authorizedAddress() external view returns (address)

Returns

WETH

function WETH() external view returns (address)

Returns

revoked

function revoked() external view returns (bool)

Returns

proxyImplemention

function proxyImplemention() external view returns (address)

Returns

Events

Revoked

event Revoked()

Last updated