Skip to content
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

ERC20 wrapper #38

Merged
merged 34 commits into from
Dec 1, 2022
Merged

ERC20 wrapper #38

merged 34 commits into from
Dec 1, 2022

Conversation

amarinkovic
Copy link
Member

@amarinkovic amarinkovic commented Nov 22, 2022

Provide the ability to expose Nayms' marketplace participation tokens as standard ERC20 tokens.

@amarinkovic amarinkovic marked this pull request as ready for review November 24, 2022 14:28
src/erc20/ERC20Wrapper.sol Fixed Show fixed Hide fixed
src/erc20/ERC20Wrapper.sol Fixed Show fixed Hide fixed
Comment on lines +100 to +142
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external {
require(deadline >= block.timestamp, "PERMIT_DEADLINE_EXPIRED");

// Unchecked because the only math done is incrementing
// the owner's nonce which cannot realistically overflow.
unchecked {
address recoveredAddress = ecrecover(
keccak256(
abi.encodePacked(
"\x19\x01",
DOMAIN_SEPARATOR(),
keccak256(
abi.encode(
keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"),
owner,
spender,
value,
nonces[owner]++,
deadline
)
)
)
),
v,
r,
s
);

require(recoveredAddress != address(0) && recoveredAddress == owner, "INVALID_SIGNER");

allowances[recoveredAddress][spender] = value;
}

emit Approval(owner, spender, value);
}

Check notice

Code scanning / Slither

Block timestamp

ERC20Wrapper.permit(address,address,uint256,uint256,uint8,bytes32,bytes32) (src/erc20/ERC20Wrapper.sol#100-142) uses timestamp for comparisons Dangerous comparisons: - require(bool,string)(deadline >= block.timestamp,PERMIT_DEADLINE_EXPIRED) (src/erc20/ERC20Wrapper.sol#109)
src/erc20/ERC20Wrapper.sol Fixed Show fixed Hide fixed
src/erc20/ERC20Wrapper.sol Fixed Show fixed Hide fixed
Comment on lines +100 to +142
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external {
require(deadline >= block.timestamp, "PERMIT_DEADLINE_EXPIRED");

// Unchecked because the only math done is incrementing
// the owner's nonce which cannot realistically overflow.
unchecked {
address recoveredAddress = ecrecover(
keccak256(
abi.encodePacked(
"\x19\x01",
DOMAIN_SEPARATOR(),
keccak256(
abi.encode(
keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"),
owner,
spender,
value,
nonces[owner]++,
deadline
)
)
)
),
v,
r,
s
);

require(recoveredAddress != address(0) && recoveredAddress == owner, "INVALID_SIGNER");

allowances[recoveredAddress][spender] = value;
}

emit Approval(owner, spender, value);
}

Check notice

Code scanning / Slither

Block timestamp

ERC20Wrapper.permit(address,address,uint256,uint256,uint8,bytes32,bytes32) (src/erc20/ERC20Wrapper.sol#100-142) uses timestamp for comparisons Dangerous comparisons: - require(bool,string)(deadline >= block.timestamp,PERMIT_DEADLINE_EXPIRED) (src/erc20/ERC20Wrapper.sol#109)
src/erc20/ERC20Wrapper.sol Fixed Show fixed Hide fixed
src/erc20/ERC20Wrapper.sol Fixed Show fixed Hide fixed
Comment on lines +100 to +142
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external {
require(deadline >= block.timestamp, "PERMIT_DEADLINE_EXPIRED");

// Unchecked because the only math done is incrementing
// the owner's nonce which cannot realistically overflow.
unchecked {
address recoveredAddress = ecrecover(
keccak256(
abi.encodePacked(
"\x19\x01",
DOMAIN_SEPARATOR(),
keccak256(
abi.encode(
keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"),
owner,
spender,
value,
nonces[owner]++,
deadline
)
)
)
),
v,
r,
s
);

require(recoveredAddress != address(0) && recoveredAddress == owner, "INVALID_SIGNER");

allowances[recoveredAddress][spender] = value;
}

emit Approval(owner, spender, value);
}

Check notice

Code scanning / Slither

Block timestamp

ERC20Wrapper.permit(address,address,uint256,uint256,uint8,bytes32,bytes32) (src/erc20/ERC20Wrapper.sol#100-142) uses timestamp for comparisons Dangerous comparisons: - require(bool,string)(deadline >= block.timestamp,PERMIT_DEADLINE_EXPIRED) (src/erc20/ERC20Wrapper.sol#109)
src/erc20/ERC20Wrapper.sol Fixed Show fixed Hide fixed
src/erc20/ERC20Wrapper.sol Fixed Show fixed Hide fixed
src/erc20/ERC20Wrapper.sol Fixed Show fixed Hide fixed
src/erc20/ERC20Wrapper.sol Fixed Show fixed Hide fixed
src/erc20/ERC20Wrapper.sol Fixed Show fixed Hide fixed
src/erc20/ERC20Wrapper.sol Fixed Show fixed Hide fixed
@amarinkovic amarinkovic merged commit 86f435b into main Dec 1, 2022
@amarinkovic amarinkovic deleted the erc20_wrapper branch December 1, 2022 08:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants