git clone --recursive https://github.com/birchmd/aurora-cli-rs.git
cd aurora-cli-rs/
git checkout eip-1559-txs
cd aurora-engine/
make mainnet
cd ..
echo "<YOUR-API-KEY>" > .api_key
cargo run
Note: an API key is required to allow submitting transactions with 0 gas price. The cargo run command will create a new EIP-1559 transaction from address 0x1a642f0e3c3af545e7acbd38b07251b3990914f1 as in the above example. It will print out the NEAR transaction hash and the Aurora transaction hash so that you can confirm the transaction happened on chain, but is not indexed by Aurora.
I sent an EIP-1559 transaction to the relayer. It crated the NEAR transaction https://explorer.mainnet.near.org/transactions/5LViBxmU2ZiN3W7QmWtkoX9x6WqUYXeTSWrn57EPX754 You can see it was successful, but when I query for the transaction the relayer cannot find it
Also doesn't show up on the explorer: https://aurorascan.dev/address/0x1a642f0e3c3af545e7acbd38b07251b3990914f1 Only 22 transactions are listed, but the current nonce of this address is 28 (0x1c in hex):
To reproduce yourself do the following steps:
Note: an API key is required to allow submitting transactions with 0 gas price. The
cargo run
command will create a new EIP-1559 transaction from address0x1a642f0e3c3af545e7acbd38b07251b3990914f1
as in the above example. It will print out the NEAR transaction hash and the Aurora transaction hash so that you can confirm the transaction happened on chain, but is not indexed by Aurora.