abstract-solana 0.0.0.73__py3-none-any.whl → 0.0.0.74__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/pump_fun_keys.py +13 -12
- {abstract_solana-0.0.0.73.dist-info → abstract_solana-0.0.0.74.dist-info}/METADATA +1 -1
- {abstract_solana-0.0.0.73.dist-info → abstract_solana-0.0.0.74.dist-info}/RECORD +5 -5
- {abstract_solana-0.0.0.73.dist-info → abstract_solana-0.0.0.74.dist-info}/WHEEL +0 -0
- {abstract_solana-0.0.0.73.dist-info → abstract_solana-0.0.0.74.dist-info}/top_level.txt +0 -0
|
@@ -40,27 +40,25 @@ def get_create_map():
|
|
|
40
40
|
{'instruction_number': '14', 'instruction_name': 'Program', 'token_address': '6EF8rrecthR5Dkzon8Nwu78hRvfCKubJ14M5uBEwF6P', 'token_name': 'Pump.fun'}
|
|
41
41
|
]
|
|
42
42
|
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
bonding_curve = str(derive_bonding_curve(mint)[0])
|
|
46
|
-
bonding_curve_signature = getGenesisSignature(address=bonding_curve)
|
|
47
|
-
txn_data = getTransaction(signature=bonding_curve_signature)
|
|
43
|
+
def get_txnTypesFromGenesisSignature(genesisSignature):
|
|
44
|
+
txn_data = getTransaction(signature=genesisSignature)
|
|
48
45
|
txn_data = get_for_program_ids_info(txn_data)
|
|
49
|
-
|
|
50
46
|
for new_map in get_create_map():
|
|
51
47
|
instructions = txn_data['transaction']['message']['instructions']
|
|
52
48
|
inner_instructions = txn_data['meta']['innerInstructions'][0]['instructions']
|
|
53
49
|
all_instructions = instructions + inner_instructions
|
|
54
|
-
|
|
55
50
|
instruction = [inst for inst in all_instructions if len(inst.get('associatedAccounts', [])) > 13]
|
|
56
|
-
|
|
57
51
|
txn_types = {create_index['instruction_name']: instruction[0]['associatedAccounts'][int(create_index['instruction_number']) - 1] for create_index in get_create_map()}
|
|
58
|
-
|
|
59
52
|
if txn_types:
|
|
60
|
-
txn_types['signature'] =
|
|
53
|
+
txn_types['signature'] = genesisSignature
|
|
61
54
|
break
|
|
62
55
|
return txn_types
|
|
63
56
|
|
|
57
|
+
# Fetches and organizes transaction types based on provided mint
|
|
58
|
+
def getTxnTypes(mint):
|
|
59
|
+
bonding_curve = str(derive_bonding_curve(mint)[0])
|
|
60
|
+
bonding_curve_signature = getGenesisSignature(address=bonding_curve)
|
|
61
|
+
return get_txnTypesFromGenesisSignature(bonding_curve_signature)
|
|
64
62
|
# Retrieve virtual reserves for a bonding curve using a structured layout
|
|
65
63
|
def get_virtual_reserves(bonding_curve: Pubkey):
|
|
66
64
|
bonding_curve_struct = Struct(
|
|
@@ -84,8 +82,11 @@ def get_virtual_reserves(bonding_curve: Pubkey):
|
|
|
84
82
|
return parsed_data
|
|
85
83
|
|
|
86
84
|
# Retrieves comprehensive transaction and reserve data for the mint
|
|
87
|
-
def get_pump_fun_data(mint_str: str):
|
|
88
|
-
|
|
85
|
+
def get_pump_fun_data(mint_str: str=None,signature=None):
|
|
86
|
+
if mint_str:
|
|
87
|
+
txn_types = change_keys_lower(getTxnTypes(mint_str))
|
|
88
|
+
if signature:
|
|
89
|
+
txn_types = change_keys_lower(get_txnTypesFromGenesisSignature(signature))
|
|
89
90
|
bonding_curve = derive_bonding_curve(mint_str)
|
|
90
91
|
virtual_reserves = get_virtual_reserves(bonding_curve)
|
|
91
92
|
if virtual_reserves is None:
|
|
@@ -13,9 +13,9 @@ abstract_solana/utils.py,sha256=RcnGEiZ0aJbcw8ObpjHU3WUFU4Tmy-exCs6qIbEu4_c,444
|
|
|
13
13
|
abstract_solana/pumpFun/__init__.py,sha256=BiRxwJd1JWwEft63zqYwZ_Xs6UDp4hjczjzvuwy3sHg,85
|
|
14
14
|
abstract_solana/pumpFun/buy_sell_pump.py,sha256=fBJRFVfH00bczQ1ZrVPaHh4ot8eJ8ZwanqfPSpp2ur0,7830
|
|
15
15
|
abstract_solana/pumpFun/pumpFunKeys.py,sha256=yMS_fT-0ESndluVpZ17XdMhpXVtSfhtIG5njy7DJkfI,7961
|
|
16
|
-
abstract_solana/pumpFun/pump_fun_keys.py,sha256=
|
|
16
|
+
abstract_solana/pumpFun/pump_fun_keys.py,sha256=bSXjZXAMdnppFhkICcvL_QyHia55GcUe1r20COi9sP8,8291
|
|
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.74.dist-info/METADATA,sha256=YrJAj6X-Sg9YYqajG9lQZmUG-Ketdo4pMiZVb0OPMwA,981
|
|
19
|
+
abstract_solana-0.0.0.74.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
|
|
20
|
+
abstract_solana-0.0.0.74.dist-info/top_level.txt,sha256=SsJYent8eZQ0FU2jmP8wTj7aFZFhNwxxP-5cCTQ2B-o,16
|
|
21
|
+
abstract_solana-0.0.0.74.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|