Skip to content

Commit

Permalink
Update ERC-7092: Move to Last Call
Browse files Browse the repository at this point in the history
Merged by EIP-Bot.
  • Loading branch information
Edoumou committed Jan 24, 2024
1 parent 774f6d5 commit 38ca166
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions ERCS/erc-7092.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ title: Financial Bonds
description: Represents debt issued by entities to investors.
author: Samuel Gwlanold Edoumou (@Edoumou)
discussions-to: https://ethereum-magicians.org/t/financial-bonds/14461
status: Review
status: Last Call
last-call-deadline: 2024-02-07
type: Standards Track
category: ERC
created: 2023-05-28
Expand Down Expand Up @@ -328,7 +329,7 @@ interface IERC7092CrossChain /** is ERC165 */ {
* @param _destinationChainID The unique ID that identifies the destination Chain.
* @param _destinationContract The smart contract to interact with in the destination Chain in order to Deposit or Mint tokens that are transferred.
*/
function crossChainDecreaseAllowance(address _spender, uint256 _amount, bytes32 _destinationChainID, address _destinationContract) external;
function crossChainDecreaseAllowance(address _spender, uint256 _amount, bytes32 _destinationChainID, address _destinationContract) external returns(bool);
/**
* @notice Decreases the allowance of multiple spenders in `_spender` by corresponding amounts specified in the array `_amount` on the destination chain
Expand All @@ -337,7 +338,7 @@ interface IERC7092CrossChain /** is ERC165 */ {
* @param _destinationChainID array of unique IDs that identifies the destination Chain.
* @param _destinationContract array of smart contracts to interact with in the destination Chain in order to Deposit or Mint tokens that are transferred.
*/
function crossChainBatchDecreaseAllowance(address[] calldata _spender, uint256[] calldata _amount, bytes32[] calldata _destinationChainID, address[] calldata _destinationContract) external;
function crossChainBatchDecreaseAllowance(address[] calldata _spender, uint256[] calldata _amount, bytes32[] calldata _destinationChainID, address[] calldata _destinationContract) external returns(bool);
/**
* @notice Moves `_amount` bond tokens to the address `_to` from the current chain to another chain (e.g., moving tokens from Ethereum to Polygon).
Expand Down

0 comments on commit 38ca166

Please sign in to comment.