-
-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
16 changes: 16 additions & 0 deletions
16
...on/pi_network/pi-stablecoin/advanced_features/multi_chain_support/multi_chain_support.sol
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
pragma solidity ^0.8.0; | ||
|
||
import "https://github.com/OpenZeppelin/openzeppelin-solidity/contracts/token/ERC20/SafeERC20.sol"; | ||
|
||
contract MultiChainSupport { | ||
// Mapping of supported chains | ||
mapping (address => Chain) public supportedChains; | ||
|
||
// Function to bridge assets between chains | ||
function bridgeAssets(address fromChain, address toChain, uint256 amount) public { | ||
// Get the bridge contract for the fromChain | ||
BridgeContract bridge = BridgeContract(supportedChains[fromChain].bridge); | ||
// Call the bridge contract to bridge assets | ||
bridge.bridgeAssets(toChain, amount); | ||
} | ||
} |