IFrictionlessAttestationManager

Git Source

Author: DEFYCA Labs S.à.r.l

Copyright © 2023 DEFYCA Labs S.à.r.l Permission is hereby granted, free of charge, to any person obtaining a copy of the Frictionless protocol smart contracts (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice (including the next paragraph) shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL DEFYCA LABS S.à.r.l BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

The IFrictionlessAttestationManager See the flow and description of the attestation workflow in the diagram at https://gitlab.com/dfyclabs/protocol/dfyclabs-tokens/-/raw/main/docs/img/frictionless-fund-deposit-flow-attestation.png

Functions

updateAttestationToken

Update the token address of the FrictionlessFundDepositToken for the currency_ and iban_ pair.

function updateAttestationToken(address tokenAddress_, string calldata iban_, string calldata currency_) external;

Parameters

confirmAttestation

Confirm the attestation by signing the signature, this is the proof of the attestation by the PERMISSIONED_FUND_ACCOUNTANT

function confirmAttestation(AttestationData calldata attestationData_, bytes calldata sig_) external;

Parameters

minBalance

Get the minimum balance amount configured, for which an attestation can be run. If the balance of the attestation is below the value configured, the error will be thrown. The minimum allowed is 10_000 or 0.01

function minBalance() external view returns (uint256);

Returns

minWindow

Get minimum time (reportEnd - reportStart) in blocktime for which an attestation can be run. Typically this is 1 hour, and dependent on the availability of transaction data in the underlying fund account as specified by the IBAN. The minimum allowed is 300 seconds.

function minWindow() external view returns (uint256);

Returns

maxWindow

Get maximum time (reportEnd - reportStart) in blocktime for which an attestation can be run. Typically this is 30 days, aligned with the reporting as per regulation for the underlying fund and issuer of the deposit token. The maximum allowed is 365 days.

function maxWindow() external view returns (uint256);

Returns

getAccountAttestationDataKeys

Retrieves the keys of attestation data associated with a specific account identified by IBAN and currency.

function getAccountAttestationDataKeys(string calldata iban_, string calldata currency_)
    external
    view
    returns (bytes32[] memory);

Parameters

Returns

getAccountLastAttestationData

Retrieves the last attestation data associated with a specific account identified by IBAN and currency.

function getAccountLastAttestationData(string calldata iban_, string calldata currency_)
    external
    view
    returns (AttestationData memory);

Parameters

Returns

getAccountLastAttestationDataKey

Retrieves the key of the last attestation data associated with a specific account identified by IBAN and currency.

function getAccountLastAttestationDataKey(string calldata iban_, string calldata currency_)
    external
    view
    returns (bytes32);

Parameters

Returns

getAttestationData

Retrieves attestation data by the attestation data key.

function getAttestationData(bytes32 attestationDataKey_) external view returns (AttestationData memory);

Parameters

Returns

getTokenAddress

Get the valid FrictionlessFundDepositToken for the currency_ and iban_ pair.

function getTokenAddress(string memory iban_, string memory currency_) external view returns (address);

Parameters

Returns

getAttestationDataHash

Mint a new attestation, it returns hash of attestation data to sign by the PERMISSIONED_FUND_ACCOUNTANT

function getAttestationDataHash(AttestationData calldata attestationData_) external view returns (bytes32);

Parameters

Returns

getAccountAttestationKey

Retrieves the attestation data key associated with a specific account identified by currency and IBAN.

function getAccountAttestationKey(string calldata currency_, string calldata iban_) external pure returns (bytes32);

Parameters

Returns

Events

FrictionlessFundDepositAttestationTokenUpdated

Emitted when the FrictionlessFundDepositToken is updated in the IFrictionlessAttestationManager.

event FrictionlessFundDepositAttestationTokenUpdated(
    bytes32 accountAttestationKey, address newTokenAddress, address oldTokenAddress
);

FrictionlessFundDepositAttestationConfirmed

Event emitted upon the confirmation of a FrictionlessFundDepositToken in the IFrictionlessAttestationManager

event FrictionlessFundDepositAttestationConfirmed(AttestationData attestationData);

Errors

FrictionlessAttestationManagerCallerNotAProtocolTreasury

thrown if msg.sender address is not a PROTOCOL_TREASURY, during updateAttestationToken

error FrictionlessAttestationManagerCallerNotAProtocolTreasury(address caller);

FrictionlessAttestationManagerTokenZeroAddress

thrown if tokenAddress_ address is a zero address, during updateAttestationToken

error FrictionlessAttestationManagerTokenZeroAddress();

FrictionlessAttestationManagerPermissionsZeroAddress

thrown if permissionManagerAddr_ address is a zero address, during init

error FrictionlessAttestationManagerPermissionsZeroAddress();

FrictionlessAttestationManagerInvalidToken

thrown if the FrictionlessFundDepositToken has not been registered for the IBAN, currency pair.

error FrictionlessAttestationManagerInvalidToken(string iban, string currency);

FrictionlessAttestationManagerInvalidReport

thrown if the passed AttestationData report is invalid.

error FrictionlessAttestationManagerInvalidReport(AttestationData attestationData);

FrictionlessAttestationManagerBalanceTooLow

thrown if the attestation balance is too small, below the configurable amount.

error FrictionlessAttestationManagerBalanceTooLow(uint256 balance);

FrictionlessAttestationManagerDuplicateLastTxHash

thrown if the last transaction hash for the attestation has already been used, this avoids duplicate attestations.

error FrictionlessAttestationManagerDuplicateLastTxHash(string lastTxHash);

FrictionlessAttestationManagerInvalidAttestationSigner

thrown if the attestation cannot be confirmed, meaning the signed attestation cannot be verified.

error FrictionlessAttestationManagerInvalidAttestationSigner(address signer, bytes32 attestationHash, bytes sig);

Structs

AttestationData

struct to hold attestation data, which is designed to provide the most recent attestation of balance and verified last transaction in an attestation window.

struct AttestationData {
    address tokenAddr;
    string iban;
    string currency;
    uint256 reportStart;
    uint256 reportEnd;
    uint256 balance;
    string lastTxHash;
}

AccountAttestationData

struct to hold account attestation data

struct AccountAttestationData {
    address attestationTokenAddr;
    bytes32 lastAttestationDataKey;
    EnumerableSet.Bytes32Set allAttestationDataKeys;
}
Logo

Copyright © 2024 Frictionless Markets S.à.r.l