abstract-solana 0.0.0.71__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.
- abstract_solana/pumpFun/buy_sell_pump.py +7 -5
- {abstract_solana-0.0.0.71.dist-info → abstract_solana-0.0.0.73.dist-info}/METADATA +1 -1
- {abstract_solana-0.0.0.71.dist-info → abstract_solana-0.0.0.73.dist-info}/RECORD +5 -5
- {abstract_solana-0.0.0.71.dist-info → abstract_solana-0.0.0.73.dist-info}/WHEEL +0 -0
- {abstract_solana-0.0.0.71.dist-info → abstract_solana-0.0.0.73.dist-info}/top_level.txt +0 -0
|
@@ -115,9 +115,11 @@ 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):
|
|
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 == False:
|
|
122
|
+
return txn_sig
|
|
121
123
|
confirm = await confirm_txn(txn_sig) # Await confirmation
|
|
122
124
|
|
|
123
125
|
while not confirm:
|
|
@@ -127,21 +129,21 @@ async def complete_txn(txn, payer_keypair):
|
|
|
127
129
|
|
|
128
130
|
print("Transaction confirmed:", confirm)
|
|
129
131
|
return confirm
|
|
130
|
-
def buy_pump(mint: str, payer_keypair: Pubkey, sol_in=None, slippage=None):
|
|
132
|
+
def buy_pump(mint: str, payer_keypair: Pubkey, sol_in=None, slippage=None,confirm=False):
|
|
131
133
|
sol_in = sol_in or 0.001
|
|
132
134
|
slippage = slippage or 25
|
|
133
135
|
payer_pubkey = get_pubkey(payer_keypair.pubkey())
|
|
134
136
|
txn = pump_fun_buy(mint=mint, payer_pubkey=payer_pubkey, sol_in=sol_in, slippage=slippage)
|
|
135
|
-
completed = asyncio.run(complete_txn(txn, payer_keypair)) # Await here since `complete_txn` is async
|
|
137
|
+
completed = asyncio.run(complete_txn(txn, payer_keypair,confirm=confirm)) # Await here since `complete_txn` is async
|
|
136
138
|
if not completed:
|
|
137
139
|
print("Buy transaction failed")
|
|
138
140
|
return completed
|
|
139
141
|
|
|
140
|
-
def sell_pump(mint:str, payer_keypair:Pubkey, token_balance=None, slippage=None):
|
|
142
|
+
def sell_pump(mint:str, payer_keypair:Pubkey, token_balance=None, slippage=None,confirm=False):
|
|
141
143
|
slippage = slippage or 25
|
|
142
144
|
payer_pubkey = get_pubkey(payer_keypair.pubkey())
|
|
143
145
|
txn = pump_fun_sell(mint=mint, payer_pubkey=payer_pubkey, token_balance=token_balance, slippage=slippage)
|
|
144
|
-
completed = asyncio.run(complete_txn(txn, payer_keypair))
|
|
146
|
+
completed = asyncio.run(complete_txn(txn, payer_keypair,confirm=confirm))
|
|
145
147
|
if not completed:
|
|
146
148
|
print("sell transaction failed")
|
|
147
149
|
return completed
|
|
@@ -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=
|
|
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.
|
|
19
|
-
abstract_solana-0.0.0.
|
|
20
|
-
abstract_solana-0.0.0.
|
|
21
|
-
abstract_solana-0.0.0.
|
|
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,,
|
|
File without changes
|
|
File without changes
|