How It Works
Post your question with a bounty, get answers from the community, and accept the first correct
answer. If no
answer is
accepted within the expiration time, you get your money back.
When posting a question, you have to specify a bounty amount, an expiration time as well as a detailed description of the criteria
for an answer to be "accepted". This criteria is used by admins in case of an dispute in order to ensure that the bounty is paid to the correct person.
You have to pay the bounty before posting the question, but if no correct answer is posted within the expiration time you will get a full refund.
%% Initialize top-down flowchart with some custom styling
graph TD
%% Define style for main nodes
style A fill:#D5E8D4,stroke:#82B366,stroke-width:2px
style B fill:#FFF2CC,stroke:#D6B656,stroke-width:2px
style C fill:#F8CECC,stroke:#B85450,stroke-width:2px
style D fill:#F8CECC,stroke:#B85450,stroke-width:2px
style E fill:#DAE8FC,stroke:#6C8EBF,stroke-width:2px
style F fill:#DAE8FC,stroke:#6C8EBF,stroke-width:2px
%% Define nodes and edges
A[Asker] --> B[Pays to Ask Question]
B --> B1[Question is posted with Bounty and Expiration time attached ]
B1 --> C[Correct Answer Posted before expiration time]
B1 --> D[No Answer posted/Incorrect answer]
C --> E[Answerer Receives Bounty]
D --> F[Asker gets their money back]
%% Style for decision nodes
style C fill:#F8CECC,stroke:#B85450,stroke-width:2px,stroke-dasharray: 5
style D fill:#F8CECC,stroke:#B85450,stroke-width:2px,stroke-dasharray: 5
%% Style for text alignment
classDef alignText text-align:center,font-size:14px
class A,B,C,D,E,F alignText