RoyaltyInfo

Git Source

Struct of royalty information

  • receiver Address receiving royalties
  • basisPoints Points used to calculate the royalty payment (0.01%)
struct RoyaltyInfo {
    address receiver;
    uint96 basisPoints;
}