349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695 | class AxoOBMarketState(AbstractOrderBookState):
fee: int = 10
spot: float = 1
plutus_v2: bool = True
inactive: bool = False
_stake_address: ClassVar[Address] = Address.decode(
"addr1z92l7rnra7sxjn5qv5fzc4fwsrrm29mgkleqj9a0y46j5lrryf9mtf9layje8u7u7wmap6alr28l90ry5t9nlyldjjsse4mxc9",
)
_client: ClassVar[AxoAPIClient] = AxoAPIClient()
_reference_utxo: ClassVar[UTxO | None] = None
_deposit: Assets = Assets(lovelace=8000000)
@classmethod
def dex(cls) -> str:
return "Axo"
@classmethod
def order_selector(self) -> list[str]:
"""Order selection information."""
addresses = [
"addr1z92l7rnra7sxjn5qv5fzc4fwsrrm29mgkleqj9a0y46j5lrryf9mtf9layje8u7u7wmap6alr28l90ry5t9nlyldjjsse4mxc9",
]
return addresses
@classmethod
def pool_selector(self) -> PoolSelector:
"""Pool selection information."""
return []
@property
def swap_forward(self) -> bool:
return False
@classmethod
def default_script_class(cls):
return PlutusV2Script
@classmethod
def reference_utxo(cls) -> UTxO | None:
if cls._reference_utxo is None:
script_reference = get_backend().get_script_from_address(cls._stake_address)
script = cls.default_script_class()(bytes.fromhex(script_reference.script))
cls._reference_utxo = UTxO(
input=TransactionInput(
transaction_id=TransactionId(
bytes.fromhex(
script_reference.tx_hash,
),
),
index=script_reference.tx_index,
),
output=TransactionOutput(
address=Address.decode(script_reference.address),
amount=asset_to_value(script_reference.assets),
script=script,
),
)
return cls._reference_utxo
@classmethod
def _process_ob(
self,
ob: AxoOBResponse,
) -> tuple[list[OrderBookOrder], list[OrderBookOrder]]:
prices = get_token_prices(assets=[ob.left, ob.right])
left = ob.left if ob.left != "" else "lovelace"
if prices[0].policy_id + prices[0].policy_name == left:
token_a_decimals = prices[0].decimals
token_b_decimals = prices[1].decimals
else:
token_a_decimals = prices[1].decimals
token_b_decimals = prices[0].decimals
sell_book = []
for index in range(len(ob.sell_side_price)):
sell_book.append(
OrderBookOrder(
price=ob.sell_side_price[index]
* 10 ** (token_a_decimals - token_b_decimals),
quantity=int(ob.sell_side_amount[index] * 10**token_b_decimals),
),
)
buy_book = []
for index in range(len(ob.buy_side_price)):
buy_book.append(
OrderBookOrder(
price=ob.buy_side_price[index] ** -1
* 10 ** (token_b_decimals - token_a_decimals),
quantity=int(
ob.buy_side_amount[index]
* 10**token_a_decimals
* ob.buy_side_price[index],
),
),
)
return BuyOrderBook(buy_book), SellOrderBook(sell_book)
@classmethod
def get_book(cls, assets: Assets) -> "AxoOBMarketState":
aob, ob, spot = cls._client.get_ob_info(assets)
if spot is None:
raise InvalidPoolError
try:
buy_book, sell_book = cls._process_ob(ob=aob)
buy_book_full, sell_book_full = cls._process_ob(ob=ob)
except IndexError:
logger.error(f"Error getting Axo order book for assets: {assets}")
raise InvalidPoolError
if "lovelace" in assets:
spot = 1.0
instance = cls(
assets=assets,
spot=spot,
block_time=int(datetime.now().timestamp()),
block_index=0,
buy_book_full=buy_book_full,
sell_book_full=sell_book_full,
)
return instance
@classmethod
def order_datum_class(self) -> type[PlutusData]:
return AxoOrderDatum
@property
def stake_address(self) -> Address:
return self._stake_address
def swap_utxo(
self,
address_source: Address,
in_assets: Assets,
out_assets: Assets,
tx_builder: TransactionBuilder,
extra_assets: Assets | None = None,
address_target: Address | None = None,
datum_target: PlutusData | None = None,
) -> tuple[TransactionOutput, PlutusData, UTxO]:
# Basic checks
if len(in_assets) != 1 or len(out_assets) != 1:
raise ValueError(
"Only one asset can be supplied as input, "
+ "and one asset supplied as output.",
)
# Get the mint input UTxO
utxo_input = None
for utxo in tx_builder.inputs:
if utxo.output.amount.coin > 1200000:
if utxo_input is None or len(utxo_input.output.to_cbor_hex()) < len(
utxo.output.to_cbor_hex(),
):
utxo_input = utxo
# Get the order build info
prices = get_token_prices(assets=[in_assets.unit(), out_assets.unit()])
if prices[0].policy_id + prices[0].policy_name == in_assets.unit():
in_decimals = prices[0].decimals
out_decimals = prices[1].decimals
else:
in_decimals = prices[1].decimals
out_decimals = prices[0].decimals
params = AxoCreateParams(
left=in_assets.unit() if in_assets.unit() != "lovelace" else "",
right=out_assets.unit() if out_assets.unit() != "lovelace" else "",
amount=in_assets.quantity() / 10**in_decimals,
slippage=self.slippage(in_assets=in_assets, out_assets=out_assets) + 2.0,
)
create: AxoCreateResponse = self._client.create(
wallet_addr=address_source.encode(),
tx_hash=utxo_input.input.transaction_id.payload.hex(),
tx_idx=utxo_input.input.index,
params=params,
)
# Create the mint metadata
metadata = AuxiliaryData(
AlonzoMetadata(metadata=Metadata({721: create.nft_metadata})),
)
tx_builder.auxiliary_data = metadata
# Create the axo receipt
axo_receipt = MultiAsset.from_primitive(
{
bytes.fromhex(create.strat_id): {
bytes.fromhex(create.token_name): 2,
},
},
)
tx_builder.mint = axo_receipt
redeemer = Redeemer(CancelRedeemer())
redeemer.tag = RedeemerTag.MINT
tx_builder.add_minting_script(
PlutusV2Script(bytes.fromhex(create.policy_script)),
redeemer,
)
# Add in the recommended lovelace to the input and the axo receipt
in_assets.root["lovelace"] = (
in_assets["lovelace"]
+ self.batcher_fee(
in_assets=in_assets,
out_assets=out_assets,
extra_assets=extra_assets,
).quantity()
+ self.deposit(in_assets=in_assets, out_assets=out_assets).quantity()
)
in_assets.root[create.strat_id + create.token_name] = 1
# Create the swap utxo
order_datum = AxoOrderDatum.from_cbor(create.datum)
output = TransactionOutput(
address=create.algo_addr,
amount=asset_to_value(in_assets),
datum=order_datum,
)
tx_builder.add_output(output)
# Create the receipt UTxO
utxo = TransactionOutput(
address=address_source,
amount=Value(
coin=1000000,
multi_asset=MultiAsset.from_primitive(
{
bytes.fromhex(create.strat_id): {
bytes.fromhex(create.token_name): 1,
},
},
),
),
)
utxo.amount.coin = min_lovelace(context=tx_builder.context, output=utxo)
tx_builder.add_output(utxo)
return output, order_datum, utxo_input
@property
def volume_fee(self) -> int:
return 10
@classmethod
def cancel_redeemer(cls) -> PlutusData:
return Redeemer(AxoCancelRedeemer())
def batcher_fee(
self,
in_assets: Assets | None = None,
out_assets: Assets | None = None,
extra_assets: Assets | None = None,
) -> Assets:
"""Batcher fee.
Args:
in_assets: The input assets for the swap
out_assets: The output assets for the swap
extra_assets: Extra assets included in the transaction
"""
if in_assets.unit() == "lovelace":
fees = max(self.volume_fee * in_assets.quantity() // 10000, 1200000)
elif out_assets.unit() == "lovelace":
fees = max(self.volume_fee * out_assets.quantity() // 10000, 1200000)
else:
fees = max(
self.volume_fee * in_assets.quantity() * self.spot // 10000,
1200000,
)
# The below code estimates the Cardano cost of executing the tx
fees += 250000 # ~cost of output tx
if in_assets.unit() == self.unit_a:
book = self.sell_book_full
else:
book = self.buy_book_full
# Each fill order incurs ~0.6 ada cost
index = 0
in_quantity = in_assets.quantity()
while in_quantity > 0 and index < len(book):
available = book[index].quantity * book[index].price
fees += 600000
if available > in_quantity:
in_quantity = 0
else:
in_quantity -= book[index].price * book[index].quantity
index += 1
return Assets(lovelace=fees)
def slippage(
self,
in_assets: Assets | None = None,
out_assets: Assets | None = None,
) -> Assets:
"""Calculate slippage.
Args:
in_assets: The input assets for the swap
out_assets: The output assets for the swap
extra_assets: Extra assets included in the transaction
"""
if in_assets.unit() == "lovelace":
fees = max(self.volume_fee * in_assets.quantity() // 10000, 1200000)
elif out_assets.unit() == "lovelace":
fees = max(self.volume_fee * out_assets.quantity() // 10000, 1200000)
else:
fees = max(
self.volume_fee * in_assets.quantity() * self.spot // 10000,
1200000,
)
# The below code estimates the Cardano cost of executing the tx
fees += 250000 # ~cost of output tx
if in_assets.unit() == self.unit_a:
book = self.sell_book_full
else:
book = self.buy_book_full
# Each fill order incurs ~0.5 ada cost
index = 0
best_price = book[index].price
in_quantity = in_assets.quantity()
while in_quantity > 0 and index < len(book):
available = book[index].quantity * book[index].price
fees += 500000
if available > in_quantity:
in_quantity = 0
else:
in_quantity -= book[index].price * book[index].quantity
last_price = book[index].price
index += 1
return 100 * abs(1 - (best_price / last_price))
@property
def pool_id(self):
return ".".join([self.dex, self.unit_a, self.unit_b])
|