Funding Sources
Access prerequisites
- Permission (module):
creditConfigManage(to create/edit). Read access granted byviewCredits. - License/Feature:
CREDIT_INVESTMENTSenabled on the tenant license (Vault). - Menu container: TOKENIZATION → group Tokenized Credit
What it is / when to use
A Funding Source represents a capital pool from an investor available to finance credit operations. Each source records how much is available, how much is already committed in deals, the currency, and the operational status. This is what the system queries to determine whether there is capital backing to close an operation.
Use this screen to register and maintain capital sources per investor — enabling, pausing, or marking them as depleted according to the contribution cycle.
Prerequisites
- Permission:
creditConfigManage(double permission — CPM enum + dynamic module in the DB). - License/Feature:
CREDIT_INVESTMENTSenabled. - Dependencies: the investor (party of type investor) must exist, as the source is linked by
investorId.
Step by step
- Go to Tokenized Credit → Funding Sources.
- Filter by Status or by Investor ID.
- Click Create.
- Fill in Name, Investor ID, Available Amount, Committed Amount, Currency, and Status.
- Click Save.
Fields
| Field | What it is | Required? | System/backend effect |
|---|---|---|---|
| Name | Source identification | Yes | Saved to name; appears in the listing. |
| Investor ID | Link to the investor party | Yes | Saved to investorId. Associates the capital with the investor; also used as a search filter. |
| Available Amount | Free capital to allocate to new operations | Yes (default 0) | Saved to availableAmount. Indicates how much the source can still finance. |
| Committed Amount | Capital already allocated/reserved in deals | Yes (default 0) | Saved to committedAmount. How much is already "locked" in ongoing operations. |
| Currency | Pool currency (e.g.: BRL) | Yes (default BRL) | Saved to currency. Used for monetary formatting in the listing. |
| Status | ACTIVE, PAUSED, or DEPLETED | Yes (default ACTIVE) | Saved to status. ACTIVE = available for allocation; PAUSED = temporarily off; DEPLETED = no available capital. |
Actions and modals
- Create / Update: saves the source via
createFundingSource/updateFundingSource. Button visible only withcreditConfigManage. - Edit (pencil icon): loads the source into the form for value/status adjustment.
Because capital parameters are being modified, saving may require a step-up (password + MFA) depending on the environment.
Business rules / considerations
Attention
- Available vs. committed are capacity controls. The
availableAmountlimits new allocations; thecommittedAmountreflects what is already in use. Keeping them consistent avoids "selling" capital that does not exist. DEPLETEDis an operational state, not a deletion. Mark as depleted rather than deleting, to preserve the source's allocation history.PAUSEDremoves the source from new allocations without losing the link to the investor.
- Financial values:
availableAmountandcommittedAmountare amounts treated as BigNumber in the credit domain — do not round, and verify decimal places when editing.