Showing the last 25 transactions (View Advanced Filter)
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 24418536 | 10 days ago | IN | 0 ETH | 0.00000393 | ||||
| Approve | 24151690 | 47 days ago | IN | 0 ETH | 0.00009438 | ||||
| Approve | 24126405 | 50 days ago | IN | 0 ETH | 0.00010207 | ||||
| Approve | 24122141 | 51 days ago | IN | 0 ETH | 0.00000216 | ||||
| Approve | 23956861 | 74 days ago | IN | 0 ETH | 0.00000421 | ||||
| Approve | 23812125 | 95 days ago | IN | 0 ETH | 0.00001484 | ||||
| Approve | 23808412 | 95 days ago | IN | 0 ETH | 0.00000152 | ||||
| Approve | 23695091 | 111 days ago | IN | 0 ETH | 0.00002726 | ||||
| Approve | 23679266 | 113 days ago | IN | 0 ETH | 0.00002651 | ||||
| Approve | 23647690 | 118 days ago | IN | 0 ETH | 0.00002287 | ||||
| Approve | 23647690 | 118 days ago | IN | 0 ETH | 0.00002115 | ||||
| Approve | 23615986 | 122 days ago | IN | 0 ETH | 0.00000523 | ||||
| Approve | 23494855 | 139 days ago | IN | 0 ETH | 0.00002866 | ||||
| Approve | 23460142 | 144 days ago | IN | 0 ETH | 0.00001772 | ||||
| Approve | 23460141 | 144 days ago | IN | 0 ETH | 0.0000177 | ||||
| Approve | 23449311 | 145 days ago | IN | 0 ETH | 0.00003688 | ||||
| Approve | 23449310 | 145 days ago | IN | 0 ETH | 0.00003667 | ||||
| Approve | 23396847 | 153 days ago | IN | 0 ETH | 0.00003776 | ||||
| Transfer | 23390471 | 154 days ago | IN | 0 ETH | 0.00017064 | ||||
| Approve | 23336932 | 161 days ago | IN | 0 ETH | 0.00000937 | ||||
| Approve | 23336218 | 161 days ago | IN | 0 ETH | 0.00001013 | ||||
| Approve | 23334974 | 161 days ago | IN | 0 ETH | 0.0000211 | ||||
| Approve | 23324941 | 163 days ago | IN | 0 ETH | 0.00003438 | ||||
| Approve | 23251021 | 173 days ago | IN | 0 ETH | 0.00003043 | ||||
| Approve | 23233351 | 175 days ago | IN | 0 ETH | 0.0001275 |
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
There are no matching entriesUpdate your filters to view other transactions | |||||||||
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
CBAToken
Compiler Version
v0.8.6+commit.11564f7e
Optimization Enabled:
Yes with 200 runs
Other Settings:
byzantium EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.5;
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract CBAToken is ERC20Burnable,Ownable {
uint256 public constant INITIAL_SUPPLY = 3_000_000_000 * 10**18;
constructor(address wallet,address owner) ERC20("Crypto Perx", "CPRX") {
require(owner != address(0), 'CPRX: incorrect owner address');
require(wallet != address(0), 'CPRX: incorrect wallet address');
if (_msgSender() != owner) {
transferOwnership(owner);
}
_mint(wallet, INITIAL_SUPPLY);
}
}// SPDX-License-Identifier: MIT
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;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../ERC20.sol";
import "../../../utils/Context.sol";
/**
* @dev Extension of {ERC20} that allows token holders to destroy both their own
* tokens and those that they have an allowance for, in a way that can be
* recognized off-chain (via event analysis).
*/
abstract contract ERC20Burnable is Context, ERC20 {
/**
* @dev Destroys `amount` tokens from the caller.
*
* See {ERC20-_burn}.
*/
function burn(uint256 amount) public virtual {
_burn(_msgSender(), amount);
}
/**
* @dev Destroys `amount` tokens from `account`, deducting from the caller's
* allowance.
*
* See {ERC20-_burn} and {ERC20-allowance}.
*
* Requirements:
*
* - the caller must have allowance for ``accounts``'s tokens of at least
* `amount`.
*/
function burnFrom(address account, uint256 amount) public virtual {
uint256 currentAllowance = allowance(account, _msgSender());
require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
unchecked {
_approve(account, _msgSender(), currentAllowance - amount);
}
_burn(account, amount);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* The default value of {decimals} is 18. To select a different value for
* {decimals} you should overload it.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless this function is
* overridden;
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* Requirements:
*
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
* - the caller must have allowance for ``sender``'s tokens of at least
* `amount`.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
uint256 currentAllowance = _allowances[sender][_msgSender()];
require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
unchecked {
_approve(sender, _msgSender(), currentAllowance - amount);
}
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
uint256 currentAllowance = _allowances[_msgSender()][spender];
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(_msgSender(), spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `sender` to `recipient`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
function _transfer(
address sender,
address recipient,
uint256 amount
) internal virtual {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(sender, recipient, amount);
uint256 senderBalance = _balances[sender];
require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[sender] = senderBalance - amount;
}
_balances[recipient] += amount;
emit Transfer(sender, recipient, amount);
_afterTokenTransfer(sender, recipient, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
_balances[account] += amount;
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
}
_totalSupply -= amount;
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(
address owner,
address spender,
uint256 amount
) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @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() {
_setOwner(_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 {
_setOwner(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");
_setOwner(newOwner);
}
function _setOwner(address newOwner) private {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}{
"remappings": [],
"optimizer": {
"enabled": true,
"runs": 200
},
"evmVersion": "byzantium",
"libraries": {},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60806040523480156200001157600080fd5b5060405162001590380380620015908339810160408190526200003491620005ee565b604080518082018252600b81527f43727970746f205065727800000000000000000000000000000000000000000060208083019182528351808501909452600484527f4350525800000000000000000000000000000000000000000000000000000000908401528151919291620000ae916003916200052b565b508051620000c49060049060208401906200052b565b505050620000f3620000e462000244640100000000026401000000009004565b64010000000062000248810204565b600160a060020a03811662000169576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f435052583a20696e636f7272656374206f776e6572206164647265737300000060448201526064015b60405180910390fd5b600160a060020a038216620001db576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f435052583a20696e636f72726563742077616c6c657420616464726573730000604482015260640162000160565b600160a060020a038116620001f864010000000062000244810204565b600160a060020a0316146200021b576200021b816401000000006200029a810204565b6200023c826b09b18ab5df7180b6b8000000640100000000620003ea810204565b5050620006bc565b3390565b60058054600160a060020a03838116600160a060020a0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620002ad64010000000062000244810204565b600160a060020a0316620002c964010000000062000517810204565b600160a060020a0316146200033b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000160565b600160a060020a038116620003d3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840162000160565b620003e78164010000000062000248810204565b50565b600160a060020a0382166200045c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000160565b620004736000838364010000000062000526810204565b806002600082825462000487919062000626565b9091555050600160a060020a03821660009081526020819052604081208054839290620004b690849062000626565b9091555050604051818152600160a060020a038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3620005136000838364010000000062000526810204565b5050565b600554600160a060020a031690565b505050565b828054620005399062000666565b90600052602060002090601f0160209004810192826200055d5760008555620005a8565b82601f106200057857805160ff1916838001178555620005a8565b82800160010185558215620005a8579182015b82811115620005a85782518255916020019190600101906200058b565b50620005b6929150620005ba565b5090565b5b80821115620005b65760008155600101620005bb565b8051600160a060020a0381168114620005e957600080fd5b919050565b600080604083850312156200060257600080fd5b6200060d83620005d1565b91506200061d60208401620005d1565b90509250929050565b6000821982111562000661577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b500190565b6002810460018216806200067b57607f821691505b60208210811415620006b6577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b610ec480620006cc6000396000f3fe608060405234801561001057600080fd5b5060043610610128576000357c01000000000000000000000000000000000000000000000000000000009004806370a08231116100bf57806395d89b411161008e57806395d89b411461023c578063a457c2d714610244578063a9059cbb14610257578063dd62ed3e1461026a578063f2fde38b146102a357600080fd5b806370a08231146101dd578063715018a61461020657806379cc67901461020e5780638da5cb5b1461022157600080fd5b80632ff2e9dc116100fb5780632ff2e9dc14610193578063313ce567146101a657806339509351146101b557806342966c68146101c857600080fd5b806306fdde031461012d578063095ea7b31461014b57806318160ddd1461016e57806323b872dd14610180575b600080fd5b6101356102b6565b6040516101429190610d87565b60405180910390f35b61015e610159366004610d44565b610348565b6040519015158152602001610142565b6002545b604051908152602001610142565b61015e61018e366004610d08565b61035e565b6101726b09b18ab5df7180b6b800000081565b60405160128152602001610142565b61015e6101c3366004610d44565b610425565b6101db6101d6366004610d6e565b610461565b005b6101726101eb366004610cb3565b600160a060020a031660009081526020819052604090205490565b6101db61046e565b6101db61021c366004610d44565b6104d7565b600554604051600160a060020a039091168152602001610142565b610135610579565b61015e610252366004610d44565b610588565b61015e610265366004610d44565b61063c565b610172610278366004610cd5565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b6101db6102b1366004610cb3565b610649565b6060600380546102c590610e0b565b80601f01602080910402602001604051908101604052809291908181526020018280546102f190610e0b565b801561033e5780601f106103135761010080835404028352916020019161033e565b820191906000526020600020905b81548152906001019060200180831161032157829003601f168201915b5050505050905090565b600061035533848461072e565b50600192915050565b600061036b84848461088c565b600160a060020a03841660009081526001602090815260408083203384529091529020548281101561040d5760405160e560020a62461bcd02815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61041a853385840361072e565b506001949350505050565b336000818152600160209081526040808320600160a060020a0387168452909152812054909161035591859061045c908690610ddc565b61072e565b61046b3382610aad565b50565b600554600160a060020a031633146104cb5760405160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610404565b6104d56000610c38565b565b60006104e38333610278565b90508181101561055d5760405160e560020a62461bcd028152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760448201527f616e6365000000000000000000000000000000000000000000000000000000006064820152608401610404565b61056a833384840361072e565b6105748383610aad565b505050565b6060600480546102c590610e0b565b336000908152600160209081526040808320600160a060020a0386168452909152812054828110156106255760405160e560020a62461bcd02815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610404565b610632338585840361072e565b5060019392505050565b600061035533848461088c565b600554600160a060020a031633146106a65760405160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610404565b600160a060020a0381166107255760405160e560020a62461bcd02815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610404565b61046b81610c38565b600160a060020a0383166107ac5760405160e560020a62461bcd028152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610404565b600160a060020a03821661082b5760405160e560020a62461bcd02815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610404565b600160a060020a0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600160a060020a03831661090b5760405160e560020a62461bcd02815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610404565b600160a060020a03821661098a5760405160e560020a62461bcd02815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610404565b600160a060020a03831660009081526020819052604090205481811015610a1c5760405160e560020a62461bcd02815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610404565b600160a060020a03808516600090815260208190526040808220858503905591851681529081208054849290610a53908490610ddc565b9250508190555082600160a060020a031684600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a9f91815260200190565b60405180910390a350505050565b600160a060020a038216610b2c5760405160e560020a62461bcd02815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610404565b600160a060020a03821660009081526020819052604090205481811015610bbe5760405160e560020a62461bcd02815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610404565b600160a060020a0383166000908152602081905260408120838303905560028054849290610bed908490610df4565b9091555050604051828152600090600160a060020a038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b60058054600160a060020a0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8035600160a060020a0381168114610cae57600080fd5b919050565b600060208284031215610cc557600080fd5b610cce82610c97565b9392505050565b60008060408385031215610ce857600080fd5b610cf183610c97565b9150610cff60208401610c97565b90509250929050565b600080600060608486031215610d1d57600080fd5b610d2684610c97565b9250610d3460208501610c97565b9150604084013590509250925092565b60008060408385031215610d5757600080fd5b610d6083610c97565b946020939093013593505050565b600060208284031215610d8057600080fd5b5035919050565b600060208083528351808285015260005b81811015610db457858101830151858201604001528201610d98565b81811115610dc6576000604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610def57610def610e5f565b500190565b600082821015610e0657610e06610e5f565b500390565b600281046001821680610e1f57607f821691505b60208210811415610e59577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea26469706673582212203d1de5f94477fef8b825ff7f2bafc89d6b07f51caba28acb7884fea395d8886364736f6c63430008060033000000000000000000000000612f20f8895123930495a479621da6ab88061859000000000000000000000000612f20f8895123930495a479621da6ab88061859
Deployed Bytecode
0x608060405234801561001057600080fd5b5060043610610128576000357c01000000000000000000000000000000000000000000000000000000009004806370a08231116100bf57806395d89b411161008e57806395d89b411461023c578063a457c2d714610244578063a9059cbb14610257578063dd62ed3e1461026a578063f2fde38b146102a357600080fd5b806370a08231146101dd578063715018a61461020657806379cc67901461020e5780638da5cb5b1461022157600080fd5b80632ff2e9dc116100fb5780632ff2e9dc14610193578063313ce567146101a657806339509351146101b557806342966c68146101c857600080fd5b806306fdde031461012d578063095ea7b31461014b57806318160ddd1461016e57806323b872dd14610180575b600080fd5b6101356102b6565b6040516101429190610d87565b60405180910390f35b61015e610159366004610d44565b610348565b6040519015158152602001610142565b6002545b604051908152602001610142565b61015e61018e366004610d08565b61035e565b6101726b09b18ab5df7180b6b800000081565b60405160128152602001610142565b61015e6101c3366004610d44565b610425565b6101db6101d6366004610d6e565b610461565b005b6101726101eb366004610cb3565b600160a060020a031660009081526020819052604090205490565b6101db61046e565b6101db61021c366004610d44565b6104d7565b600554604051600160a060020a039091168152602001610142565b610135610579565b61015e610252366004610d44565b610588565b61015e610265366004610d44565b61063c565b610172610278366004610cd5565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b6101db6102b1366004610cb3565b610649565b6060600380546102c590610e0b565b80601f01602080910402602001604051908101604052809291908181526020018280546102f190610e0b565b801561033e5780601f106103135761010080835404028352916020019161033e565b820191906000526020600020905b81548152906001019060200180831161032157829003601f168201915b5050505050905090565b600061035533848461072e565b50600192915050565b600061036b84848461088c565b600160a060020a03841660009081526001602090815260408083203384529091529020548281101561040d5760405160e560020a62461bcd02815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61041a853385840361072e565b506001949350505050565b336000818152600160209081526040808320600160a060020a0387168452909152812054909161035591859061045c908690610ddc565b61072e565b61046b3382610aad565b50565b600554600160a060020a031633146104cb5760405160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610404565b6104d56000610c38565b565b60006104e38333610278565b90508181101561055d5760405160e560020a62461bcd028152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760448201527f616e6365000000000000000000000000000000000000000000000000000000006064820152608401610404565b61056a833384840361072e565b6105748383610aad565b505050565b6060600480546102c590610e0b565b336000908152600160209081526040808320600160a060020a0386168452909152812054828110156106255760405160e560020a62461bcd02815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610404565b610632338585840361072e565b5060019392505050565b600061035533848461088c565b600554600160a060020a031633146106a65760405160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610404565b600160a060020a0381166107255760405160e560020a62461bcd02815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610404565b61046b81610c38565b600160a060020a0383166107ac5760405160e560020a62461bcd028152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610404565b600160a060020a03821661082b5760405160e560020a62461bcd02815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610404565b600160a060020a0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600160a060020a03831661090b5760405160e560020a62461bcd02815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610404565b600160a060020a03821661098a5760405160e560020a62461bcd02815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610404565b600160a060020a03831660009081526020819052604090205481811015610a1c5760405160e560020a62461bcd02815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610404565b600160a060020a03808516600090815260208190526040808220858503905591851681529081208054849290610a53908490610ddc565b9250508190555082600160a060020a031684600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a9f91815260200190565b60405180910390a350505050565b600160a060020a038216610b2c5760405160e560020a62461bcd02815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610404565b600160a060020a03821660009081526020819052604090205481811015610bbe5760405160e560020a62461bcd02815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610404565b600160a060020a0383166000908152602081905260408120838303905560028054849290610bed908490610df4565b9091555050604051828152600090600160a060020a038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b60058054600160a060020a0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8035600160a060020a0381168114610cae57600080fd5b919050565b600060208284031215610cc557600080fd5b610cce82610c97565b9392505050565b60008060408385031215610ce857600080fd5b610cf183610c97565b9150610cff60208401610c97565b90509250929050565b600080600060608486031215610d1d57600080fd5b610d2684610c97565b9250610d3460208501610c97565b9150604084013590509250925092565b60008060408385031215610d5757600080fd5b610d6083610c97565b946020939093013593505050565b600060208284031215610d8057600080fd5b5035919050565b600060208083528351808285015260005b81811015610db457858101830151858201604001528201610d98565b81811115610dc6576000604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610def57610def610e5f565b500190565b600082821015610e0657610e06610e5f565b500390565b600281046001821680610e1f57607f821691505b60208210811415610e59577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea26469706673582212203d1de5f94477fef8b825ff7f2bafc89d6b07f51caba28acb7884fea395d8886364736f6c63430008060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000612f20f8895123930495a479621da6ab88061859000000000000000000000000612f20f8895123930495a479621da6ab88061859
-----Decoded View---------------
Arg [0] : wallet (address): 0x612F20f8895123930495A479621da6aB88061859
Arg [1] : owner (address): 0x612F20f8895123930495A479621da6aB88061859
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000612f20f8895123930495a479621da6ab88061859
Arg [1] : 000000000000000000000000612f20f8895123930495a479621da6ab88061859
Loading...
Loading
Loading...
Loading
OVERVIEW
The Crypto Banking Alliance has created a token referred to as CPRX which is short for “crypto perks.” The Alliance created CPRX to have a means of rewarding partner firms, both for profit and non-profit alike, for helping to spur the adoption of crypto banking systems and decentralized finance.Net Worth in USD
$2,003.11
Net Worth in ETH
1.043225
Token Allocations
USDT
98.62%
CPRX
0.97%
BNB
0.42%
Multichain Portfolio | 34 Chains
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.