false
false
0

Contract Address Details

0x458b14915e651243Acf89C05859a22d5Cff976A6

Contract Name
BulksenderProxy
Creator
0x3de332–caf5e9 at 0xddb364–a59de5
Implementation
0x6b05d925cef447cf820836f9c9128031382f9fca
Balance
0 NUM ( )
Tokens
Fetching tokens...
Transactions
31 Transactions
Transfers
0 Transfers
Gas Used
17,083,067
Last Balance Update
1214842
Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
Contract name:
BulksenderProxy




Optimization enabled
false
Compiler version
v0.4.24+commit.e67f0147




EVM Version
default




Verified at
2024-06-17T07:36:28.249522Z

Constructor Arguments

0x0000000000000000000000006b05d925cef447cf820836f9c9128031382f9fca00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000010537570706f72747320666f72204e465400000000000000000000000000000000

 Arg [0] (&lt;b&gt;address&lt;/b&gt;) : &lt;a href=&quot;{#{address_path(@conn, :show, @address)}}&quot;&gt;0x6b05d925cef447cf820836f9c9128031382f9fca&lt;/a&gt; Arg [1] (<b>string</b>) : Supports for NFT
              

Contract source code

Sol2uml
new
/**
 * @title The most trusted crypto airdrop bulksending tool, supports  Numbers Mainnet, Ethereum, Ether, Erc20 token, BSC, BNB, BEP20 tokens, MATIC (Polygon), Avalanche, OKEx Chain, Arbitrumx One, Op, Base, Linea, Famtom FTM, xDai, XinFin Network, Harmony, Celo, Metis, Merlin Chain, HT, HRC20 tokens, Solana, Aptos, TRX, trc20 tokens, trc10 tokens and NFTs
 * @dev To Use this Dapp: https://bulksender.app, https://tron.bulksender.app, https://solana.bulksender.app
*/

pragma solidity 0.4.24;

/**
 * @title Proxy
 * @dev Gives the possibility to delegate any call to a foreign implementation.
 */
contract Proxy {
  /**
  * @dev Tells the address of the implementation where every call will be delegated.
  * @return address of the implementation to which it will be delegated
  */
  function implementation() public view returns (address);

  /**
  * @dev Tells the version of the current implementation
  * @return version of the current implementation
  */
  function version() public view returns (string);

  /**
  * @dev Fallback function allowing to perform a delegatecall to the given implementation.
  * This function will return whatever the implementation call returns
  */
  function () payable public {
    address _impl = implementation();
    require(_impl != address(0));

    assembly {
      let ptr := mload(0x40)
      calldatacopy(ptr, 0, calldatasize)
      let result := delegatecall(gas, _impl, ptr, calldatasize, 0, 0)
      let size := returndatasize
      returndatacopy(ptr, 0, size)

      switch result
      case 0 { revert(ptr, size) }
      default { return(ptr, size) }
    }
  }
}

pragma solidity 0.4.24;

/**
 * @title UpgradeabilityProxy
 * @dev This contract represents a proxy where the implementation address to which it will delegate can be upgraded
 */
contract UpgradeabilityProxy is Proxy {
  /**
   * @dev This event will be emitted every time the implementation gets upgraded
   * @param implementation representing the address of the upgraded implementation
   */
  event Upgraded(address indexed implementation, string version);

  // Storage position of the address of the current implementation
  bytes32 private constant implementationPosition = keccak256("bulksender.app.proxy.implementation");

   //Version name of the current implementation
  string internal _version;

  /**
   * @dev Constructor function
   */
  constructor() public {}


  /**
    * @dev Tells the version name of the current implementation
    * @return string representing the name of the current version
    */
    function version() public view returns (string) {
        return _version;
    }

  /**
   * @dev Tells the address of the current implementation
   * @return address of the current implementation
   */
  function implementation() public view returns (address impl) {
    bytes32 position = implementationPosition;
    assembly {
      impl := sload(position)
    }
  }

  /**
   * @dev Sets the address of the current implementation
   * @param _newImplementation address representing the new implementation to be set
   */
  function _setImplementation(address _newImplementation) internal {
    bytes32 position = implementationPosition;
    assembly {
      sstore(position, _newImplementation)
    }
  }

  /**
   * @dev Upgrades the implementation address
   * @param _newImplementation representing the address of the new implementation to be set
   */
  function _upgradeTo(address _newImplementation, string _newVersion) internal {
    address currentImplementation = implementation();
    require(currentImplementation != _newImplementation);
    _setImplementation(_newImplementation);
    _version = _newVersion;
    emit Upgraded( _newImplementation, _newVersion);
  }
}


pragma solidity 0.4.24;
/**
 * @title BulksenderProxy
 * @dev This contract combines an upgradeability proxy with basic authorization control functionalities
 */
contract BulksenderProxy is UpgradeabilityProxy {
  /**
  * @dev Event to show ownership has been transferred
  * @param previousOwner representing the address of the previous owner
  * @param newOwner representing the address of the new owner
  */
  event ProxyOwnershipTransferred(address previousOwner, address newOwner);

  // Storage position of the owner of the contract
  bytes32 private constant proxyOwnerPosition = keccak256("bulksender.app.proxy.owner");

  /**
  * @dev the constructor sets the original owner of the contract to the sender account.
  */
  constructor(address _implementation, string _version) public {
    _setUpgradeabilityOwner(msg.sender);
    _upgradeTo(_implementation, _version);
  }

  /**
  * @dev Throws if called by any account other than the owner.
  */
  modifier onlyProxyOwner() {
    require(msg.sender == proxyOwner());
    _;
  }

  /**
   * @dev Tells the address of the owner
   * @return the address of the owner
   */
  function proxyOwner() public view returns (address owner) {
    bytes32 position = proxyOwnerPosition;
    assembly {
      owner := sload(position)
    }
  }

  /**
   * @dev Allows the current owner to transfer control of the contract to a newOwner.
   * @param _newOwner The address to transfer ownership to.
   */
  function transferProxyOwnership(address _newOwner) public onlyProxyOwner {
    require(_newOwner != address(0));
    _setUpgradeabilityOwner(_newOwner);
    emit ProxyOwnershipTransferred(proxyOwner(), _newOwner);
  }

  /**
   * @dev Allows the proxy owner to upgrade the current version of the proxy.
   * @param _implementation representing the address of the new implementation to be set.
   */
  function upgradeTo(address _implementation, string _newVersion) public onlyProxyOwner {
    _upgradeTo(_implementation, _newVersion);
  }

  /**
   * @dev Allows the proxy owner to upgrade the current version of the proxy and call the new implementation
   * to initialize whatever is needed through a low level call.
   * @param _implementation representing the address of the new implementation to be set.
   * @param _data represents the msg.data to bet sent in the low level call. This parameter may include the function
   * signature of the implementation to be called with the needed payload
   */
  function upgradeToAndCall(address _implementation, string _newVersion, bytes _data) payable public onlyProxyOwner {
    _upgradeTo(_implementation, _newVersion);
    require(address(this).call.value(msg.value)(_data));
  }

  /*
   * @dev Sets the address of the owner
   */
  function _setUpgradeabilityOwner(address _newProxyOwner) internal {
    bytes32 position = proxyOwnerPosition;
    assembly {
      sstore(position, _newProxyOwner)
    }
  }
}
        

Contract ABI

[{"type":"function","stateMutability":"view","payable":false,"outputs":[{"type":"address","name":"owner"}],"name":"proxyOwner","inputs":[],"constant":true},{"type":"function","stateMutability":"nonpayable","payable":false,"outputs":[],"name":"upgradeTo","inputs":[{"type":"address","name":"_implementation"},{"type":"string","name":"_newVersion"}],"constant":false},{"type":"function","stateMutability":"view","payable":false,"outputs":[{"type":"string","name":""}],"name":"version","inputs":[],"constant":true},{"type":"function","stateMutability":"view","payable":false,"outputs":[{"type":"address","name":"impl"}],"name":"implementation","inputs":[],"constant":true},{"type":"function","stateMutability":"payable","payable":true,"outputs":[],"name":"upgradeToAndCall","inputs":[{"type":"address","name":"_implementation"},{"type":"string","name":"_newVersion"},{"type":"bytes","name":"_data"}],"constant":false},{"type":"function","stateMutability":"nonpayable","payable":false,"outputs":[],"name":"transferProxyOwnership","inputs":[{"type":"address","name":"_newOwner"}],"constant":false},{"type":"constructor","stateMutability":"nonpayable","payable":false,"inputs":[{"type":"address","name":"_implementation"},{"type":"string","name":"_version"}]},{"type":"fallback","stateMutability":"payable","payable":true},{"type":"event","name":"ProxyOwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","indexed":false},{"type":"address","name":"newOwner","indexed":false}],"anonymous":false},{"type":"event","name":"Upgraded","inputs":[{"type":"address","name":"implementation","indexed":true},{"type":"string","name":"version","indexed":false}],"anonymous":false}]
              

Contract Creation Code

Verify & Publish
0x60806040523480156200001157600080fd5b5060405162000d8638038062000d8683398101806040528101908080519060200190929190805182019291905050506200005a336200007d640100000000026401000000009004565b620000758282620000be640100000000026401000000009004565b505062000384565b600060405180807f62756c6b73656e6465722e6170702e70726f78792e6f776e6572000000000000815250601a019050604051809103902090508181555050565b6000620000d962000205640100000000026401000000009004565b90508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141515156200011757600080fd5b62000131836200026e640100000000026401000000009004565b816000908051906020019062000149929190620002d5565b508273ffffffffffffffffffffffffffffffffffffffff167ffeb57eb540ad2b58d897c813a06ff64690ef5de12413a361591aea28ee60748a836040518080602001828103825283818151815260200191508051906020019080838360005b83811015620001c5578082015181840152602081019050620001a8565b50505050905090810190601f168015620001f35780820380516001836020036101000a031916815260200191505b509250505060405180910390a2505050565b60008060405180807f62756c6b73656e6465722e6170702e70726f78792e696d706c656d656e74617481526020017f696f6e0000000000000000000000000000000000000000000000000000000000815250602301905060405180910390209050805491505090565b600060405180807f62756c6b73656e6465722e6170702e70726f78792e696d706c656d656e74617481526020017f696f6e00000000000000000000000000000000000000000000000000000000008152506023019050604051809103902090508181555050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200031857805160ff191683800117855562000349565b8280016001018555821562000349579182015b82811115620003485782518255916020019190600101906200032b565b5b5090506200035891906200035c565b5090565b6200038191905b808211156200037d57600081600090555060010162000363565b5090565b90565b6109f280620003946000396000f300608060405260043610610078576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff168063025313a2146100e757806336ba97941461013e57806354fd4d50146101c75780635c60da1b14610257578063d7e24337146102ae578063f1739cae14610370575b60006100826103b3565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141515156100c057600080fd5b60405136600082376000803683855af43d806000843e81600081146100e3578184f35b8184fd5b3480156100f357600080fd5b506100fc61041c565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561014a57600080fd5b506101c5600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001908201803590602001908080601f016020809104026020016040519081016040528093929190818152602001838380828437820191505050505050919291929050505061045f565b005b3480156101d357600080fd5b506101dc6104ae565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561021c578082015181840152602081019050610201565b50505050905090810190601f1680156102495780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561026357600080fd5b5061026c6103b3565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61036e600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001908201803590602001908080601f0160208091040260200160405190810160405280939291908181526020018383808284378201915050505050509192919290803590602001908201803590602001908080601f0160208091040260200160405190810160405280939291908181526020018383808284378201915050505050509192919290505050610550565b005b34801561037c57600080fd5b506103b1600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610633565b005b60008060405180807f62756c6b73656e6465722e6170702e70726f78792e696d706c656d656e74617481526020017f696f6e0000000000000000000000000000000000000000000000000000000000815250602301905060405180910390209050805491505090565b60008060405180807f62756c6b73656e6465722e6170702e70726f78792e6f776e6572000000000000815250601a01905060405180910390209050805491505090565b61046761041c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415156104a057600080fd5b6104aa828261075a565b5050565b606060008054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156105465780601f1061051b57610100808354040283529160200191610546565b820191906000526020600020905b81548152906001019060200180831161052957829003601f168201915b5050505050905090565b61055861041c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561059157600080fd5b61059b838361075a565b3073ffffffffffffffffffffffffffffffffffffffff16348260405180828051906020019080838360005b838110156105e15780820151818401526020810190506105c6565b50505050905090810190601f16801561060e5780820380516001836020036101000a031916815260200191505b5091505060006040518083038185875af192505050151561062e57600080fd5b505050565b61063b61041c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561067457600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141515156106b057600080fd5b6106b981610879565b7f5a3e66efaa1e445ebd894728a69d6959842ea1e97bd79b892797106e270efcd96106e261041c565b82604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019250505060405180910390a150565b60006107646103b3565b90508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141515156107a157600080fd5b6107aa836108ba565b81600090805190602001906107c0929190610921565b508273ffffffffffffffffffffffffffffffffffffffff167ffeb57eb540ad2b58d897c813a06ff64690ef5de12413a361591aea28ee60748a836040518080602001828103825283818151815260200191508051906020019080838360005b8381101561083a57808201518184015260208101905061081f565b50505050905090810190601f1680156108675780820380516001836020036101000a031916815260200191505b509250505060405180910390a2505050565b600060405180807f62756c6b73656e6465722e6170702e70726f78792e6f776e6572000000000000815250601a019050604051809103902090508181555050565b600060405180807f62756c6b73656e6465722e6170702e70726f78792e696d706c656d656e74617481526020017f696f6e00000000000000000000000000000000000000000000000000000000008152506023019050604051809103902090508181555050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061096257805160ff1916838001178555610990565b82800160010185558215610990579182015b8281111561098f578251825591602001919060010190610974565b5b50905061099d91906109a1565b5090565b6109c391905b808211156109bf5760008160009055506001016109a7565b5090565b905600a165627a7a72305820d4f9a3feaa913d74519a4f2a531c8fe287953bd8356ecda7f499c11e97f4907100290000000000000000000000006b05d925cef447cf820836f9c9128031382f9fca00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000010537570706f72747320666f72204e465400000000000000000000000000000000

Deployed ByteCode

0x608060405260043610610078576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff168063025313a2146100e757806336ba97941461013e57806354fd4d50146101c75780635c60da1b14610257578063d7e24337146102ae578063f1739cae14610370575b60006100826103b3565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141515156100c057600080fd5b60405136600082376000803683855af43d806000843e81600081146100e3578184f35b8184fd5b3480156100f357600080fd5b506100fc61041c565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561014a57600080fd5b506101c5600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001908201803590602001908080601f016020809104026020016040519081016040528093929190818152602001838380828437820191505050505050919291929050505061045f565b005b3480156101d357600080fd5b506101dc6104ae565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561021c578082015181840152602081019050610201565b50505050905090810190601f1680156102495780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561026357600080fd5b5061026c6103b3565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61036e600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001908201803590602001908080601f0160208091040260200160405190810160405280939291908181526020018383808284378201915050505050509192919290803590602001908201803590602001908080601f0160208091040260200160405190810160405280939291908181526020018383808284378201915050505050509192919290505050610550565b005b34801561037c57600080fd5b506103b1600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610633565b005b60008060405180807f62756c6b73656e6465722e6170702e70726f78792e696d706c656d656e74617481526020017f696f6e0000000000000000000000000000000000000000000000000000000000815250602301905060405180910390209050805491505090565b60008060405180807f62756c6b73656e6465722e6170702e70726f78792e6f776e6572000000000000815250601a01905060405180910390209050805491505090565b61046761041c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415156104a057600080fd5b6104aa828261075a565b5050565b606060008054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156105465780601f1061051b57610100808354040283529160200191610546565b820191906000526020600020905b81548152906001019060200180831161052957829003601f168201915b5050505050905090565b61055861041c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561059157600080fd5b61059b838361075a565b3073ffffffffffffffffffffffffffffffffffffffff16348260405180828051906020019080838360005b838110156105e15780820151818401526020810190506105c6565b50505050905090810190601f16801561060e5780820380516001836020036101000a031916815260200191505b5091505060006040518083038185875af192505050151561062e57600080fd5b505050565b61063b61041c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561067457600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141515156106b057600080fd5b6106b981610879565b7f5a3e66efaa1e445ebd894728a69d6959842ea1e97bd79b892797106e270efcd96106e261041c565b82604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019250505060405180910390a150565b60006107646103b3565b90508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141515156107a157600080fd5b6107aa836108ba565b81600090805190602001906107c0929190610921565b508273ffffffffffffffffffffffffffffffffffffffff167ffeb57eb540ad2b58d897c813a06ff64690ef5de12413a361591aea28ee60748a836040518080602001828103825283818151815260200191508051906020019080838360005b8381101561083a57808201518184015260208101905061081f565b50505050905090810190601f1680156108675780820380516001836020036101000a031916815260200191505b509250505060405180910390a2505050565b600060405180807f62756c6b73656e6465722e6170702e70726f78792e6f776e6572000000000000815250601a019050604051809103902090508181555050565b600060405180807f62756c6b73656e6465722e6170702e70726f78792e696d706c656d656e74617481526020017f696f6e00000000000000000000000000000000000000000000000000000000008152506023019050604051809103902090508181555050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061096257805160ff1916838001178555610990565b82800160010185558215610990579182015b8281111561098f578251825591602001919060010190610974565b5b50905061099d91906109a1565b5090565b6109c391905b808211156109bf5760008160009055506001016109a7565b5090565b905600a165627a7a72305820d4f9a3feaa913d74519a4f2a531c8fe287953bd8356ecda7f499c11e97f490710029
<script src="{@file}"> </script>