-
-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
21 changes: 21 additions & 0 deletions
21
QuantumNexusProtocol/src/smart_contracts/royalty_contract.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// SPDX-License-Identifier: MIT | ||
pragma solidity ^0.8.0; | ||
|
||
contract RoyaltyContract { | ||
mapping(address => uint256) public royalties; | ||
|
||
event RoyaltyPaid(address indexed creator, uint256 amount); | ||
|
||
function payRoyalty(address creator) external payable { | ||
require(msg.value > 0, "Royalty amount must be greater than zero"); | ||
royalties[creator] += msg.value; | ||
emit RoyaltyPaid(creator, msg.value); | ||
} | ||
|
||
function withdrawRoyalties() external { | ||
uint256 amount = royalties[msg.sender]; | ||
require(amount > 0, "No royalties to withdraw"); | ||
royalties[msg.sender] = 0; | ||
payable(msg.sender).transfer(amount); | ||
} | ||
} |