-
Notifications
You must be signed in to change notification settings - Fork 41
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
[REG-1250] Defender 2.0, Ethers v6 migration #333
[REG-1250] Defender 2.0, Ethers v6 migration #333
Conversation
function getData( | ||
string[] calldata keys, | ||
uint256 tokenId | ||
) external view override returns (address resolver, address owner, string[] memory values) { |
Check notice
Code scanning / Slither
Local variable shadowing Low
function _getData( | ||
string[] calldata keys, | ||
uint256 tokenId | ||
) private view returns (address resolver, address owner, string[] memory values) { |
Check notice
Code scanning / Slither
Local variable shadowing Low
function getDataByHash( | ||
uint256[] calldata keyHashes, | ||
uint256 tokenId | ||
) external view override returns (address resolver, address owner, string[] memory keys, string[] memory values) { |
Check notice
Code scanning / Slither
Local variable shadowing Low
function _getDataByHash( | ||
uint256[] calldata keyHashes, | ||
uint256 tokenId | ||
) private view returns (address resolver, address owner, string[] memory keys, string[] memory values) { |
Check notice
Code scanning / Slither
Local variable shadowing Low
5e2d554
to
5185726
Compare
5185726
to
d91ccc3
Compare
d91ccc3
to
62fea31
Compare
Contracts size report
|
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.
This is huge! Great job! I'll have another look tomorrow, but looks great to me so far!
@nickshatilo
Contracts size report
|
PR Checklist
1. Contracts versioning
patch
version of the contracts is increased if changes have been made to theUNSRegistry
,MintingManager
,ProxyReader
,ENSCustody
contracts.minor
version of the contracts is increased if breaking changes have been made to theUNSRegistry
,MintingManager
,ProxyReader
,ENSCustody
contracts. It includes changes of interfaces.2. Contracts licensing
3. Coverage
4. Configs versioning
uns-config.json
is increased if changes have been made to the config.ens-config.json
is increased if changes have been made to the config.resolver-keys.json
is increased if changes have been made to the config.ens-resolver-keys.json
is increased if changes have been made to the config.5. Package versioning
patch
version of package is increased if valuable changes have been made to the package. It includes contracts update, configs update, etc.major.minor
version of package is synced with version ofUNSRegistry
contract.CHANGELOG
is updated with short description for the new version.6. Code review
resolver-keys.json
code review is required from DevTools teamens-resolver-keys.json
code review is required from DevTools team