Commit c63f41bf authored by Will Cory's avatar Will Cory

fix value -> val typo

prettier comments
parent 52fbbc50
......@@ -47,7 +47,7 @@ contract AssetReceiverTest is AssetReceiver_Initializer {
attestationStation.attestations(
attestationData.about,
attestationData.key,
attestationData.value
attestationData.val
),
""
);
......
......@@ -4,15 +4,15 @@ pragma solidity 0.8.15;
import { Semver } from "@eth-optimism/contracts-bedrock/contracts/universal/Semver.sol";
/**
* @title AttestationStation
* @dev Contract for creating attestations.
* @title AttestationStation
* @dev Contract for creating attestations.
* @notice The AttestationStation contract is a contract for creating on chain attestations
* It has a very simple interface for creating attestations.
* This contract is not yet audited
*/
contract AttestationStation is Semver {
/**
* @notice Struct representing data that is being attested
* @notice Struct representing data that is being attested
*
* @custom:field about Address being attested about (not creator/msg.sender)
* @custom:field key A bytes32 key for the attestation.
......@@ -26,9 +26,9 @@ contract AttestationStation is Semver {
/**
* @notice Maps addresses to attestations
* @dev addresses map to attestations map of
* `about` addresses to key/values
* key/values are a map of bytes32 to bytes
* @dev addresses map to attestations map of
* about addresses to key/values
* key/values are a map of bytes32 to bytes
*/
mapping(address => mapping(address => mapping(bytes32 => bytes))) public attestations;
......
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