abstract-solana 0.0.0.72__py3-none-any.whl → 0.0.0.73__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of abstract-solana might be problematic. Click here for more details.

@@ -115,22 +115,21 @@ async def confirm_txn(txn_sig, max_retries=20, retry_interval=3):
115
115
  print(f"Failed to confirm transaction after {max_retries} attempts.")
116
116
  return txn_sig
117
117
 
118
- async def complete_txn(txn, payer_keypair,confirm=True):
118
+ async def complete_txn(txn, payer_keypair,confirm=False):
119
119
  txn_sig = await sendTransaction(txn=txn, payer_keypair=payer_keypair, skip_preflight=True) # Await this async call
120
120
  print("Transaction Signature", txn_sig)
121
- if confirm:
122
- confirm = await confirm_txn(txn_sig) # Await confirmation
121
+ if confirm == False:
122
+ return txn_sig
123
+ confirm = await confirm_txn(txn_sig) # Await confirmation
123
124
 
124
- while not confirm:
125
- print("Waiting for transaction confirmation...")
126
- await asyncio.sleep(1) # Use asyncio.sleep instead of time.sleep to avoid blocking
127
- confirm = await confirm_txn(txn_sig) # Await confirmation check again
128
- if confirm:
129
- return confirm
130
- print("Transaction confirmed:", confirm)
131
- return confirm
132
- return txn_sig
133
- def buy_pump(mint: str, payer_keypair: Pubkey, sol_in=None, slippage=None,confirm=True):
125
+ while not confirm:
126
+ print("Waiting for transaction confirmation...")
127
+ await asyncio.sleep(1) # Use asyncio.sleep instead of time.sleep to avoid blocking
128
+ confirm = await confirm_txn(txn_sig) # Await confirmation check again
129
+
130
+ print("Transaction confirmed:", confirm)
131
+ return confirm
132
+ def buy_pump(mint: str, payer_keypair: Pubkey, sol_in=None, slippage=None,confirm=False):
134
133
  sol_in = sol_in or 0.001
135
134
  slippage = slippage or 25
136
135
  payer_pubkey = get_pubkey(payer_keypair.pubkey())
@@ -140,7 +139,7 @@ def buy_pump(mint: str, payer_keypair: Pubkey, sol_in=None, slippage=None,confir
140
139
  print("Buy transaction failed")
141
140
  return completed
142
141
 
143
- def sell_pump(mint:str, payer_keypair:Pubkey, token_balance=None, slippage=None,confirm=True):
142
+ def sell_pump(mint:str, payer_keypair:Pubkey, token_balance=None, slippage=None,confirm=False):
144
143
  slippage = slippage or 25
145
144
  payer_pubkey = get_pubkey(payer_keypair.pubkey())
146
145
  txn = pump_fun_sell(mint=mint, payer_pubkey=payer_pubkey, token_balance=token_balance, slippage=slippage)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: abstract_solana
3
- Version: 0.0.0.72
3
+ Version: 0.0.0.73
4
4
  Home-page: https://github.com/AbstractEndeavors/abstract_solana
5
5
  Author: putkoff
6
6
  Author-email: partners@abstractendeavors.com
@@ -11,11 +11,11 @@ abstract_solana/pumpFunKeys.py,sha256=KHZyQ_GFS9XzmNNMzEDQkAZsiM5Mpua6ZE1e3WebEr
11
11
  abstract_solana/signature_data_parse.py,sha256=5AOMtJZADWcwR0JLDbd2kXZNzW129qeB0lvYUrE_tm0,1974
12
12
  abstract_solana/utils.py,sha256=RcnGEiZ0aJbcw8ObpjHU3WUFU4Tmy-exCs6qIbEu4_c,444
13
13
  abstract_solana/pumpFun/__init__.py,sha256=BiRxwJd1JWwEft63zqYwZ_Xs6UDp4hjczjzvuwy3sHg,85
14
- abstract_solana/pumpFun/buy_sell_pump.py,sha256=Nb8GxOaC0p3EphMPicKfiHMpGiMP-R9cXAJDg8fFPa0,7896
14
+ abstract_solana/pumpFun/buy_sell_pump.py,sha256=fBJRFVfH00bczQ1ZrVPaHh4ot8eJ8ZwanqfPSpp2ur0,7830
15
15
  abstract_solana/pumpFun/pumpFunKeys.py,sha256=yMS_fT-0ESndluVpZ17XdMhpXVtSfhtIG5njy7DJkfI,7961
16
16
  abstract_solana/pumpFun/pump_fun_keys.py,sha256=3ykkcogaptbzJ6MwI6OWzUdo5rA1qW54fY0KAJAXgIc,8050
17
17
  abstract_solana/pumpFun/token_utils.py,sha256=NhMvpTnw3QZk8DmeKYFzuqEMEZEHUlrBKfFp7662ohw,2684
18
- abstract_solana-0.0.0.72.dist-info/METADATA,sha256=gMd0xb9DblmTZYgYdh4O9njJC6Is0kL0x0noqyhOsEQ,981
19
- abstract_solana-0.0.0.72.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
20
- abstract_solana-0.0.0.72.dist-info/top_level.txt,sha256=SsJYent8eZQ0FU2jmP8wTj7aFZFhNwxxP-5cCTQ2B-o,16
21
- abstract_solana-0.0.0.72.dist-info/RECORD,,
18
+ abstract_solana-0.0.0.73.dist-info/METADATA,sha256=v8Gk3AWZPCLgtYPxIbPwQMfdvwfz457ue-KKausp-K4,981
19
+ abstract_solana-0.0.0.73.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
20
+ abstract_solana-0.0.0.73.dist-info/top_level.txt,sha256=SsJYent8eZQ0FU2jmP8wTj7aFZFhNwxxP-5cCTQ2B-o,16
21
+ abstract_solana-0.0.0.73.dist-info/RECORD,,