Skip to main content
MolQ is deployed on Mantle mainnet, chain ID 5000.
ComponentAddress
MolqVault0xBcBe...6Eb9
Decision logger V20x0F38...E9b
ERC-8004 registry0x8004...a432
Agent ID112
USDe0x5d3a...ef34
Aave V3 Pool0x458F...1422
Aave aUSDe0xb9aC...5ee7

MolqVault interface

User functions follow ERC-4626:
function deposit(uint256 assets, address receiver) returns (uint256 shares);
function redeem(
    uint256 shares,
    address receiver,
    address owner
) returns (uint256 assets);
function totalAssets() view returns (uint256);
function convertToAssets(uint256 shares) view returns (uint256);
Strategy state:
function shieldAssets() view returns (uint256);
function liquidAssets() view returns (uint256);
function shieldTargetBps() view returns (uint256);
function performanceFeeBps() view returns (uint256);
Privileged strategy functions include rebalance, hardenProfit, emergencyExit, configuration updates, and pause controls. Review the verified contract source for exact authorization and revert behavior. The vault owner and treasury are the MolQ Safe at 0xFd735C02Afe8D539dFCde0D2fC7Aa4510306354C. The operational keeper remains a separate replaceable signer. Decision logger V2 is also owned by the Safe. The legacy logger at 0x24df...1Be9 remains indexed for historical continuity.