-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
76 lines (58 loc) · 2.21 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
import json
from ffio import FixedFloatAPI
import os
from dotenv import load_dotenv
import code
load_dotenv()
api_key = os.getenv("FIXED_FLOAT_API_KEY")
api_secret = os.getenv("FIXED_FLOAT_API_SECRET")
target_address = os.getenv("TARGET_ADDRESS")
api = FixedFloatAPI(api_key, api_secret)
def create_new_order():
order = api.create_order(
from_currency="BTC",
to_currency="ADA",
amount=0.025,
direction="from",
order_type="float",
address=target_address,
)
sendToAddress = order["data"]["from"]["address"]
sendAmount = order["data"]["from"]["amount"]
sendAmountSats = int(float(sendAmount) * 100_000_000)
order_id = order["data"]["id"]
order_secret_token = order["data"]["token"]
details = api.get_order_details(order_id, order_secret_token)
print("\nOrder Details:")
print(f"Send {sendAmount} BTC ({sendAmountSats} sats)")
print(f"To address: {sendToAddress}")
print(f"Order ID: {order_id}")
print(f"Order status: {details['data']['status']}")
print(f"You will receive: {details['data']['to']['amount']} ADA")
return details
def main():
try:
price_check = api.get_price(
from_currency="BTC",
to_currency="ADA",
amount=0.01,
direction="from",
order_type="float"
)
print(json.dumps(price_check, indent=2)) # Print the full response
print("Price check response:")
print(f"You will receive approximately: {price_check['data']['to']['amount']} ADA")
print(f"Exchange rate: 1 BTC = {float(price_check['data']['to']['amount'])/0.001} ADA")
create_new_order()
code.interact(local=locals())
order_id = order["data"]["id"]
order_secret_token = order["data"]["token"]
print("\nOrder created successfully:")
print(f"Order ID: {order_id}")
print(f"Send {order['data']['fromAmount']} BTC to: {order['data']['from']}")
print(f"You will receive: {order['data']['toAmount']} ADA")
print(f"Order status: {order['data']['status']}")
except Exception as e:
print(f"An error occurred: {str(e)}")
if __name__ == "__main__":
main()