_
INTRODUCTION
Verdikt is built on the emerging ERC-8183 standard for decentralized freelance escrow. This standard defines universal abstractions for job definition, state transitions, and evaluation logic.
interface IERC8183 {
function postJob(string calldata title, uint256 budget) external;
function takeJob(bytes32 jobId) external;
function submitResult(bytes32 jobId, string calldata resultURI) external;
function evaluate(bytes32 jobId, bool approved) external;
function settle(bytes32 jobId) external;
}