generated from dymensionxyz/rollapp
-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: move vesting accounts to separate step
- Loading branch information
1 parent
814edc5
commit c9c7199
Showing
3 changed files
with
19 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/bin/bash | ||
rollapp_evm keys add three-year-vester --keyring-backend test | ||
rollapp_evm add-genesis-account three-year-vester \ | ||
10000000000000000000000a${BASE_DENOM} --keyring-backend test \ | ||
--vesting-amount 10000000000000000000000a${BASE_DENOM} \ | ||
--vesting-end-time 1805902584 | ||
|
||
rollapp_evm keys add two-year-vester-after-1-week --keyring-backend test | ||
rollapp_evm add-genesis-account two-year-vester-after-1-week \ | ||
10000000000000000000000a${BASE_DENOM} --keyring-backend test \ | ||
--vesting-amount 10000000000000000000000a${BASE_DENOM} \ | ||
--vesting-end-time 1774366584 --vesting-start-time 1711985835 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters