[
"autonomous agent",
{
"bounce_fees": {
"base": 10000
},
"init": "{
$BOUNCE_FEE = 10000;
$TYPICAL_FEE = 1300;
$REIMBURSEMENT = $BOUNCE_FEE - $TYPICAL_FEE;
}",
"messages": {
"cases": [
{
"if": "{ trigger.data.seller }",
"init": "{
$seller = trigger.address;
$start_price = trigger.data.start_price otherwise bounce ("start price is missing");
$lowest_price = trigger.data.lowest_price otherwise bounce ("lowest price is missing");
$time_steps = trigger.data.time_steps otherwise bounce ("time steps missing");
$price_steps = trigger.data.price_steps otherwise bounce ("price steps missing");
$product_description = trigger.data.product_description otherwise bounce ("product description is missing");
$product_url = trigger.data.product_url;
$auction_status = 'running';
//$cancel_time = trigger.data.cancel_time;
$reference = sha256($seller || $start_price || $lowest_price || $time_steps || $price_steps || $product_description || $auction_status || timestamp);
}",
"messages": [
{
"app": "payment",
"payload": {
"asset": "base",
"outputs": [
{
"address": "{trigger.address}",
"amount": "{$REIMBURSEMENT}"
}
]
}
},
{
"app": "state",
"state": "{
var[$reference] = 'auction_created';
var[$reference||'.timestamp'] = timestamp;
var[$reference||'.seller'] = $seller;
var[$reference||'.start_price'] = $start_price;
var[$reference||'.lowest_price'] = $lowest_price;
var[$reference||'.time_steps'] = $time_steps;
var[$reference||'.price_steps'] = $price_steps;
var[$reference||'.product_description'] = $product_description;
var[$reference||'.product_url'] = $product_url;
var[$reference||'.start_time'] = $start_time;
var[$reference||'.end_time'] = $end_time;
var[$reference||'.auction_status'] = $auction_status;
response['reference'] = $reference;
response['status'] = var[$reference];
}"
}
]
},
{
"if": "{ trigger.data.buyer }",
"init": "{
$reference = trigger.data.reference;
$buyer = trigger.address;
$bid = trigger.output[[asset = base]];
$price_now = var[$reference||'.start_price']-(round((timestamp - var[$reference||'.timestamp'])/var[$reference||'.time_steps'])*var[$reference||'.price_steps']);
$PRICE = ($price_now<var[$reference||'.lowest_price'] ? var[$reference||'.lowest_price'] : $price_now);
}",
"messages": {
"cases": [
{
"if": "{ $bid > $price_now AND var[$reference||'.auction_status'] == 'running'}",
"messages": [
{
"app": "payment",
"payload": {
"asset": "base",
"outputs": [
{
"address": "{trigger.address}",
"amount": "{$bid-$PRICE-$BOUNCE_FEE}"
},
{
"address": "{trigger.address}",
"amount": "{$REIMBURSEMENT}"
}
]
}
},
{
"app": "state",
"state": "{
var[$bid] = $bid;
var[$reference||'.auction_status'] = 'finished';
response['message'] = 'Congratulations, you have won the auction';
response['payment'] = 'You have paid more than neccessary. We have reimbursed the exceeding amount';
}"
}
]
},
{
"if": "{ $bid < $price_now AND var[$reference||'.auction_status'] == 'running'}",
"messages": [
{
"app": "payment",
"payload": {
"asset": "base",
"outputs": [
{
"address": "{trigger.address}",
"amount": "{$bid-$BOUNCE_FEE}"
},
{
"address": "{trigger.address}",
"amount": "{$REIMBURSEMENT}"
}
]
}
},
{
"app": "state",
"state": "{
response['message'] = 'Sorry, the amount is too low. We have reimbursed your payment minus transaction fees. Please bid again and pay the right amount.';
}"
}
]
},
{
"if": "{ $bid == $price_now AND var[$reference||'.auction_status'] == 'running'}",
"messages": [
{
"app": "state",
"state": "{
var[$bid] = $bid;
var[$reference||'.auction_status'] = 'finished';
response['message'] = 'Congratulations, you have won the auction';
}"
}
]
}
]
}
},
{
"if": "{ trigger.data.buyer_data_confirm }",
"init": "{
$reference = trigger.data.reference;
$buyer = trigger.address;
}",
"messages": [
{
"app": "payment",
"payload": {
"asset": "base",
"outputs": [
{
"address": "{trigger.address}",
"amount": "{$REIMBURSEMENT}"
}
]
}
},
{
"app": "state",
"state": "{
var[$reference||'.auction_status'] = 'buyer_data_confirm';
response['message'] = 'Thank you for confirming that you have sent your data to the seller!';
}"
}
]
},
{
"if": "{ trigger.data.goods_receipt }",
"messages": [
{
"app": "payment",
"payload": {
"asset": "base",
"outputs": [
{
"address": "{trigger.address}",
"amount": "{$REIMBURSEMENT}"
},
{
"address": "{var[$reference||'.seller']}",
"amount": "{$bid}"
}
]
}
},
{
"app": "state",
"state": "{
var[$reference||'.auction_status'] = 'goods_receipt';
response['message'] = 'Thank you for confirming that you have sent your data to the seller!';
}"
}
]
},
{
"if": "{ trigger.data.no_goods_receipt }",
"messages": [
{
"app": "payment",
"payload": {
"asset": "base",
"outputs": [
{
"address": "{trigger.address}",
"amount": "{$REIMBURSEMENT}"
}
]
}
},
{
"app": "state",
"state": "{
var[$reference||'.auction_status'] = 'no_goods_receipt';
response['message'] = 'Thank you for letting us know. We still hold your money as an decentralized escrow and will inform an arbiter to look into the case. After he did that you will receive your money back if the seller can´t prove that he has sent it to you.';
}"
}
]
},
{
"init": "{
bounce("Enter buyer or seller");
}",
"messages": [
{
"app": "state",
"state": "{
response['usage'] = 'Enter buyer or seller';
}"
}
]
}
]
}
}
]