Royalty Distribution
RoyaltyDistributionClient
The RoyaltyDistributionClient
is used to distribute and manage royalty payouts.
Methods
activateRoyalty
payRoyalty
collectRevenue
activateRoyalty
IP owners can activate royalty on an IP.
activateRoyalty
(request: IActivateRoyalty) => Promise<{result, transactionResponse}>
Parameters:
ip
address
The ID of the IP asset
royaltyTokenName
string
Name of the royalty token to be minted
royaltyTokenSymbol
string
Symbol of the royalty token to be minted
mintRTSupply
number
Total supply of the royalty token that can be minted
Returns:
transactionResponse
Object
Contains details of the transaction, including the transactionHash, logs, and other relevant information.
result
Object
Object containing the royaltyToken address
response.transactionResponse.txHash
- The transaction hash.response.result.royaltyToken
- The contract address of the minted royalty token.
payRoyalty
The payRoyalty function disburses royalties which will be claimable to token holders based on their ownership share.
payRoyalty
(request: IPayRoyalty) => Promise<{result, transactionResponse}>
Parameters:
NameTypeDescriptionip
address
The ID of the IP asset
amount
number
Amount to be paid
Returns:
NameTypeDescriptiontransactionResponse
Object
Contains details of the transaction, including the transactionHash, logs, and other relevant information.
result
Object
Object containing the snapshot id
response.transactionResponse.txHash
- The transaction hash.response.result.snapshotId
- The snapshot ID through which royalty token holders can claim their royalty.
collectRevenue
The collect revenue function is designed to claim the royalty token by snapshot ID.
collectRevenue
(request: ICollectRevenue) => Promise<{result, transactionResponse}>
Parameters:
NameTypeDescriptionip
address
The ID of the IP asset
snapshotId
number
The snapshotID received from payRoyalty function
Returns:
NameTypeDescriptiontransactionResponse
Object
Contains details of the transaction, including the transactionHash, logs, and other relevant information.
result
Object
Object containing the amount received
response.transactionResponse.txHash
- The transaction hash.response.result.amount
- The royalty token amount claimed (type bigint)
Last updated