Cryptomiester

Results 52 comments of Cryptomiester

excellent feature request. would love to have this.

if you would like it parsed, use rpc services like quicknode and theindex/chaincrunch. otherwise you will have to fetch the token balances, then parse the metadata one by one, fetch...

alright, I'm working on it. waiting for others to check if they are doing it as well. the confirmation strategy is a much needed feature. it is much better than...

yup, I think we do nothing to the transaction, it is after it that the last valid blockheight is checked upon. I already coded some stuff, let's see if the...

requesting review of #254

I already have an MVP for quic using aioquic. but the performance is not as expected. it loses performance on connect since it needs to look for the ip of...

> gm everyone, > > i found a hacky solution to requesting more compute units - > > ```python > from solana.transaction import TransactionInstruction > > request_compute_ix = TransactionInstruction( >...

I get the same errors in #249 Some errors show InvalidRentPayingAccount error. ``` E solana.rpc.core.RPCException: {'code': -32002, 'message': 'Transaction simulation failed: Transaction leaves an account with a lower balance than...

it is not a hex from the looks of it. I feel like it is base64. try decoding it first.

let the payer sign after the transaction has been added then serialize. ```python tra = Transaction.deserialize(bytes(txSigned)) tra = tra.serialize() tra.sign(payer) txn_id = await client.send_raw_transaction(tra) ``` or ```python tra = Transaction.deserialize(bytes(txSigned))...