Skip to content

Commit

Permalink
feat: update minimum staing values
Browse files Browse the repository at this point in the history
  • Loading branch information
icfor committed Apr 9, 2024
1 parent 71c596a commit 2b7ec4d
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -223,8 +223,11 @@ export const tryToConnectPhantom = async (
}
};

// In testnet it is not possible to stake less than 1 SOL, Solflare will disable the button.
// In mainnet less than 0.1 SOL it gives an error from the wallet estimation.
const minimumStakeAmount: { [key in StakingNetworkId]?: number } = {
// In testnet it is not possible to stake less than 1 SOL, Solflare will disable the button
[StakingNetworkId.Solana]: LAMPORTS_PER_SOL * 0.1,
[StakingNetworkId.SolanaDevnet]: LAMPORTS_PER_SOL * 0.001,
[StakingNetworkId.SolanaTestnet]: LAMPORTS_PER_SOL * 1,
};

Expand Down

0 comments on commit 2b7ec4d

Please sign in to comment.