Docs
Reference

Roles & Permissions

Capabilities, restrictions, approval requirements, and risk implications for Torq roles.

Torq uses roles because credit operations are not one job. Depositing, borrowing, submitting valuation data, changing oracle policy, managing a vault, and recovering a stressed market require different authority.

Role authority is checked through function registry entries, page surface registry entries, role function catalogs, role field catalogs, permission contracts, and timelock routes.

Role design in context

Aave-style pool usage is often explained from the point of view of a supplier, borrower, liquidator, or governance participant. Morpho Vault V2 documents owner, curator, allocator, and sentinel-style separation. Torq extends the role model into a full operating workspace map: protocol manager, asset manager, asset issuer, NAV reporter, investor, lender, borrower, liquidator, partner, guardian, council, operations SRE, release manager, vault owner, allocator, and projector responsibilities are all tracked as product roles.

Product safety model

Controlled credit workflows need visible permissions and completion

PermissionsWho can perform the action?

role + wallet + entity

FreshnessIs the state current enough?

NAV + Live-Feed + oracle status

ExecutionWhat must the user sign?

wallet plan + action review

VisibilityWhen is the result visible?

indexed state + workspace refresh

Role inventory

RoleCapabilitiesRestrictionsApproval requirementsRisk implications
protocol_managerOperates Protocol Manager inventory, assets, issuers, reporters, oracles, IRMs, markets, roles, settings, faucet, and incident fields.Does not bypass contract ownership, timelock, entity scope, or permission checks.Direct, timelock, or governed route depending on action.Highest operational blast radius; wrong changes can affect global fields.
guardianHandles safety actions, emergency state, critical-role recovery, freezes, and selected risk fields.Cannot freely manage unrelated business settings.Often direct for protective actions; timelock or scoped route for sensitive changes.Misuse can block risk-increasing actions or change emergency posture.
councilParticipates in governance transitions such as selected IRM or oracle transitions.Limited to governed action families.Governed or timelocked execution.Incorrect approvals can change market behavior.
asset_managerOperates vault programs, assets, oracles, markets, IRMs, partners, roles, profile, AI allocator support, and price adapters.Scope is tied to managed entities; not global protocol admin by label alone.Direct, scoped, or timelocked route depending on target action.Fields credit program configuration and partner exposure.
curatorCompatibility role mapped to active Asset Manager surfaces where supported.Legacy label; active runtime reasoning uses V2 asset-manager/vault-control paths.Same as equivalent active asset-manager route.Confusion risk if treated as legacy runtime authority.
vault_ownerOwns or accepts vault-level authority where configured.Cannot control unrelated vaults or global protocol settings.Vault-scoped route, acceptance flow, or timelock depending on action.Fields sensitive vault configuration.
vault_pending_ownerCan accept pending vault ownership where staged.Cannot act as owner before acceptance.Acceptance action path.Prevents accidental or unauthorized owner transfer completion.
vault_managerOperates vault-management fields where configured.Restricted to assigned vault surfaces.Entity-scoped permissions.Mistakes affect one vault program rather than the whole protocol.
allocatorAllocates or toggles market capacity where allowed.Cannot grant itself policy authority.Vault or market-scoped permission.Incorrect allocation can create unintended credit exposure.
asset_issuerSubmits assets, tracks controlled assets, NAV reports, roles, messages, and incident context.Submission does not equal protocol listing or vault authority.Metadata action path or scoped approval for supported actions.Bad metadata can mislead review if not checked.
nav_reporterSubmits valuation reports and maintains covered asset/report context.Reporting authority is not general governance authority.Signature, cadence, quorum, signer, and freshness checks where configured.Bad or stale NAV can affect action availability.
oracle_bootstrap_actorPerforms bounded oracle setup or bootstrap tasks.Restricted to setup/preflight scope.Configured bootstrap permissions.Incorrect oracle setup can affect valuation fields.
investorReviews portfolio state, vaults, partner paths, messages, and supported investor routes.Cannot force liquidity, bypass queues, or treat a visible route as investment authority.Wallet and vault-state checks where action is available.Faces vault, tranche, queue, valuation, and facility exposure risk.
borrowerDeposits collateral, borrows, repays, and withdraws collateral through market detail.Cannot borrow without valid route, collateral, oracle state, and market/vault conditions.Wallet execution with route and risk checks.Unsafe borrow or withdrawal can trigger liquidation.
lenderDeposits, reviews positions, requests redemption, and monitors vault exposure.Cannot force liquidity or bypass queues.Wallet approval and vault state checks.Faces vault, tranche, queue, and credit exposure risk.
liquidatorExecutes liquidation or recovery action paths where valid.Cannot liquidate healthy or protected positions.Market, borrower, oracle, close-factor, and freeze checks.Incorrect liquidation handling can affect recovery fairness.
partnerCoordinates partner access, messages, applications, and channel context where configured.Does not control source vault authority or valuation policy.Partner-scoped approval or metadata route depending on action.Misstated partner authority can create distribution and attribution risk.
operations_sreReviews incident, operational, and governed-action state where surfaced.Does not become protocol admin or bypass wallet/timelock authority.Operations-scoped review route and configured incident permissions.Weak operations review can hide degraded-state or response gaps.
release_managerReviews release readiness, evidence, and deployment-related state where surfaced.Does not turn advisory evidence into release certification by label alone.Release-scoped review route and governed evidence checks.Premature readiness labeling can create false assurance.
indexer_projectorProduces application truth from observed events.Not a user-facing financial authority role.Operational service authorization and deployment fields.Bugs can show stale or wrong product state.
What this means

A Torq role is not just a label on a page. It is tied to a wallet, an entity, a function family, a result surface, and sometimes a timelock. If any part does not match, the action can be blocked.

Permission model

Permission layerPlain meaningExample
RoleThe job the user is allowed to perform.asset_manager, borrower, nav_reporter.
Entity scopeThe object the role can touch.One vault, one asset issuer, one market, one workspace.
Function familyThe action family being attempted.borrowerBorrow, vaultDeploy, permissionTemplateAndGrantSave.
Route ownerThe source that decides direct, metadata-only, wallet, or timelock path.Function registry and action matrix owners.
Result surfaceWhere the user verifies the action after execution.Vault detail, market detail, Protocol Manager settings.

Approval requirements

Approval pathMeaning
Metadata-onlyPersisted database/API update; no wallet transaction by itself.
Direct wallet writeUser signs one or more required transactions.
Direct or timelockDirect execution if authority allows; otherwise queue and execute through timelock.
TimelockA sensitive change is queued, waits the configured delay, then executes.
BlockedMissing permission, stale state, unsupported route, invalid input, or unsafe condition.

For reviewers

The role list is grounded in apps/web/config/roleFunctionCatalog.json, apps/web/config/roleFieldCatalog.json, apps/web/config/functionRegistry.json, and the active V2 permission contracts listed in the contract inventory.

On this page