Balances — Crowdfunding
Access prerequisites
- Permission (module):
manageCorporateAccount - License/Feature:
CROWDFUNDING— the tab only loads data if the feature is enabled in the tenant's license (verified at runtime viaFeaturesStatusService). - Menu container: GENERAL → Dashboard group → Balances (tab Crowdfunding)
What it is / when to use
Tab of the Balances panel dedicated to crowdfunding shares — the fundraising contributions per offering. It shows how many investors exist, the total raised per investment, and the current month's movement per offering. Use it to track the volume of active fundraising per project.
Filters and columns
View-only screen — no editable fields.
| Indicator / Chart | What it shows | Data source |
|---|---|---|
| Number of holders | Total count of crowdfunding investors | crowdfundingData.quantityUser |
| Total raised | Sum of the total of each offering (GeneralCrowdfundingBalance) | crowdfunding.total.total, summed in BigNumber |
| Monthly movement | Total moved in the current month, per offering | balanceByMonth filtered by the current month (getCrowdfundingTotalOfMonth) |
| Holders / movement per investment | Distribution across offerings | aggregation by offering |
When displayed in the consolidated view (tab General), the investor count may be segmented into public / private / foreign, according to the investor type of the offering.
Business rules / considerations
Attention
- The tab depends on the
CROWDFUNDINGfeature. In tenants without this license, the tab exists but does not fetch data (getCrowdfundingBalancesis never called). Do not interpret an empty tab as "no fundraising" in those tenants. - "Monthly movement" only considers the current month. The calculation (
getCrowdfundingTotalOfMonth) only sums thebalanceByMonthentries whosemonthmatches the current month — previous months are not included in this indicator. It is a snapshot of the month, not a cumulative historical total. - Balance is never zero by default: absence of a value means loading/error/feature disabled, not a zeroed fundraising amount.
- Financial values: the total raised and the monthly movement are summed in
BigNumber, without rounding. Check the decimal places of the fundraising token.