3HE3AWRWIQDVXR5RSRXQKNMPT4INCHFR Obyte exchange protocol v2
| 1 | [ |
| 2 | "autonomous agent", |
| 3 | { |
| 4 | "base_aa": "2JYYNOSRFGLI3TBI4FVSE6GFBUAZTTI3", |
| 5 | "params": { |
| 6 | "x_asset": "TKTmSpLhY2CF8s93OSVJvp/0e9pxrIeGrUm4c1svOLQ=", |
| 7 | "y_asset": "RF/ysZ/ZY4leyc3huUq1yFc0xTS0GdeFQu8RmXas4ys=", |
| 8 | "swap_fee": 0.001, |
| 9 | "exit_fee": 0.01, |
| 10 | "arb_profit_tax": 0.9, |
| 11 | "leverage_profit_tax": 0.25, |
| 12 | "leverage_token_tax": 0.1, |
| 13 | "mid_price": 8.75, |
| 14 | "price_deviation": 1.07, |
| 15 | "base_interest_rate": 0.1, |
| 16 | "pool_leverage": 1, |
| 17 | "alpha": 0.5, |
| 18 | "period_length": 3600 |
| 19 | } |
| 20 | } |
| 21 | ] |
- MCI: 10834549
- Not bounced
- Response unit:
- Response: {
"responseVars": {
"interest": {
"x": 0,
"y": 26.61525292627
},
"event": {
"arb_profit_tax": 0.000419802275940387,
"direction": "x2y",
"in": 44,
"out": 334,
"swap_fee": 0.334718731945525,
"total_fee": 0.718731945525465,
"type": "swap"
}
}
}
- MCI: 10814022
- Not bounced
- Response unit:
- Response: {
"responseVars": {
"interest": {
"x": 0,
"y": 0.004101844013454
},
"event": {
"arb_profit_tax": 23.4318009260194,
"direction": "x2y",
"in": 10319,
"out": 78894,
"swap_fee": 78.9965442267614,
"total_fee": 102.544226761381,
"type": "swap"
}
}
}
- MCI: 10814019
- Not bounced
- Response unit:
- Response: {
"responseVars": {
"interest": {
"x": 0,
"y": 1.617984867986
},
"event": {
"arb_profit_tax": 0.730577459590573,
"direction": "x2y",
"in": 1823,
"out": 13939,
"swap_fee": 13.9542031227281,
"total_fee": 15.2031227281187,
"type": "swap"
}
}
}
- MCI: 10812851
- Not bounced
- Response unit:
- Response: {
"responseVars": {
"interest": {
"x": 0,
"y": 0.0003231134099711
},
"event": {
"arb_profit_tax": 3.3998654440179,
"direction": "x2y",
"in": 3930,
"out": 30069,
"swap_fee": 30.1029936864393,
"total_fee": 33.9936864392572,
"type": "swap"
}
}
}
- MCI: 10812848
- Not bounced
- Response unit:
- Response: {
"responseVars": {
"interest": {
"x": 0,
"y": 0.002590724260413
},
"event": {
"arb_profit_tax": 5.31583303800911,
"direction": "x2y",
"in": 4914,
"out": 37604,
"swap_fee": 37.6473433270959,
"total_fee": 43.343327095905,
"type": "swap"
}
}
}
- MCI: 10812842
- Not bounced
- Response unit:
- Response: {
"responseVars": {
"interest": {
"x": 0,
"y": 0.0004690805693055
},
"event": {
"arb_profit_tax": 5.31955071047174,
"direction": "x2y",
"in": 4915,
"out": 37624,
"swap_fee": 37.6677617419218,
"total_fee": 43.7617419217935,
"type": "swap"
}
}
}
- MCI: 10812841
- Not bounced
- Response unit:
- Response: {
"responseVars": {
"interest": {
"x": 0,
"y": 1221.065346061
},
"event": {
"arb_profit_tax": 3.40652888973121,
"direction": "x2y",
"in": 3933,
"out": 30115,
"swap_fee": 30.14874541022,
"total_fee": 33.7454102199512,
"type": "swap"
}
}
}
- MCI: 10766202
- Bounced
- Response unit:
- Response:
| Message | formula
require(!($x_in AND $y_in), "received both assets");
if ($y_in){
$received_amount_Y = $received_amount_y;
$in_asset = $y_asset;
$out_asset = $x_asset;
$delta_Yn = trigger.data.delta_yn;
}
else{ // x <-> y swap their roles. Uppercase X, Y, and P refer to invertable values
$received_amount_Y = $received_amount_x;
$in_asset = $x_asset;
$out_asset = $y_asset;
$delta_Yn = trigger.data.delta_xn;
}
$res = ($final_price ? $pool_lib_by_price : $pool_lib)#6.$swap($balances, $l_balances, $profits, $recent, $x0, $y0, $y_in, $final_price ? 0 : $delta_Yn, $final_price, $received_amount_Y, trigger.data.min_amount_out, trigger.initial_address, $pool_props);
// further hops
$hops = trigger.data.hops;
$address = $hops[0].address OTHERWISE trigger.address;
$change_address = $hops[0].change_address OTHERWISE $address;
if ($hops){
$data_for_next_hop = $hops[0].data;
delete($hops, 0); // remove the head hop
if ($data_for_next_hop OR length($hops)){
$forwarded_data = $data_for_next_hop OTHERWISE {};
if (length($hops))
$forwarded_data.hops = $hops;
}
}
failed: output amount 177703 would be less than the expected minimum 178577 |
|---|
- MCI: 10766201
- Bounced
- Response unit:
- Response:
| Message | formula
require(!($x_in AND $y_in), "received both assets");
if ($y_in){
$received_amount_Y = $received_amount_y;
$in_asset = $y_asset;
$out_asset = $x_asset;
$delta_Yn = trigger.data.delta_yn;
}
else{ // x <-> y swap their roles. Uppercase X, Y, and P refer to invertable values
$received_amount_Y = $received_amount_x;
$in_asset = $x_asset;
$out_asset = $y_asset;
$delta_Yn = trigger.data.delta_xn;
}
$res = ($final_price ? $pool_lib_by_price : $pool_lib)#6.$swap($balances, $l_balances, $profits, $recent, $x0, $y0, $y_in, $final_price ? 0 : $delta_Yn, $final_price, $received_amount_Y, trigger.data.min_amount_out, trigger.initial_address, $pool_props);
// further hops
$hops = trigger.data.hops;
$address = $hops[0].address OTHERWISE trigger.address;
$change_address = $hops[0].change_address OTHERWISE $address;
if ($hops){
$data_for_next_hop = $hops[0].data;
delete($hops, 0); // remove the head hop
if ($data_for_next_hop OR length($hops)){
$forwarded_data = $data_for_next_hop OTHERWISE {};
if (length($hops))
$forwarded_data.hops = $hops;
}
}
failed: output amount 177703 would be less than the expected minimum 178577 |
|---|
- MCI: 10766200
- Bounced
- Response unit:
- Response:
| Message | formula
require(!($x_in AND $y_in), "received both assets");
if ($y_in){
$received_amount_Y = $received_amount_y;
$in_asset = $y_asset;
$out_asset = $x_asset;
$delta_Yn = trigger.data.delta_yn;
}
else{ // x <-> y swap their roles. Uppercase X, Y, and P refer to invertable values
$received_amount_Y = $received_amount_x;
$in_asset = $x_asset;
$out_asset = $y_asset;
$delta_Yn = trigger.data.delta_xn;
}
$res = ($final_price ? $pool_lib_by_price : $pool_lib)#6.$swap($balances, $l_balances, $profits, $recent, $x0, $y0, $y_in, $final_price ? 0 : $delta_Yn, $final_price, $received_amount_Y, trigger.data.min_amount_out, trigger.initial_address, $pool_props);
// further hops
$hops = trigger.data.hops;
$address = $hops[0].address OTHERWISE trigger.address;
$change_address = $hops[0].change_address OTHERWISE $address;
if ($hops){
$data_for_next_hop = $hops[0].data;
delete($hops, 0); // remove the head hop
if ($data_for_next_hop OR length($hops)){
$forwarded_data = $data_for_next_hop OTHERWISE {};
if (length($hops))
$forwarded_data.hops = $hops;
}
}
failed: output amount 177703 would be less than the expected minimum 178577 |
|---|
Show transactions in assets:
No transactions found, it may be worth changing the filter
Unit ID
Date
From
Direction
To
Amount
02.09.2024 16:59:38
3HE3AWRWIQDVXR5RSRXQKNMPT4INCHFR
out
02.09.2024 16:58:20
in
3HE3AWRWIQDVXR5RSRXQKNMPT4INCHFR
02.09.2024 16:58:20
in
3HE3AWRWIQDVXR5RSRXQKNMPT4INCHFR
22.08.2024 12:24:43
3HE3AWRWIQDVXR5RSRXQKNMPT4INCHFR
out
22.08.2024 12:24:43
3HE3AWRWIQDVXR5RSRXQKNMPT4INCHFR
out
22.08.2024 12:24:43
in
3HE3AWRWIQDVXR5RSRXQKNMPT4INCHFR
22.08.2024 12:24:43
in
3HE3AWRWIQDVXR5RSRXQKNMPT4INCHFR
22.08.2024 12:22:26
3HE3AWRWIQDVXR5RSRXQKNMPT4INCHFR
out
22.08.2024 12:22:26
3HE3AWRWIQDVXR5RSRXQKNMPT4INCHFR
out