Skip to content

Commit

Permalink
feat: update for constants
Browse files Browse the repository at this point in the history
  • Loading branch information
igorgoldobin committed Mar 14, 2024
1 parent a768f0d commit f38abb9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/constants/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ import { parseEther } from 'ethers/lib/utils'

export const MASTERNODE_ADDRESS = '0x0000000000000000000000000000000000001002'

export const COLLATERAL_AMOUNT = parseEther('1000') // 1000000
export const COLLATERAL_AMOUNT_LEGACY = parseEther('100') // 100000
export const WITHDRAWAL_DELAY = 20 // 100800
export const COLLATERAL_AMOUNT = parseEther('1000000') // 1000000
export const COLLATERAL_AMOUNT_LEGACY = parseEther('100000') // 100000
export const WITHDRAWAL_DELAY = 100800 // 100800

0 comments on commit f38abb9

Please sign in to comment.