Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ The resolver is deployed at the following addresses:

Don't see your chain? Feel free to deploy your own!

Deploys on EVM equivalent chains can be run with the following command on any chain the canonical ImmutableCreate2Factory and Delegatexyz are deployed:
Deploys on EVM equivalent chains can be run with the following command on any chain where the canonical ImmutableCreate2Factory and Delegatexyz are deployed:

```shell
$ forge script DeployEVM --rpc-url <your_rpc_url> --private-key <your_private_key>
Expand Down
4 changes: 2 additions & 2 deletions src/interfaces/IDelegateRegistry.sol
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ interface IDelegateRegistry {

/**
* @notice Allow the delegate to act on behalf of `msg.sender` for a specific amount of ERC20 tokens
* @dev The actual amount is not encoded in the hash, just the existence of a amount (since it is an upper bound)
* @dev The actual amount is not encoded in the hash, just the existence of an amount (since it is an upper bound)
* @param to The address to act as delegate
* @param contract_ The address for the fungible token contract
* @param rights Specific subdelegation rights granted to the delegate, pass an empty bytestring to encompass all rights
Expand All @@ -128,7 +128,7 @@ interface IDelegateRegistry {

/**
* @notice Allow the delegate to act on behalf of `msg.sender` for a specific amount of ERC1155 tokens
* @dev The actual amount is not encoded in the hash, just the existence of a amount (since it is an upper bound)
* @dev The actual amount is not encoded in the hash, just the existence of an amount (since it is an upper bound)
* @param to The address to act as delegate
* @param contract_ The address of the contract that holds the token
* @param tokenId The token id to delegate
Expand Down