AVIator icon indicating copy to clipboard operation
AVIator copied to clipboard

Antivirus evasion project

Results 94 AVIator issues
Sort by recently updated
recently updated
newest added

`TypedTransaction` functions like `TypedTransaction::set_value` return nothing. they either should return `&mut Self` or consume self and return `Self` if we don't want to break existing functions we should return `&mut...

Is it possible to encode and decode contracts calls using bindings generated with abigen, but without actually instantiating them? I know you can use the `MYCONTRACT_ABI.function("myFunction")`, and then decode/encode on...

when i try `cargo build` on windows msys2 ``` $ cargo build Compiling ethers-contract v0.6.0 (C:\msys64\home\leejw\Github\ethers-rs\ethers-contract) Caused by: OS Error 193: %1 is not a valid Win32 application. --> ethers-contract\src\lib.rs:38:9...

bug

**Version** ``` ├── ethers v0.6.2 (https://github.com/gakonst/ethers-rs?branch=master#974441e9) │ ├── ethers-addressbook v0.1.0 (https://github.com/gakonst/ethers-rs?branch=master#974441e9) │ │ ├── ethers-core v0.6.3 (https://github.com/gakonst/ethers-rs?branch=master#974441e9) │ ├── ethers-contract v0.6.2 (https://github.com/gakonst/ethers-rs?branch=master#974441e9) │ │ ├── ethers-contract-abigen v0.6.3 (https://github.com/gakonst/ethers-rs?branch=master#974441e9) │ │...

bug

The `BatchRequest` struct is added and it allows for sending multiple JSON-RPC requests in a single batch. ## Motivation ethers-rs is currently lacking batching of multiple JSON-RPC requests. There are...

Moves RPC transports (and related traits and error) out of `ethers-providers` into a new crate. ## Motivation This is in service of #592. In order to introduce object-safe traits, we...

## Overview This PR picks up on #936 . ## Motivation Currently, compiler support is unstructured. ## Solution Introduces a `Compiler` trait among other abstractions to create a canonical interface...

## Motivation WIP Compile components of a project in parallel. Ref https://github.com/gakonst/foundry/issues/769 https://github.com/gakonst/foundry/issues/166 ## Solution ## PR Checklist - [ ] Added Tests - [ ] Added Documentation - [...

A more structured approach at abstracting away the compiler than https://github.com/gakonst/ethers-rs/pull/934 * Added ethers-compile, and kept ethers-solc ethers-compile * `CompilerTrait` * `GenericCompiler` (with a `CompilerKindEnum` inside), `Vyper` and `Solc` all...

**Is your feature request related to a problem? Please describe.** Sometimes it is desirable to send a function data that intentionally breaks the ABI spec, perhaps to test that the...