-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(redis): set sample max value (#223)
- Loading branch information
Showing
3 changed files
with
37 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
import '../test/011_deploy_state_changes'; |
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,17 @@ | ||
import { DeployFunction } from 'hardhat-deploy/types'; | ||
|
||
// Used for setting states in contracts according to the currently working environment | ||
const func: DeployFunction = async function ({ deployments, getNamedAccounts }) { | ||
const { execute, log } = deployments; | ||
const { deployer } = await getNamedAccounts(); | ||
|
||
log('Setting Redistribution state "sampleMaxValue"'); | ||
|
||
const sampleMaxValue = '3500000000000000000000000000000000000000000000000000000000000000000000000'; | ||
await execute('Redistribution', { from: deployer }, 'setSampleMaxValue', sampleMaxValue); | ||
|
||
log('----------------------------------------------------'); | ||
}; | ||
|
||
export default func; | ||
func.tags = ['main', 'state_changes']; |
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