0

我开始开发一个小程序,它应该允许我通过 pancakeswap 路由器购买代币。当我尝试进行交易时,我收到“未知帐户”错误。我认为这可能是因为我应该在本地“登录”到我的元掩码帐户,但这只是我的假设。我导出了我的私钥并尝试使用它创建一个帐户,w3.eth.account.from_key(privateKey)但它没有做任何事情。我也尝试w3.toChecksumAddress(address)在所有地址上做,但它没有做任何事情。我不知道此时我能做什么。


这是我的代码:
binanceRPC = 'https://bsc-dataseed1.defibit.io/'
w3 = Web3(Web3.HTTPProvider(binanceRPC))


PCS_V2_ADDR = w3.toChecksumAddress(
    '0x10ED43C718714eb63d5aA57B78B54704E256024E')
PCS_ABI = #there would be pcs ABI but i needed to delete it due to character limit on stack
PCS_ROUTER_CONTRACT = w3.eth.contract(address=PCS_V2_ADDR, abi=PCS_ABI)

print(w3.isConnected())  # True

WBNB = w3.toChecksumAddress('0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c')
shitcoin = w3.toChecksumAddress('0x3ee2200efb3400fabb9aacf31297cbdd1d435d47')

nonce = w3.eth.get_transaction_count(testAccAddr)

amountIn = 0.0005

tx = {
    'nonce': nonce,
    'from': testAccAddr,
    'to': PCS_V2_ADDR,
    'gasPrice': 5,
    'gas': 165250,
    'value': w3.toWei(amountIn, 'ether')
}

w3.eth.account.privateKeyToAccount(testAccPrvKey)
print(w3.eth.accounts)  # []

txHash = PCS_ROUTER_CONTRACT.functions.swapExactETHForTokens(0, [w3.toChecksumAddress('0xbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c'), w3.toChecksumAddress(
    '0x3ee2200efb3400fabb9aacf31297cbdd1d435d47')], testAccAddr, 1621289953).transact(tx)  # ValueError: {'code': -32000, 'message': 'unknown account'}
4

1 回答 1

0

尝试这样的事情:

account = w3.eth.account.privateKeyToAccount(testAccPrvKey)
w3.eth.default_account = account.address
txn = PCS_ROUTER_CONTRACT.functions.swapExactETHForTokens(0, 
    [w3.toChecksumAddress('0xbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c'), 
     w3.toChecksumAddress('0x3ee2200efb3400fabb9aacf31297cbdd1d435d47')], 
     testAccAddr, 1621289953).buildTransaction({
        'chainId': 97, #This is testnet
        'value': w3.toWei(amountIn, 'ether'),
        'nonce': nonce,
    })


signed_txn = account.signTransaction(txn)
txid = w3.toHex(w3.eth.sendRawTransaction(signed_txn.rawTransaction))
于 2021-05-24T01:46:31.820 回答