DEV Community

Cover image for Array Tool SmartContract on XinFin XDC Network
MahaLakshmi Perumal
MahaLakshmi Perumal

Posted on

1 2

Array Tool SmartContract on XinFin XDC Network

Check the smartcontract for Array Tool written in Solidity language. Deployment on XInFin XDC is extremely easy and transaction cost is extremely low in compare with Ethereum.

Copy the code for Array Tool

pragma solidity ^0.4.24;
contract ArrayTools {
function _combineArray(uint256[] _array) internal pure returns(uint256) {
uint256 fullAmount;
for(uint256 i = 0; i < _array.length; i++) {
require(_array[i] > 0);
fullAmount += _array[i];
}
return fullAmount;
}
}

Top comments (0)

Image of Docusign

🛠️ Bring your solution into Docusign. Reach over 1.6M customers.

Docusign is now extensible. Overcome challenges with disconnected products and inaccessible data by bringing your solutions into Docusign and publishing to 1.6M customers in the App Center.

Learn more