Split Royalties in Tezos Collections #244
-
Hi I'm trying to set up royalties in a collection interacting with the Royalties contract in Tezos, but unfortunately, with no luck. I'm using SmatPY Explorer and the hangzhounet testnet (Contract KT1WKRXswxEpTbVg2pGgofzwZCNKjAVcuMgh). Every time I try to call set_Royalties, I get InvalidCaller. Is this not allowed? I really appreciate any help you can provide. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hi @marcusrehm !
So in order for you to integrate with the Royalty contract, you just need to implement the Some useful resources:
Hope it helps ! |
Beta Was this translation helpful? Give feedback.
Hi @marcusrehm !
Indeed, the
set_royalties
entrypoint can only be called by us.However, the royalties provider follow this pattern:
get_royalties
endpoint is implementedSo in order for you to integrate with the Royalty contract, you just need to implement the
get_royalties
call with the good parameters in the NFT contractSome useful resources: