mirror of
https://github.com/grassrootseconomics/cic-go.git
synced 2024-11-22 05:56:46 +01:00
Mohamed Sohail
8ebcbbf479
* add: smart-contracts * add: implement and test changes to contract: - returns 0 instead of false error status - func return type is []big.Int * fix: test name * fix: (test) env var name
49 lines
1.3 KiB
Solidity
49 lines
1.3 KiB
Solidity
// SPDX-License-Identifier: MIT
|
|
|
|
// Adapted from https://github.com/MyCryptoHQ/eth-scan
|
|
|
|
pragma solidity >= 0.8.0;
|
|
|
|
contract Balances {
|
|
struct Result {
|
|
bool success;
|
|
uint256 balance;
|
|
}
|
|
|
|
function tokensBalance(address owner, address[] calldata contracts) external view returns (Result[] memory results) {
|
|
results = new Result[](contracts.length);
|
|
|
|
bytes memory data = abi.encodeWithSignature("balanceOf(address)", owner);
|
|
|
|
for (uint256 i = 0; i < contracts.length; i++) {
|
|
results[i] = staticCall(contracts[i], data, 8000000);
|
|
}
|
|
}
|
|
|
|
function staticCall(
|
|
address target,
|
|
bytes memory data,
|
|
uint256 gas
|
|
) private view returns (Result memory) {
|
|
uint256 size = codeSize(target);
|
|
|
|
if (size > 0) {
|
|
(bool success, bytes memory result) = target.staticcall{ gas: gas }(data);
|
|
if (success) {
|
|
uint256 balance = abi.decode(result, (uint256));
|
|
return Result(success, balance);
|
|
}
|
|
}
|
|
|
|
return Result(false, 0);
|
|
}
|
|
|
|
function codeSize(address _address) private view returns (uint256 size) {
|
|
// solhint-disable-next-line no-inline-assembly
|
|
assembly {
|
|
size := extcodesize(_address)
|
|
}
|
|
}
|
|
}
|
|
|