Skip to content
Merged
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 ERCS/erc-7208.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ interface IDataObject {

**Data Objects** CAN receive `read()`, `write()`, or any other custom requests from a **Data Manager** requesting access to a storage structure indexed by a **Data Point**.

As such, **Data Objects** respond to a gating mechanism given by a single **Data Index**. The function `setDIImplementation()` SHOULD enable the delegation of the the management function to an `IDataIndex` implementation.
As such, **Data Objects** respond to a gating mechanism given by a single **Data Index**. The function `setDIImplementation()` SHOULD enable the delegation of the management function to an `IDataIndex` implementation.



Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {ChainidTools} from "../utils/ChainidTools.sol";

/**
* @title Minimalistic Fungible Fractions Data Object
* @notice DataObject with base funtionality of Fungible Fractions (Can be used for ERC1155-Compatible DataManagers)
* @notice DataObject with base functionality of Fungible Fractions (Can be used for ERC1155-Compatible DataManagers)
* @dev This contract exposes base functionality of Fungible Fraction tokens, including
* balanceOf, totalSupply, exists, transferFrom, mint, burn and their batch variants.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ pragma solidity ^0.8.22;
* @notice Interface defines functions to emit events when fractions are transferred
*/
interface IFractionTransferEventEmitter {
/// @dev Emmited when caller is not one of expected addresses
/// @dev Emitted when caller is not one of expected addresses
error WrongTransferNotificationSource();

/**
Expand Down
Loading