Skip to content

Commit

Permalink
update repo links
Browse files Browse the repository at this point in the history
  • Loading branch information
jackchuma committed Feb 6, 2025
1 parent ad33b9d commit 6864a78
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion contracts/src/Paymaster.sol
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {IUserOpPrecheck} from "./interfaces/IUserOpPrecheck.sol";

/// @title Paymaster
///
/// @author Coinbase (https://github.com/base-org/RIP-7755-poc)
/// @author Coinbase (https://github.com/base-org/RRC-7755-poc)
///
/// @notice This contract is used as a hook for fulfillers to provide funds for requested transactions when the
/// cross-chain call(s) are ERC-4337 User Operations
Expand Down
2 changes: 1 addition & 1 deletion contracts/src/RRC7755Base.sol
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ pragma solidity ^0.8.24;

/// @title ERC7786Base
///
/// @author Coinbase (https://github.com/base-org/RIP-7755-poc)
/// @author Coinbase (https://github.com/base-org/RRC-7755-poc)
///
/// @notice This contract contains the selectors for the RRC-7755-supported attributes of the ERC7786 standard
contract RRC7755Base {
Expand Down
2 changes: 1 addition & 1 deletion contracts/src/RRC7755Inbox.sol
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {Paymaster} from "./Paymaster.sol";

/// @title RRC7755Inbox
///
/// @author Coinbase (https://github.com/base-org/RIP-7755-poc)
/// @author Coinbase (https://github.com/base-org/RRC-7755-poc)
///
/// @notice An inbox contract within RRC-7755. This contract's sole purpose is to route requested transactions on
/// destination chains and store record of their fulfillment.
Expand Down
2 changes: 1 addition & 1 deletion contracts/src/RRC7755Outbox.sol
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {RRC7755Inbox} from "./RRC7755Inbox.sol";

/// @title RRC7755Outbox
///
/// @author Coinbase (https://github.com/base-org/RIP-7755-poc)
/// @author Coinbase (https://github.com/base-org/RRC-7755-poc)
///
/// @notice A source contract for initiating RRC-7755 Cross Chain Requests as well as reward fulfillment to Fulfillers
/// that submit the cross chain calls to destination chains.
Expand Down
2 changes: 1 addition & 1 deletion contracts/src/libraries/BlockHeaders.sol
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {RLPReader} from "optimism/packages/contracts-bedrock/src/libraries/rlp/R

/// @title BlockHeaders
///
/// @author Coinbase (https://github.com/base-org/RIP-7755-poc)
/// @author Coinbase (https://github.com/base-org/RRC-7755-poc)
///
/// @notice This library contains utility functions for interacting with RLP-encoded block headers
library BlockHeaders {
Expand Down
2 changes: 1 addition & 1 deletion contracts/src/libraries/GlobalTypes.sol
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ pragma solidity ^0.8.0;

/// @title GlobalTypes
///
/// @author Coinbase (https://github.com/base-org/RIP-7755-poc)
/// @author Coinbase (https://github.com/base-org/RRC-7755-poc)
///
/// @notice This library contains utility functions for converting addresses to bytes32 and vice versa.
library GlobalTypes {
Expand Down
2 changes: 1 addition & 1 deletion contracts/src/libraries/StateValidator.sol
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {SSZ} from "./SSZ.sol";

/// @title StateValidator
///
/// @author Coinbase (https://github.com/base-org/RIP-7755-poc)
/// @author Coinbase (https://github.com/base-org/RRC-7755-poc)
///
/// @notice A library for validating EVM storage proofs.
library StateValidator {
Expand Down
2 changes: 1 addition & 1 deletion contracts/src/libraries/provers/ArbitrumProver.sol
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {StateValidator} from "../StateValidator.sol";

/// @title ArbitrumProver
///
/// @author Coinbase (https://github.com/base-org/RIP-7755-poc)
/// @author Coinbase (https://github.com/base-org/RRC-7755-poc)
///
/// @notice This is a utility library for validating Arbitrum storage proofs.
library ArbitrumProver {
Expand Down
2 changes: 1 addition & 1 deletion contracts/src/libraries/provers/OPStackProver.sol
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {BlockHeaders} from "../BlockHeaders.sol";

/// @title OPStackProver
///
/// @author Coinbase (https://github.com/base-org/RIP-7755-poc)
/// @author Coinbase (https://github.com/base-org/RRC-7755-poc)
///
/// @notice This is a utility library for validating OP Stack storage proofs.
library OPStackProver {
Expand Down
2 changes: 1 addition & 1 deletion contracts/src/outboxes/RRC7755OutboxToArbitrum.sol
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {RRC7755Outbox} from "../RRC7755Outbox.sol";

/// @title RRC7755OutboxToArbitrum
///
/// @author Coinbase (https://github.com/base-org/RIP-7755-poc)
/// @author Coinbase (https://github.com/base-org/RRC-7755-poc)
///
/// @notice This contract implements storage proof validation to ensure that requested calls actually happened on
/// Arbitrum
Expand Down
2 changes: 1 addition & 1 deletion contracts/src/outboxes/RRC7755OutboxToOPStack.sol
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {RRC7755Outbox} from "../RRC7755Outbox.sol";

/// @title RRC7755OutboxToOPStack
///
/// @author Coinbase (https://github.com/base-org/RIP-7755-poc)
/// @author Coinbase (https://github.com/base-org/RRC-7755-poc)
///
/// @notice This contract implements storage proof validation to ensure that requested calls actually happened on an OP Stack chain
contract RRC7755OutboxToOPStack is RRC7755Outbox {
Expand Down

0 comments on commit 6864a78

Please sign in to comment.