Skip to main content

IFdcRequestFeeConfigurations

Interface for managing FDC request fee configuration.

Sourced from IFdcRequestFeeConfigurations.sol on GitHub.

Functions

getRequestFee

Method to get the base fee for an attestation request. It reverts if the request is not supported.

function getRequestFee(
bytes _data
) external view returns (
uint256
);

Parameters

  • _data: ABI encoded attestation request

Events

TypeAndSourceFeeRemoved

event TypeAndSourceFeeRemoved(
bytes32 attestationType,
bytes32 source
)

TypeAndSourceFeeSet

event TypeAndSourceFeeSet(
bytes32 attestationType,
bytes32 source,
uint256 fee
)