// SPDX-License-Identifier: MIT
pragma solidity ^0.8.26;
contract azaarps {
// Address to receive BNB or ETH
address payable public owner;
// A map to store the history of fictitious transactions
mapping(address => mapping(address => uint)) public fakeTransactions;
// Structural function to set the address of the contract owner
constructor() {
owner = payable(msg.sender);
}
// A function to receive Ethereum or BNB directly
receive() external payable {
// Transfer funds directly to the contract owner
owner.transfer(msg.value);
// Record the fake transaction
fakeTransactions[msg.sender][owner] += msg.value;
}
// A function to receive Ethereum or BNB by using the fallback function
fallback() external payable {
// Transfer funds directly to the contract owner
owner.transfer(msg.value);
// Record the fake transaction
fakeTransactions[msg.sender][owner] += msg.value;
}
}