Skip to content

Commit

Permalink
fix: batch hint changes only worked for one key in a list
Browse files Browse the repository at this point in the history
  • Loading branch information
strumswell committed Sep 5, 2023
1 parent 44cfded commit 3fb924d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions EIPS/eip-7506.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ A method with the following signature **MUST** be implemented that changes multi
namespace.

```solidity
function setHints(address _namespace, bytes32 _list, bytes32 _key, bytes32[] calldata _values) public;
function setHints(address _namespace, bytes32 _list, bytes32[] calldata _keys, bytes32[] calldata _values) public;
```

##### setHintsSigned
Expand All @@ -118,7 +118,7 @@ A method with the following signature **MUST** be implemented that multiple hint
with a raw signature. The raw signature **MUST** be generated following the Meta Transactions section.

```solidity
function setHintsSigned(address _namespace, bytes32 _list, bytes32 _key, bytes32[] calldata _values, address _signer, bytes calldata _signature) public;
function setHintsSigned(address _namespace, bytes32 _list, bytes32[] calldata _keys, bytes32[] calldata _values, address _signer, bytes calldata _signature) public;
```

#### Delegated Hint Management
Expand Down

0 comments on commit 3fb924d

Please sign in to comment.