Replies: 1 comment 7 replies
-
Given that this model of fees is very similar to a referral program, what do you think about:
|
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In #220, I have implemented operator fees (#208) by adding the two following arguments in the create functions:
operator
operatorFee
But @andreivladbrg has pointed out to me that this term is already used by the ERC-721 standard to refer to an approved account that can transfer the NFT on behalf of the owner.
I agree with Andrei that this is not good - it's confusing to have the same term referring to two different concepts in the same code base.
Alternatives:
agent
broker
intermediary
(though this doesn't sound nice in the wider context of decentralization)None is better than
operator
, though.Beta Was this translation helpful? Give feedback.
All reactions