AVIator
AVIator copied to clipboard
Antivirus evasion project
Currently `TryFrom` for `Signature` only works if length is 65 ([code](https://github.com/gakonst/ethers-rs/blob/master/ethers-core/src/types/signature.rs#L163-L173)). We can check the length and if it's greater than 109, meaning a raw tx, construct the signature from...
tests that interact with infura commonly fail due to * ~~rate limited~~ * nonce manager snafu This results in failed test jobs and it is not immediately apparent if a...
The current output, if incompatible versions are detected, is not really easy on the eye.
In the code snipper below, I need to use a signer for two purposes: either to sign an off-chain payload, or to sign an on-chain transaction. The current API makes...
the [miette](https://docs.rs/miette/latest/miette) crate comes with great error diagnistics out of the box that is also useful for libraries https://docs.rs/miette/latest/miette/#-in-libraries combined with foundry error handling this could provide more valuable errors...
**Is your feature request related to a problem? Please describe.** https://github.com/gakonst/foundry/issues/836 **Describe the solution you'd like** currently `ContractFactory` have `deply_tokens` and `deploy` methods, but we can't specify the `gas_price` and...
**Is your feature request related to a problem? Please describe.** I think currently it is not possible for a function to return a pending transaction because it refers to the...
`weth` is defined as `WETH9` ```json "weth": { "addresses": { "mainnet": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", "rinkeby": "0xc778417E063141139Fce010982780140Aa0cD5Ab", "ropsten": "0xc778417E063141139Fce010982780140Aa0cD5Ab", "goerli": "0xB4FBF271143F4FBf7B91A5ded31805e42b2208d6", "kovan": "0xd0A1E359811322d97991E03f863a0C30C2cF029C", "optimism": "0x4200000000000000000000000000000000000006", "optimism_kovan": "0x4200000000000000000000000000000000000006" } }, ``` There are other...
**Is your feature request related to a problem? Please describe.** It would be nice to be able to add the state override argument to eth_call. [docs here](https://geth.ethereum.org/docs/rpc/ns-eth#3-object---state-override-set) **Describe the solution...
Tracking issue for complete `ethers-etherscan` client crate ## Endpoints - [ ] accounts - [x] contracts - [x] get abi - [x] get source - [x] verify contract (implemented but...