-
Notifications
You must be signed in to change notification settings - Fork 3
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
Server based allocator #27
base: main
Are you sure you want to change the base?
Changes from all commits
306dff4
acf55b0
ca180f2
07014db
f9d2c89
f615213
cea117f
0ee5d82
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,260 @@ | ||
// SPDX-License-Identifier: MIT | ||
|
||
pragma solidity ^0.8.27; | ||
|
||
import { Compact } from "src/types/EIP712Types.sol"; | ||
import { ITheCompact } from "src/interfaces/ITheCompact.sol"; | ||
import { IAllocator } from "src/interfaces/IAllocator.sol"; | ||
import { IServerAllocator } from "src/interfaces/IServerAllocator.sol"; | ||
import { Compact, COMPACT_TYPEHASH } from "src/types/EIP712Types.sol"; | ||
import { Ownable, Ownable2Step } from "lib/openzeppelin-contracts/contracts/access/Ownable2Step.sol"; | ||
import { ECDSA } from "lib/openzeppelin-contracts/contracts/utils/cryptography/ECDSA.sol"; | ||
import { EIP712 } from "lib/openzeppelin-contracts/contracts/utils/cryptography/EIP712.sol"; | ||
import { IERC1271 } from "lib/openzeppelin-contracts/contracts/interfaces/IERC1271.sol"; | ||
|
||
contract ServerAllocator is Ownable2Step, EIP712, IServerAllocator { | ||
using ECDSA for bytes32; | ||
|
||
// keccak256("Attest(address,address,address,uint256,uint256)") | ||
bytes4 private constant _ATTEST_SELECTOR = 0x1a808f91; | ||
|
||
// keccak256("RegisterAttest(address signer,bytes32 attestHash,uint256 expiration,uint256 nonce)") | ||
bytes32 private constant _ATTEST_TYPE_HASH = 0xaf2dfd3fe08723f490d203be627da2725f4ad38681e455221da2fc1a633bbb18; | ||
|
||
// keccak256("NonceConsumption(address signer,uint256[] nonces,bytes32[] attests)") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. same comment here, "attests" doesn't seem right here |
||
bytes32 private constant _NONCE_CONSUMPTION_TYPE_HASH = 0xb06793f900067653959d9bc53299ebf6b5aa5cf5f6c1a463305891a3db695f3c; | ||
|
||
address private immutable _COMPACT_CONTRACT; | ||
|
||
mapping(address => uint256) private _signers; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. maybe clearer to name this and/or include a comment to indicate that it actually maps signers to indices (plus one) in the array of signers? |
||
address[] private _activeSigners; | ||
|
||
mapping(bytes32 => uint256) private _attestExpirations; | ||
mapping(bytes32 => uint256) private _attestCounts; | ||
mapping(bytes32 => bool) private _attestSignatures; | ||
|
||
modifier isSigner(address signer_) { | ||
if (!_containsSigner(signer_)) { | ||
revert InvalidSigner(signer_); | ||
} | ||
_; | ||
} | ||
|
||
constructor(address owner_, address compactContract_) Ownable(owner_) EIP712("Allocator", "1") { | ||
_COMPACT_CONTRACT = compactContract_; | ||
ITheCompact(_COMPACT_CONTRACT).__registerAllocator(address(this), ""); | ||
} | ||
|
||
/// @inheritdoc IServerAllocator | ||
function addSigner(address signer_) external onlyOwner { | ||
if (_containsSigner(signer_)) { | ||
return; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. would it make more sense to revert here with a |
||
} | ||
|
||
_activeSigners.push(signer_); | ||
_signers[signer_] = _activeSigners.length; | ||
|
||
emit SignerAdded(signer_); | ||
} | ||
|
||
/// @inheritdoc IServerAllocator | ||
function removeSigner(address signer_) external onlyOwner { | ||
if (!_containsSigner(signer_)) { | ||
return; | ||
} | ||
|
||
uint256 index = _signers[signer_] - 1; | ||
_activeSigners[index] = _activeSigners[_activeSigners.length - 1]; | ||
_activeSigners.pop(); | ||
|
||
_signers[signer_] = 0; | ||
|
||
emit SignerRemoved(signer_); | ||
} | ||
|
||
/// @inheritdoc IServerAllocator | ||
function registerAttest(bytes32 attest_, uint256 expiration_) external isSigner(msg.sender) { | ||
_registerAttest(attest_, expiration_); | ||
} | ||
|
||
/// @inheritdoc IServerAllocator | ||
function registerAttestViaSignature(RegisterAttest calldata attest_, bytes calldata signature_) external { | ||
bytes32 _attestWithNonce = keccak256(abi.encode(attest_.attestHash, attest_.expiration, attest_.nonce)); | ||
if (_attestSignatures[_attestWithNonce]) { | ||
revert AlreadyUsedSig(attest_.attestHash, attest_.nonce); | ||
} | ||
address signer = _validateSignedAttest(attest_.signer, attest_.attestHash, attest_.expiration, attest_.nonce, signature_); | ||
if (signer != attest_.signer || !_containsSigner(signer)) { | ||
revert InvalidSignature(signature_, signer); | ||
} | ||
|
||
// Invalidate signature | ||
_attestSignatures[_attestWithNonce] = true; | ||
_registerAttest(attest_.attestHash, attest_.expiration); | ||
} | ||
|
||
/// @inheritdoc IAllocator | ||
function attest( | ||
address, // operator_ | ||
address from_, | ||
address, // to_ | ||
uint256 id_, | ||
uint256 amount_ | ||
) external returns (bytes4) { | ||
if (msg.sender != _COMPACT_CONTRACT) { | ||
revert InvalidCaller(msg.sender, _COMPACT_CONTRACT); | ||
} | ||
bytes32 registeredAttest = keccak256(abi.encode(from_, id_, amount_)); | ||
uint256 count = _attestCounts[registeredAttest]; | ||
|
||
if (count == 0) { | ||
revert UnregisteredAttest(registeredAttest); | ||
} | ||
for (uint256 i = count; i > 0; --i) { | ||
bytes32 countedAttest = keccak256(abi.encode(registeredAttest, i)); | ||
if (_attestExpirations[countedAttest] >= block.timestamp) { | ||
// Found a valid registered attest | ||
if (i == count) { | ||
// Last attest, delete | ||
delete _attestExpirations[countedAttest]; | ||
} else { | ||
// Shift attest and delete from the end | ||
bytes32 lastAttest = keccak256(abi.encode(registeredAttest, count)); | ||
_attestExpirations[countedAttest] = _attestExpirations[lastAttest]; | ||
delete _attestExpirations[lastAttest]; | ||
} | ||
_attestCounts[registeredAttest] = --count; | ||
|
||
emit Attested(from_, id_, amount_); | ||
return _ATTEST_SELECTOR; | ||
} | ||
} | ||
|
||
revert ExpiredAttests(registeredAttest); | ||
} | ||
|
||
/// @inheritdoc IServerAllocator | ||
function consume(uint256[] calldata nonces_, bytes32[] calldata attests_) external isSigner(msg.sender) { | ||
if (attests_.length != nonces_.length) { | ||
revert InvalidInput(); | ||
} | ||
_consumeNonces(nonces_, attests_); | ||
} | ||
|
||
/// @inheritdoc IServerAllocator | ||
function consumeViaSignature(NonceConsumption calldata data_, bytes calldata signature_) external { | ||
if (data_.attests.length != data_.nonces.length) { | ||
revert InvalidInput(); | ||
} | ||
address signer = _validateNonceConsumption(data_, signature_); | ||
if (signer != data_.signer || !_containsSigner(signer)) { | ||
// first check is optional, can be deleted for gas efficiency | ||
revert InvalidSignature(signature_, signer); | ||
} | ||
_consumeNonces(data_.nonces, data_.attests); | ||
} | ||
|
||
/// @inheritdoc IERC1271 | ||
function isValidSignature(bytes32 hash_, bytes calldata signature_) external view returns (bytes4 magicValue) { | ||
address signer = _validateSignedHash(hash_, signature_); | ||
if (!_containsSigner(signer)) { | ||
revert InvalidSignature(signature_, signer); | ||
} | ||
return IERC1271.isValidSignature.selector; | ||
} | ||
|
||
/// @inheritdoc IServerAllocator | ||
function checkIfSigner(address signer_) external view returns (bool) { | ||
return _containsSigner(signer_); | ||
} | ||
|
||
/// @inheritdoc IServerAllocator | ||
function getAllSigners() external view returns (address[] memory) { | ||
return _activeSigners; | ||
} | ||
|
||
/// @inheritdoc IServerAllocator | ||
function checkAttestExpirations(bytes32 attest_) external view returns (uint256[] memory) { | ||
return _checkAttestExpirations(attest_); | ||
} | ||
|
||
/// @inheritdoc IServerAllocator | ||
function checkAttestExpirations(address sponsor_, uint256 id_, uint256 amount_) external view returns (uint256[] memory) { | ||
return _checkAttestExpirations(keccak256(abi.encode(sponsor_, id_, amount_))); | ||
} | ||
|
||
/// @inheritdoc IServerAllocator | ||
function getCompactContract() external view returns (address) { | ||
return _COMPACT_CONTRACT; | ||
} | ||
|
||
function _registerAttest(bytes32 attest_, uint256 expiration_) internal { | ||
if (expiration_ < block.timestamp) { | ||
revert Expired(expiration_, block.timestamp); | ||
} | ||
uint256 count = ++_attestCounts[attest_]; | ||
bytes32 countedAttest = keccak256(abi.encode(attest_, count)); | ||
|
||
_attestExpirations[countedAttest] = expiration_; | ||
|
||
emit AttestRegistered(attest_, expiration_); | ||
} | ||
|
||
/// Todo: This will lead to always the last registered hash being consumed. | ||
function _consumeNonces(uint256[] calldata nonces_, bytes32[] calldata attests_) internal { | ||
ITheCompact(_COMPACT_CONTRACT).consume(nonces_); | ||
uint256 nonceLength = attests_.length; | ||
for (uint256 i = 0; i < nonceLength; ++i) { | ||
bytes32 hashToConsume = attests_[i]; | ||
if (hashToConsume != bytes32(0)) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. when would a bytes32(0) value be supplied here? |
||
uint256 count = _attestCounts[attests_[i]]; | ||
if (count != 0) { | ||
// Consume the latest registered attest | ||
delete _attestExpirations[ | ||
keccak256(abi.encode(attests_[i], count)) | ||
]; | ||
_attestCounts[attests_[i]] = --count; | ||
} | ||
} | ||
} | ||
emit NoncesConsumed(nonces_); | ||
} | ||
|
||
function _validateSignedAttest(address signer_, bytes32 hash_, uint256 expiration_, uint256 nonce, bytes calldata signature_) internal view returns (address) { | ||
bytes32 message = _hashAttest(signer_, hash_, expiration_, nonce); | ||
return message.recover(signature_); | ||
} | ||
|
||
function _hashAttest(address signer_, bytes32 hash_, uint256 expiration_, uint256 nonce_) internal view returns (bytes32) { | ||
return _hashTypedDataV4(keccak256(abi.encode(_ATTEST_TYPE_HASH, signer_, hash_, expiration_, nonce_))); | ||
} | ||
|
||
function _validateSignedHash(bytes32 digest_, bytes calldata signature_) internal pure returns (address) { | ||
return digest_.recover(signature_); | ||
} | ||
|
||
function _validateNonceConsumption(NonceConsumption calldata data_, bytes calldata signature_) internal view returns (address) { | ||
bytes32 message = _hashNonceConsumption(data_); | ||
return message.recover(signature_); | ||
} | ||
|
||
function _hashNonceConsumption(NonceConsumption calldata data_) internal view returns (bytes32) { | ||
return _hashTypedDataV4(keccak256(abi.encode(_NONCE_CONSUMPTION_TYPE_HASH, data_.signer, data_.nonces, data_.attests))); | ||
} | ||
|
||
function _containsSigner(address signer_) internal view returns (bool) { | ||
return _signers[signer_] != 0; | ||
} | ||
|
||
function _checkAttestExpirations(bytes32 attest_) internal view returns (uint256[] memory) { | ||
uint256 count = _attestCounts[attest_]; | ||
if (count == 0) { | ||
revert UnregisteredAttest(attest_); | ||
} | ||
uint256[] memory expirations = new uint256[](count); | ||
for (uint256 i = count; i > 0; --i) { | ||
expirations[i - 1] = _attestExpirations[keccak256(abi.encode(attest_, i))]; | ||
} | ||
return expirations; | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
// SPDX-License-Identifier: MIT | ||
pragma solidity ^0.8.27; | ||
|
||
// NOTE: Allocators with smart contract implementations should also implement EIP1271. | ||
interface IAllocator { | ||
import { IERC1271 } from "lib/openzeppelin-contracts/contracts/interfaces/IERC1271.sol"; | ||
|
||
interface IAllocator is IERC1271 { | ||
// Called on standard transfers; must return this function selector (0x1a808f91). | ||
function attest(address operator, address from, address to, uint256 id, uint256 amount) external returns (bytes4); | ||
|
||
// isValidSignature of IERC1271 will be called during a claim and must verify the signature of the allocation. | ||
} |
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.
Small nit:
Attest
is used in various places here as though it's a noun when it's actually a verb. We should be usingAttestation
to refer to it, or using it as a verb, butRegisterAttest
doesn't seem correct (basically it should either be justAttest
orRegisterAttestation
, or something else entirely)