Skip to main content

Node and Branch - Single External To Multiple Internal

Description

This test identifies accounts distributing funds to multiple unique internal accounts, potentially to bypass capital control thresholds or coordinate manipulation. This analysis detects patterns of fund dispersion that could indicate suspicious activity.

Use Cases

  • Single External to Multiple Internal: A single external account disperses funds to multiple internal accounts to bypass capital control thresholds.

Required Data

Deposits Data

VariableDescription
timestampTimestamp of the deposit (YYYY-MM-DD hh:mm:ss).
user_idUser ID of the depositor.
currency_typeType of currency deposited (fiat or crypto).
symbolAsset symbol (BTC, ETH, USD, EUR, etc.).
price_usdPrice of the asset in USD.
amountAmount deposited.
toInternal user account receiving the deposit.
fromExternal wallet address or bank account initiating the deposit.

Withdrawals Data

VariableDescription
timestampTimestamp of the withdrawal (YYYY-MM-DD hh:mm:ss).
user_idUser ID of the withdrawing user.
currency_typeType of currency withdrawn (fiat or crypto).
symbolAsset symbol (BTC, ETH, USD, EUR, etc.).
price_usdPrice of the asset in USD.
amountAmount withdrawn.
toExternal wallet or bank account receiving the withdrawal.
fromInternal user account initiating the withdrawal.

Parameters

ParameterDescriptionTypeDefault ValueConfigurable
analysis_minimum_branch_count_thresholdMinimum number of branch connections required between internal and external accounts.Integer3Yes
analysis_minimum_aggregate_dollar_thresholdMinimum total transaction amount to trigger an alert.Float10000Yes
whitelist_fileFile path for the list of whitelisted wallets.Strings3://BUCKET/whitelisted_wallets.csvYes
analysis_windowTime window for analysis in hours.Integer120Yes
check_fiatWhether to analyze fiat transactions.BooleanTrueYes
check_cryptoWhether to analyze cryptocurrency transactions.BooleanTrueYes
create_ticketFlag to determine if tickets should be created for alerts.BooleanTrueYes

Methodology

  • Single External to Multiple Internal Monitors external accounts distributing funds to multiple internal accounts. Flags accounts meeting the minimum unique recipient count and exceeding the threshold.