Skip to content

Commit 2d7e7ce

Browse files
RolandSherwinjacderida
authored andcommitted
chore: fund the uploaders with more tokens during deploy
1 parent e6db9b4 commit 2d7e7ce

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/funding.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ use log::{debug, error, warn};
1818
use std::collections::HashMap;
1919
use std::str::FromStr;
2020

21-
/// 1 token (1e18)
22-
const DEFAULT_TOKEN_AMOUNT: &str = "1_000_000_000_000_000_000";
21+
/// 100 token (1e20)
22+
const DEFAULT_TOKEN_AMOUNT: &str = "100_000_000_000_000_000_000";
2323
/// 0.1 ETH (1e17)
2424
const DEFAULT_GAS_AMOUNT: &str = "100_000_000_000_000_000";
2525

@@ -35,7 +35,7 @@ pub struct FundingOptions {
3535
/// Have to specify during upscale and deploy
3636
pub uploaders_count: Option<u16>,
3737
/// The amount of tokens to transfer to each uploader.
38-
/// Defaults to 1 token, i.e., 1_000_000_000_000_000_000
38+
/// Defaults to 100 token, i.e., 100_000_000_000_000_000_000
3939
pub token_amount: Option<U256>,
4040
/// The amount of gas tokens to transfer to each uploader
4141
/// Defaults to 0.1 ETH i.e, 100_000_000_000_000_000

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1389,7 +1389,7 @@ enum FundsCommand {
13891389
provider: CloudProvider,
13901390
/// The number of tokens to transfer, in U256
13911391
///
1392-
/// 1 Token = 1_000_000_000_000_000_000. Defaults to 1 token.
1392+
/// 1 Token = 1_000_000_000_000_000_000. Defaults to 100 token.
13931393
#[arg(long)]
13941394
tokens_to_transfer: Option<U256>,
13951395
},

0 commit comments

Comments
 (0)