Documentation Index
Fetch the complete documentation index at: https://thrackle.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Git Source
Structs
AccountMaxTxValueByRiskScore
**** Account Max Transaction Value ByRisk Score Rules ****
maxValue size must be equal to _riskScore
The positioning of the arrays is ascendant in terms of risk scores,
and descendant in the size of transactions. (i.e. if highest risk score is 99, the last balanceLimit
will apply to all risk scores of 100.)
struct AccountMaxTxValueByRiskScore {
uint48[] maxValue;
uint8[] riskScore;
uint16 period;
uint64 startTime;
}
AccountMaxValueByRiskScore
**** Account Max Value By Risk Score Rules ****
struct AccountMaxValueByRiskScore {
uint8[] riskScore;
uint48[] maxValue;
}
AccountMaxReceivedByAccessLevel
**** Account Max Received By Access Level ****
struct AccountMaxReceivedByAccessLevel {
mapping(uint8 => uint48) accountMaxReceivedLimits;
address sender;
}