-
Notifications
You must be signed in to change notification settings - Fork 19
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
Feature add optimism goerli network #1039
Feature add optimism goerli network #1039
Conversation
39b92d2
to
fb0c94f
Compare
5ca0b4e
to
5a420d8
Compare
fb038f2
to
7b95681
Compare
7b95681
to
d5933ed
Compare
await queryRunner.manager.save( | ||
Token, | ||
seedTokens | ||
.filter(token => token.networkId === NETWORK_IDS.OPTIMISM_GOERLI) | ||
.map(t => { | ||
t.address = t.address?.toLowerCase(); | ||
return t; | ||
}), | ||
); |
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 think you need to add a condition to not add these test tokens in production env
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.
Thanks @CarlosQ96 , except comment that I put in migrations file other things seems good to me
Thanks Mohammad addded the condition to not add them in production |
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.
Thanks @CarlosQ96 LGTM
Related issue: #1036