-
Notifications
You must be signed in to change notification settings - Fork 23
QuantumGate::Access::AddressReputation
Karel Donk edited this page Dec 25, 2021
·
1 revision
QuantumGate::Access::AddressReputation
is a struct
that contains details about the reputation of an address.
struct AddressReputation
{
struct ScoreLimits
{
static constexpr const Int16 Minimum{ -3000 };
static constexpr const Int16 Base{ 0 };
static constexpr const Int16 Maximum{ 100 };
};
Address Address;
Int16 Score{ ScoreLimits::Minimum };
std::optional<Time> LastUpdateTime;
};
Name | Description |
---|---|
Address |
The QuantumGate::Address the reputation is for. |
Score |
The reputation score. This should be a number between AddressReputation::ScoreLimits::Minimum and AddressReputation::ScoreLimits::Maximum . An acceptable reputation score lies between AddressReputation::ScoreLimits::Base and AddressReputation::ScoreLimits::Maximum . |
LastUpdateTime |
An optional QuantumGate::Time value indicating when the reputation score was last updated. |