Skip to content

Commit

Permalink
Merge pull request #516 from NilFoundation/feature/more-liquidity-in-…
Browse files Browse the repository at this point in the history
…zerostate

[GH-#][execution] Increase default balance for default faucets.
  • Loading branch information
Un1oR authored Mar 10, 2025
2 parents 17a4b72 + f65af87 commit 95b873e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nil/internal/execution/zerostate.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ type ZeroStateConfig struct {
}

func CreateDefaultZeroStateConfig(mainPublicKey []byte) (*ZeroStateConfig, error) {
smartAccountValue, err := types.NewValueFromDecimal("10000000000000000000000000000")
smartAccountValue, err := types.NewValueFromDecimal("100000000000000000000000000000000000000000000000000")
if err != nil {
return nil, err
}
faucetValue := smartAccountValue.Mul(types.NewValueFromUint64(uint64(2)))
tokenValue, err := types.NewValueFromDecimal("100000000000000000000")
tokenValue, err := types.NewValueFromDecimal("100000000000000000000000000000000000000000000000000")
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 95b873e

Please sign in to comment.