You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PS C:\Users\user\git repos\pump-fun-bot> py trade.py
Traceback (most recent call last):
File "C:\Users\user\git repos\pump-fun-bot\trade.py", line 14, in
from solana.transaction import Transaction
ModuleNotFoundError: No module named 'solana.transaction'
whats i did to try and solve it was to change imports from:
from solana.transaction import Transaction
to: from solder.transaction import Transaction
it works but i get the following error after a while
PS C:\Users\user\git repos\pump-fun-bot> py trade.py Waiting for a new token creation... Subscribed to blocks mentioning program: 6EF8rrecthR5Dkzon8Nwu78hRvfCKubJ14M5uBEwF6P New token created: { "name": "sell me this pen", "symbol": "pen", "uri": "https://ipfs.io/ipfs/Qmc5VH8F1KCv9k5vLCT4UhxexnzWbHvUkyxmLqNh6ojMNy", "mint": "BaYhwX85xWJBcM9ULmL84J9betJsgWCnP5KavE6Cpump", "bondingCurve": "AAXdfdNSzD8faejQEWmwA4EJWEM7S3rpMbe2j7bycbgP", "associatedBondingCurve": "8ohL3wD8zeVK15r1PWAVn1jSQZViCC9JupDkXACz3SRz", "user": "FXwZoAzHhYT33cijZKhAiESikVUouvTrs1ERxLDKUEGr" } Token information saved to trades\BaYhwX85xWJBcM9ULmL84J9betJsgWCnP5KavE6Cpump.txt Waiting for 15 seconds for things to stabilize... Bonding curve address: AAXdfdNSzD8faejQEWmwA4EJWEM7S3rpMbe2j7bycbgP Token price: 0.0000000296 SOL Buying 0.000100 SOL worth of the new token with 10.0% slippage tolerance... Creating associated token account (Attempt 1)... Attempt 1 to create associated token account failed: Transaction.new() missing 3 required positional arguments: 'from_keypairs', 'message', and 'recent_blockhash' Retrying in 1 seconds...
after some time troubleshooting i decided to hop on here to see if anyone else is facing the same issue.....if so how did you solve it and any succsesfull trades.thank you
The text was updated successfully, but these errors were encountered:
PS C:\Users\user\git repos\pump-fun-bot> py trade.py
Traceback (most recent call last):
File "C:\Users\user\git repos\pump-fun-bot\trade.py", line 14, in
from solana.transaction import Transaction
ModuleNotFoundError: No module named 'solana.transaction'
whats i did to try and solve it was to change imports from:
from solana.transaction import Transaction
to:
from solder.transaction import Transaction
it works but i get the following error after a while
PS C:\Users\user\git repos\pump-fun-bot> py trade.py Waiting for a new token creation... Subscribed to blocks mentioning program: 6EF8rrecthR5Dkzon8Nwu78hRvfCKubJ14M5uBEwF6P New token created: { "name": "sell me this pen", "symbol": "pen", "uri": "https://ipfs.io/ipfs/Qmc5VH8F1KCv9k5vLCT4UhxexnzWbHvUkyxmLqNh6ojMNy", "mint": "BaYhwX85xWJBcM9ULmL84J9betJsgWCnP5KavE6Cpump", "bondingCurve": "AAXdfdNSzD8faejQEWmwA4EJWEM7S3rpMbe2j7bycbgP", "associatedBondingCurve": "8ohL3wD8zeVK15r1PWAVn1jSQZViCC9JupDkXACz3SRz", "user": "FXwZoAzHhYT33cijZKhAiESikVUouvTrs1ERxLDKUEGr" } Token information saved to trades\BaYhwX85xWJBcM9ULmL84J9betJsgWCnP5KavE6Cpump.txt Waiting for 15 seconds for things to stabilize... Bonding curve address: AAXdfdNSzD8faejQEWmwA4EJWEM7S3rpMbe2j7bycbgP Token price: 0.0000000296 SOL Buying 0.000100 SOL worth of the new token with 10.0% slippage tolerance... Creating associated token account (Attempt 1)... Attempt 1 to create associated token account failed: Transaction.new() missing 3 required positional arguments: 'from_keypairs', 'message', and 'recent_blockhash' Retrying in 1 seconds...
after some time troubleshooting i decided to hop on here to see if anyone else is facing the same issue.....if so how did you solve it and any succsesfull trades.thank you
The text was updated successfully, but these errors were encountered: