Skip to content

Commit

Permalink
Goose rewrite of shoot
Browse files Browse the repository at this point in the history
  • Loading branch information
Angel-Petrov committed Feb 2, 2024
1 parent 5798407 commit c0761a8
Show file tree
Hide file tree
Showing 8 changed files with 338 additions and 538 deletions.
387 changes: 282 additions & 105 deletions src/actions/goose.rs

Large diffs are not rendered by default.

18 changes: 16 additions & 2 deletions src/actions/mod.rs
Original file line number Diff line number Diff line change
@@ -1,2 +1,16 @@
pub mod goose;
pub mod shoot;
use crate::config::GatlingConfig;

use self::shoot::GatlingShooterSetup;

mod goose;
mod shoot;

pub async fn shoot(config: GatlingConfig) -> color_eyre::Result<()> {
let mut shooter = GatlingShooterSetup::from_config(config).await?;
shooter.setup().await?;

goose::erc20(&shooter).await?;
goose::erc721(&shooter).await?;

Ok(())
}
Loading

0 comments on commit c0761a8

Please sign in to comment.