Skip to content

Commit

Permalink
Create InteroperabilityLayer.sol
Browse files Browse the repository at this point in the history
  • Loading branch information
KOSASIH authored Jul 27, 2024
1 parent a5c5490 commit a326057
Showing 1 changed file with 16 additions and 0 deletions.
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/utils/Address.sol";

contract InteroperabilityLayer {
address public kosasihUniversalisNexus;

constructor(address _kosasihUniversalisNexus) public {
kosasihUniversalisNexus = _kosasihUniversalisNexus;
}

function executeTransaction(bytes _transactionData) public {
// Call the Kosasih Universalis nexus to execute the transaction
KosasihUniversalisNexus(kosasihUniversalisNexus).executeTransaction(_transactionData);
}
}

0 comments on commit a326057

Please sign in to comment.