Escalation period
The buyer escalated the dispute. The dispute resolver should provide a final split between the buyer and seller.
Previous state
State
Next state(s)
Period actions
Seller
Buyer
Dispute resolver
Post-period actions
Seller
Buyer
Dispute resolver
TypeScript SDK
The buyer signs the proposal; the seller submits the transaction
const exchangeId = "1534";
const buyerPercentBasisPoints = 30_00;
const { signature } = await buyerCoreSDK.signDisputeResolutionProposal({
exchangeId,
buyerPercentBasisPoints
});
await sellerCoreSDK.resolveDispute({
exchangeId: exchangeId,
buyerPercentBasisPoints,
signature
});The seller signs the proposal; the buyer submits the transaction
const exchangeId = "1534";
const buyerPercentBasisPoints = 30_00;
const { signature } = await sellerCoreSDK.signDisputeResolutionProposal({
exchangeId,
buyerPercentBasisPoints
});
await buyerCoreSDK.resolveDispute({
exchangeId: exchangeId,
buyerPercentBasisPoints,
signature
});Solidity
Last updated