Transaction Hash:
Block:
24426314 at Feb-10-2026 12:16:23 PM +UTC
Transaction Fee:
0.00019734019152288 ETH
$0.39
Gas Used:
93,968 Gas / 2.10007866 Gwei
Emitted Events:
| 8 |
0x12992613fdd35abe95dec5a4964331b1ee23b50d.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x0000000000000000000000001db1b450d2f75cb6f1ada9e6b6605aca6747bdb0, 0x000000000000000000000000e53104cbf47982bcb1b904471fd1051c33b51e3d, 000000000000000000000000000000000000000000000000e30a65522d640000 )
|
| 9 |
0x12992613fdd35abe95dec5a4964331b1ee23b50d.0x9d9c909296d9c674451c0c24f02cb64981eb3b727f99865939192f880a755dcb( 0x9d9c909296d9c674451c0c24f02cb64981eb3b727f99865939192f880a755dcb, 0x0000000000000000000000001db1b450d2f75cb6f1ada9e6b6605aca6747bdb0, 0x000000000000000000000000e53104cbf47982bcb1b904471fd1051c33b51e3d, 000000000000000000000000000000000000000000000000e30a65522d640000 )
|
Account State Difference:
| Address | Before | After | State Difference | ||
|---|---|---|---|---|---|
| 0x12992613...1ee23B50d | |||||
| 0x1Db1b450...A6747bDB0 |
0.092513526633665946 Eth
Nonce: 29
|
0.092316186442143066 Eth
Nonce: 30
| 0.00019734019152288 | ||
|
0xdadB0d80...24f783711
Miner
| (BuilderNet) | 51.085122250438366727 Eth | 51.085310186438366727 Eth | 0.000187936 |
Execution Trace
xStocks: BRK.Bx Token.8fcb4e5b( )
0xd865ce1b07540b5ede20e8298f48da69770fe22e.8fcb4e5b( )
-
SanctionsList.isSanctioned( addr=0x1Db1b450D2F75CB6F1Ada9E6b6605AcA6747bDB0 ) => ( False )
-
SanctionsList.isSanctioned( addr=0xE53104cBF47982BcB1b904471FD1051C33B51E3d ) => ( False )
-
// File: @openzeppelin/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// File: @openzeppelin/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// File: contracts/SanctionsList.sol
pragma solidity >=0.4.22 <0.9.0;
contract SanctionsList is Ownable {
constructor() {}
mapping(address => bool) private sanctionedAddresses;
event SanctionedAddress(address indexed addr);
event NonSanctionedAddress(address indexed addr);
event SanctionedAddressesAdded(address[] addrs);
event SanctionedAddressesRemoved(address[] addrs);
function name() external pure returns (string memory) {
return "Chainalysis sanctions oracle";
}
function addToSanctionsList(address[] memory newSanctions) public onlyOwner {
for (uint256 i = 0; i < newSanctions.length; i++) {
sanctionedAddresses[newSanctions[i]] = true;
}
emit SanctionedAddressesAdded(newSanctions);
}
function removeFromSanctionsList(address[] memory removeSanctions) public onlyOwner {
for (uint256 i = 0; i < removeSanctions.length; i++) {
sanctionedAddresses[removeSanctions[i]] = false;
}
emit SanctionedAddressesRemoved(removeSanctions);
}
function isSanctioned(address addr) public view returns (bool) {
return sanctionedAddresses[addr] == true ;
}
function isSanctionedVerbose(address addr) public returns (bool) {
if (isSanctioned(addr)) {
emit SanctionedAddress(addr);
return true;
} else {
emit NonSanctionedAddress(addr);
return false;
}
}
}