Skip to content

Commit

Permalink
Create pi_network_contract.sol
Browse files Browse the repository at this point in the history
  • Loading branch information
KOSASIH authored Jun 25, 2024
1 parent ad1fb68 commit 5449180
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;

contract PINetwork {
//...
function registerNode(address _nodeAddress) public {
//...
}

function getNodeList() public view returns (address[] memory) {
//...
}

function transferFunds(address _from, address _to, uint256 _amount) public {
//...
}
}

0 comments on commit 5449180

Please sign in to comment.