-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: label deployed contracts in deploy script #61
base: dev
Are you sure you want to change the base?
Conversation
script/Deploy.s.sol
Outdated
function _labelContracts() internal { | ||
// convert to a loop? | ||
vm.label(address(oracle), 'Oracle'); | ||
vm.label(address(eboAccessModule), 'eboAccessModule'); | ||
vm.label(address(eboRequestModule), 'RequestModule'); | ||
vm.label(address(bondedResponseModule), 'bondedResponseModule'); | ||
vm.label(address(bondEscalationModule), 'bondEscalationModule'); | ||
vm.label(address(eboRequestCreator), 'EBORequestCreator'); | ||
vm.label(address(graphToken), 'GraphToken'); | ||
vm.label(address(horizonStaking), 'HorizonStaking'); | ||
vm.label(address(epochManager), 'EpochManager'); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I used this while testing and debugging the whole thing.
I could remove it, or add it below each corresponding line.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would prefer to have it below each corresponding line. In case someone wants to add more contracts it is easier to not forget to label it that way
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed in f9b44f2
🤖 Linear
Closes GRT-XXX