Commit f72b6a11 authored by James Kim's avatar James Kim

apply style changes

parent 53f7ae43
...@@ -10,7 +10,6 @@ import { ECDSA } from "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; ...@@ -10,7 +10,6 @@ import { ECDSA } from "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
* Simple ERC1271 wallet that can be used to test the ERC1271 signature checker. * Simple ERC1271 wallet that can be used to test the ERC1271 signature checker.
* https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/mocks/ERC1271WalletMock.sol * https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/mocks/ERC1271WalletMock.sol
*/ */
contract TestERC1271Wallet is Ownable, IERC1271 { contract TestERC1271Wallet is Ownable, IERC1271 {
constructor(address originalOwner) { constructor(address originalOwner) {
transferOwnership(originalOwner); transferOwnership(originalOwner);
......
...@@ -10,11 +10,11 @@ import { ...@@ -10,11 +10,11 @@ import {
/** /**
* @custom:upgradeable * @custom:upgradeable
* @title OptimistInviter * @title OptimistInviter
* @notice OptimistInviter is a contract that issues "optimist.can-invite" and * @notice OptimistInviter issues "optimist.can-invite" and "optimist.can-mint-from-invite"
* "optimist.can-mint-from-invite" attestations. Accounts that have a "optimist.can-invite" * attestations. Accounts that have a "optimist.can-invite" attestation can issue
* attestation can issue signatures that allow other accounts to claim an invite. The * signatures that allow other accounts to claim an invite. The invitee uses a claim
* invitee uses a claim and reveal flow to claim the invite to an address of their choosing. * and reveal flow to claim the invite to an address of their choosing.
* *
* Parties involved: * Parties involved:
* 1) INVITE_GRANTER: trusted account that can allow accounts to issue invites * 1) INVITE_GRANTER: trusted account that can allow accounts to issue invites
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment