Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update ERC-7291: fix typos #813

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
6 changes: 3 additions & 3 deletions ERCS/erc-7291.md
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ interface IPBMRC1 is IERC173, IERC5679Ext1155 {

/// @notice Transfers the PBM(NFT) from one wallet to another.
/// @dev This function extends the ERC-1155 standard in order to allow the PBM token to be freely transferred between wallet addresses due to
/// widespread support accross wallet providers. Specific conditions and restrictions on whether a pbm can be moved across addresses can be incorporated in this function.
/// widespread support across wallet providers. Specific conditions and restrictions on whether a pbm can be moved across addresses can be incorporated in this function.
/// Unwrap logic MAY also be placed within this function to be called.
/// @param from The account from which the PBM (NFT) is moving from
/// @param to The account which is receiving the PBM (NFT)
Expand All @@ -380,7 +380,7 @@ interface IPBMRC1 is IERC173, IERC5679Ext1155 {

/// @notice Transfers the PBM(NFT)(s) from one wallet to another.
/// @dev This function extends the ERC-1155 standard in order to allow the PBM token to be freely transferred between wallet addresses due to
/// widespread support accross wallet providers. Specific conditions and restrictions on whether a pbm can be moved across addresses can be incorporated in this function.
/// widespread support across wallet providers. Specific conditions and restrictions on whether a pbm can be moved across addresses can be incorporated in this function.
/// Unwrap logic MAY also be placed within this function to be called.
/// If the receiving wallet is a whitelisted /redeemer wallet address, the PBM(NFT)(s) will be burnt and the underlying sovTokens will be transferred to the merchant/redeemer wallet instead.
/// @param from The account from which the PBM (NFT)(s) is moving from
Expand All @@ -392,7 +392,7 @@ interface IPBMRC1 is IERC173, IERC5679Ext1155 {

/// @notice Unwraps the underlying ERC-20 compatible tokens to an intended end point (ie: merchant/redeemer) upon fulfilling the required PBM conditions.
/// @dev Add implementation specific logic for the conditions under which a PBM processes and transfers the underlying tokens here.
/// e.g. If the receving wallet is a whitelisted merchant/redeemer wallet address, the PBM (NFT) MUST be burnt and the underlying sovTokens
/// e.g. If the receiving wallet is a whitelisted merchant/redeemer wallet address, the PBM (NFT) MUST be burnt and the underlying sovTokens
/// will unwrapped to be transferred to the merchant/redeemer wallet.
/// MUST emit the event {TokenUnwrapForTarget} on success
/// @param from The account currently holding the PBM
Expand Down
Loading