Erc20Escrow
Last updated
Last updated
EVENTS
ClaimedRoyalties(owner, tokens, amounts)
AddedTokenSupports(token)
ClaimedRoyalties(address owner, address[] tokens, uint256[] amounts) |
---|
AddedTokenSupport(address token) |
---|
FUNCTIONS
escrowedTokensByOrder(_orderId)
claimableTokensByOwner(_owner)
isTokenSupported(_token)
addSupportedTokens(_token)
deposit(_token, _orderId, _sender, _amount)
withdraw(_orderId, _receiver, _amount)
transferRoyalty(_token, _sender, _owner, _amount)
transferRoyalty(_orderId, _to, _amount)
transferPlatformFee(_token, _sender, _feesEscrow, _amount)
transferPlatformFee(_orderId, _feesEscrow, _amount)
claimRoyalties(_owner)
escrowedTokensByOrder(uint256 _orderId) -> uint256 |
---|
claimableTokensByOwner(address _owner) -> address[], uint256[] |
---|
isTokenSupported(address _token) -> bool |
---|
addSupportedTokens(address _token) |
---|
deposit(address _token, uint256 _orderId, address _sender, uint256 _amount) |
---|
withdraw(uint256 _orderId, address _receiver, uint256 _amount) |
---|
transferRoyalty(address _token, address _sender, address _owner, uint256 _amount) |
---|
transferRoyalty(uint256 _orderId, address _to, uint256 _amount) |
---|
transferPlatformFee(address _token, address _sender, address _feesEscrow, uint256 _amount) |
---|
transferPlatformFee(uint256 _orderId, address _feesEscrow, uint256 _amount) |
---|
claimRoyalties(address _owner) |
---|
Event emitted when the claimRoyalties
function is called.
Event emitted when the addSupportedTokens
function is called.
Returns the amount of tokens currently escrowed for the given _orderId
.
visibility: external
state mutability: view
Returns the token contract addresses and corresponding amounts available to claim by _owner
.
visibility: external
state mutability: view
Returns true or false based on whether token type _token
is supported by Rawrshak.
visibility: external
state mutability: view
Adds _token
to the list of supported ERC20 tokens on Rawrshak.
Emits an AddedTokenSupport
event.
visibility: external
state mutability:
Transfers _amount
of token type _token
from _sender
to escrow.
visibility: external
state mutability:
Withdraws amount
of tokens from escrow to receiver
.
Requirement:
The amount of tokens escrowed must be greater than or equal to _amount
.
visibility: external
state mutability:
Transfers creator royalties from _sender
to escrow.
visibility: external
state mutability:
Transfers creator royalties deducted from escrowed buy orders to escrow.
Requirement:
The amount of tokens escrowed must be greater than or equal to _amount
.
visibility: external
state mutability:
Transfers platform fees from _sender
to _feesEscrow
.
visibility: external
state mutability:
Transfers platform fees deducted from escrowed buy orders to _feesEscrow
.
visibility: external
state mutability:
Withdraws any claimable tokens to _owner, and updates the records to reflect that there are no more tokens remaining to claim.
Emits a ClaimedRoyalties
event.
visibility: external
state mutability: