IBosonDisputeEvents
View Source: contracts/interfaces/events/IBosonDisputeEvents.sol
↘ Derived Contracts: IBosonDisputeHandler
IBosonDisputeEvents
Defines events related to disputes within the protocol.
Events
- DisputeRaised
- DisputeRetracted
- DisputeResolved
- DisputeExpired
- DisputeDecided
- DisputeTimeoutExtended
- DisputeEscalated
- EscalatedDisputeExpired
- EscalatedDisputeRefused
DisputeRaised
event DisputeRaised(
uint256 indexed exchangeId
uint256 indexed buyerId
uint256 indexed sellerId
address executedBy
)
Parameters
Name | Type | Description |
---|---|---|
exchangeId | uint256 | |
buyerId | uint256 | |
sellerId | uint256 | |
executedBy | address |
DisputeRetracted
event DisputeRetracted(
uint256 indexed exchangeId
address indexed executedBy
)
Parameters
Name | Type | Description |
---|---|---|
exchangeId | uint256 | |
executedBy | address |
DisputeResolved
event DisputeResolved(
uint256 indexed exchangeId
uint256 _buyerPercent
address indexed executedBy
)
Parameters
Name | Type | Description |
---|---|---|
exchangeId | uint256 | |
_buyerPercent | uint256 | |
executedBy | address |
DisputeExpired
event DisputeExpired(
uint256 indexed exchangeId
address indexed executedBy
)
Parameters
Name | Type | Description |
---|---|---|
exchangeId | uint256 | |
executedBy | address |
DisputeDecided
event DisputeDecided(
uint256 indexed exchangeId
uint256 _buyerPercent
address indexed executedBy
)
Parameters
Name | Type | Description |
---|---|---|
exchangeId | uint256 | |
_buyerPercent | uint256 | |
executedBy | address |
DisputeTimeoutExtended
event DisputeTimeoutExtended(
uint256 indexed exchangeId
uint256 newDisputeTimeout
address indexed executedBy
)
Parameters
Name | Type | Description |
---|---|---|
exchangeId | uint256 | |
newDisputeTimeout | uint256 | |
executedBy | address |
DisputeEscalated
event DisputeEscalated(
uint256 indexed exchangeId
uint256 indexed disputeResolverId
address indexed executedBy
)
Parameters
Name | Type | Description |
---|---|---|
exchangeId | uint256 | |
disputeResolverId | uint256 | |
executedBy | address |
EscalatedDisputeExpired
event EscalatedDisputeExpired(
uint256 indexed exchangeId
address indexed executedBy
)
Parameters
Name | Type | Description |
---|---|---|
exchangeId | uint256 | |
executedBy | address |
EscalatedDisputeRefused
event EscalatedDisputeRefused(
uint256 indexed exchangeId
address indexed executedBy
)
Parameters
Name | Type | Description |
---|---|---|
exchangeId | uint256 | |
executedBy | address |