BEP-20
Overview
Max Total Supply
1,000,000,000bwJUP
Holders
10,467 ( 0.010%)
Market
Price
$0.0008 @ 0.000001 BNB (+17.32%)
Onchain Market Cap
$786,900.00
Circulating Supply Market Cap
$787,702.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
46,215.669399066352601156 bwJUPValue
$36.37 ( ~0.0522851060900829 BNB) [0.0046%]Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
Jupiter
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/**
*Submitted for verification at BscScan.com on 2021-02-13
*/
/**
*Submitted for verification at Etherscan.io on 2020-08-16
*/
pragma solidity ^0.6.0;
//
// SPDX-License-Identifier: MIT
//
contract Jupiter {
string public constant name = "BSC Wrapped Jupiter";
string public constant symbol = "bwJUP";
uint8 public constant decimals = 18;
event Approval(address indexed tokenOwner, address indexed spender, uint tokens);
event Transfer(address indexed from, address indexed to, uint tokens);
mapping(address => uint256) balances;
mapping(address => mapping (address => uint256)) allowed;
uint256 totalSupply_;
using SafeMath for uint256;
constructor(uint256 total) public {
totalSupply_ = total;
balances[msg.sender] = totalSupply_;
}
function totalSupply() public view returns (uint256) {
return totalSupply_;
}
function balanceOf(address tokenOwner) public view returns (uint) {
return balances[tokenOwner];
}
function transfer(address receiver, uint numTokens) public returns (bool) {
require(numTokens <= balances[msg.sender]);
balances[msg.sender] = balances[msg.sender].sub(numTokens);
balances[receiver] = balances[receiver].add(numTokens);
emit Transfer(msg.sender, receiver, numTokens);
return true;
}
function approve(address delegate, uint numTokens) public returns (bool) {
allowed[msg.sender][delegate] = numTokens;
Approval(msg.sender, delegate, numTokens);
return true;
}
function allowance(address owner, address delegate) public view returns (uint) {
return allowed[owner][delegate];
}
function transferFrom(address owner, address buyer, uint numTokens) public returns (bool) {
require(numTokens <= balances[owner]);
require(numTokens <= allowed[owner][msg.sender]);
balances[owner] = balances[owner].sub(numTokens);
allowed[owner][msg.sender] = allowed[owner][msg.sender].sub(numTokens);
balances[buyer] = balances[buyer].add(numTokens);
Transfer(owner, buyer, numTokens);
return true;
}
}
//
/**
* @dev Wrappers over Solidity's arithmetic operations with added overflow
* checks.
*
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* in bugs, because programmers usually assume that an overflow raises an
* error, which is the standard behavior in high level programming languages.
* `SafeMath` restores this intuition by reverting the transaction when an
* operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b > 0, errorMessage);
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return mod(a, b, "SafeMath: modulo by zero");
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts with custom message when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b != 0, errorMessage);
return a % b;
}
}
// library SafeMath {
// function sub(uint256 a, uint256 b) internal pure returns (uint256) {
// assert(b <= a);
// return a - b;
// }
// function add(uint256 a, uint256 b) internal pure returns (uint256) {
// uint256 c = a + b;
// assert(c >= a);
// return c;
// }
// }Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"total","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"tokenOwner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"Approval","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":"tokens","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"delegate","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"delegate","type":"address"},{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenOwner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":"receiver","type":"address"},{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"buyer","type":"address"},{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
608060405234801561001057600080fd5b506040516107223803806107228339818101604052602081101561003357600080fd5b50516002819055336000908152602081905260409020556106c9806100596000396000f3fe608060405234801561001057600080fd5b50600436106100935760003560e01c8063313ce56711610066578063313ce567146101a557806370a08231146101c357806395d89b41146101e9578063a9059cbb146101f1578063dd62ed3e1461021d57610093565b806306fdde0314610098578063095ea7b31461011557806318160ddd1461015557806323b872dd1461016f575b600080fd5b6100a061024b565b6040805160208082528351818301528351919283929083019185019080838360005b838110156100da5781810151838201526020016100c2565b50505050905090810190601f1680156101075780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101416004803603604081101561012b57600080fd5b506001600160a01b03813516906020013561027a565b604080519115158252519081900360200190f35b61015d6102e0565b60408051918252519081900360200190f35b6101416004803603606081101561018557600080fd5b506001600160a01b038135811691602081013590911690604001356102e6565b6101ad61042f565b6040805160ff9092168252519081900360200190f35b61015d600480360360208110156101d957600080fd5b50356001600160a01b0316610434565b6100a061044f565b6101416004803603604081101561020757600080fd5b506001600160a01b038135169060200135610470565b61015d6004803603604081101561023357600080fd5b506001600160a01b038135811691602001351661052e565b604051806040016040528060138152602001722129a1902bb930b83832b210253ab834ba32b960691b81525081565b3360008181526001602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60025490565b6001600160a01b03831660009081526020819052604081205482111561030b57600080fd5b6001600160a01b038416600090815260016020908152604080832033845290915290205482111561033b57600080fd5b6001600160a01b03841660009081526020819052604090205461035e9083610559565b6001600160a01b0385166000908152602081815260408083209390935560018152828220338352905220546103939083610559565b6001600160a01b03808616600090815260016020908152604080832033845282528083209490945591861681529081905220546103d090836105a2565b6001600160a01b038085166000818152602081815260409182902094909455805186815290519193928816927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a35060019392505050565b601281565b6001600160a01b031660009081526020819052604090205490565b60405180604001604052806005815260200164062774a55560dc1b81525081565b3360009081526020819052604081205482111561048c57600080fd5b336000908152602081905260409020546104a69083610559565b33600090815260208190526040808220929092556001600160a01b038516815220546104d290836105a2565b6001600160a01b038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600061059b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506105fc565b9392505050565b60008282018381101561059b576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000818484111561068b5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610650578181015183820152602001610638565b50505050905090810190601f16801561067d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50505090039056fea2646970667358221220018815dca72465d55ace15e712a4da2eda4160395ea1868fb0e277a3f383148e64736f6c634300060c00330000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100935760003560e01c8063313ce56711610066578063313ce567146101a557806370a08231146101c357806395d89b41146101e9578063a9059cbb146101f1578063dd62ed3e1461021d57610093565b806306fdde0314610098578063095ea7b31461011557806318160ddd1461015557806323b872dd1461016f575b600080fd5b6100a061024b565b6040805160208082528351818301528351919283929083019185019080838360005b838110156100da5781810151838201526020016100c2565b50505050905090810190601f1680156101075780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101416004803603604081101561012b57600080fd5b506001600160a01b03813516906020013561027a565b604080519115158252519081900360200190f35b61015d6102e0565b60408051918252519081900360200190f35b6101416004803603606081101561018557600080fd5b506001600160a01b038135811691602081013590911690604001356102e6565b6101ad61042f565b6040805160ff9092168252519081900360200190f35b61015d600480360360208110156101d957600080fd5b50356001600160a01b0316610434565b6100a061044f565b6101416004803603604081101561020757600080fd5b506001600160a01b038135169060200135610470565b61015d6004803603604081101561023357600080fd5b506001600160a01b038135811691602001351661052e565b604051806040016040528060138152602001722129a1902bb930b83832b210253ab834ba32b960691b81525081565b3360008181526001602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60025490565b6001600160a01b03831660009081526020819052604081205482111561030b57600080fd5b6001600160a01b038416600090815260016020908152604080832033845290915290205482111561033b57600080fd5b6001600160a01b03841660009081526020819052604090205461035e9083610559565b6001600160a01b0385166000908152602081815260408083209390935560018152828220338352905220546103939083610559565b6001600160a01b03808616600090815260016020908152604080832033845282528083209490945591861681529081905220546103d090836105a2565b6001600160a01b038085166000818152602081815260409182902094909455805186815290519193928816927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a35060019392505050565b601281565b6001600160a01b031660009081526020819052604090205490565b60405180604001604052806005815260200164062774a55560dc1b81525081565b3360009081526020819052604081205482111561048c57600080fd5b336000908152602081905260409020546104a69083610559565b33600090815260208190526040808220929092556001600160a01b038516815220546104d290836105a2565b6001600160a01b038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600061059b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506105fc565b9392505050565b60008282018381101561059b576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000818484111561068b5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610650578181015183820152602001610638565b50505050905090810190601f16801561067d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50505090039056fea2646970667358221220018815dca72465d55ace15e712a4da2eda4160395ea1868fb0e277a3f383148e64736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
-----Decoded View---------------
Arg [0] : total (uint256): 1000000000000000000000000000
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
Deployed Bytecode Sourcemap
139:2048:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;165:51;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1352:207;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;1352:207:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;780:84;;;:::i;:::-;;;;;;;;;;;;;;;;1704:480;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;1704:480:0;;;;;;;;;;;;;;;;;:::i;269:35::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;876:112;;;;;;;;;;;;;;;;-1:-1:-1;876:112:0;-1:-1:-1;;;;;876:112:0;;:::i;223:39::-;;;:::i;996:348::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;996:348:0;;;;;;;;:::i;1567:129::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;1567:129:0;;;;;;;;;;:::i;165:51::-;;;;;;;;;;;;;;-1:-1:-1;;;165:51:0;;;;:::o;1352:207::-;1444:10;1419:4;1436:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;1436:29:0;;;;;;;;;;;:41;;;1488;;;;;;;1419:4;;1436:29;;1444:10;;1488:41;;;;;;;;-1:-1:-1;1547:4:0;1352:207;;;;:::o;780:84::-;844:12;;780:84;:::o;1704:480::-;-1:-1:-1;;;;;1826:15:0;;1788:4;1826:15;;;;;;;;;;;1813:28;;;1805:37;;;;;;-1:-1:-1;;;;;1878:14:0;;;;;;:7;:14;;;;;;;;1893:10;1878:26;;;;;;;;1865:39;;;1857:48;;;;;;-1:-1:-1;;;;;1940:15:0;;:8;:15;;;;;;;;;;;:30;;1960:9;1940:19;:30::i;:::-;-1:-1:-1;;;;;1922:15:0;;:8;:15;;;;;;;;;;;:48;;;;2010:7;:14;;;;;2025:10;2010:26;;;;;;:41;;2041:9;2010:30;:41::i;:::-;-1:-1:-1;;;;;1981:14:0;;;;;;;:7;:14;;;;;;;;1996:10;1981:26;;;;;;;:70;;;;2080:15;;;;;;;;;;;:30;;2100:9;2080:19;:30::i;:::-;-1:-1:-1;;;;;2062:15:0;;;:8;:15;;;;;;;;;;;;:48;;;;2121:33;;;;;;;2062:15;;2121:33;;;;;;;;;;;;;-1:-1:-1;2172:4:0;1704:480;;;;;:::o;269:35::-;302:2;269:35;:::o;876:112::-;-1:-1:-1;;;;;960:20:0;936:4;960:20;;;;;;;;;;;;876:112::o;223:39::-;;;;;;;;;;;;;;-1:-1:-1;;;223:39:0;;;;:::o;996:348::-;1111:10;1064:4;1102:20;;;;;;;;;;;1089:33;;;1081:42;;;;;;1166:10;1157:8;:20;;;;;;;;;;;:35;;1182:9;1157:24;:35::i;:::-;1143:10;1134:8;:20;;;;;;;;;;;:58;;;;-1:-1:-1;;;;;1224:18:0;;;;;;:33;;1247:9;1224:22;:33::i;:::-;-1:-1:-1;;;;;1203:18:0;;:8;:18;;;;;;;;;;;;:54;;;;1273:41;;;;;;;1203:18;;1282:10;;1273:41;;;;;;;;;;-1:-1:-1;1332:4:0;996:348;;;;:::o;1567:129::-;-1:-1:-1;;;;;1664:14:0;;;1640:4;1664:14;;;:7;:14;;;;;;;;:24;;;;;;;;;;;;;1567:129::o;3500:136::-;3558:7;3585:43;3589:1;3592;3585:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;3578:50;3500:136;-1:-1:-1;;;3500:136:0:o;3036:181::-;3094:7;3126:5;;;3150:6;;;;3142:46;;;;;-1:-1:-1;;;3142:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;3939:192;4025:7;4061:12;4053:6;;;;4045:29;;;;-1:-1:-1;;;4045:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4097:5:0;;;3939:192::o
Swarm Source
ipfs://018815dca72465d55ace15e712a4da2eda4160395ea1868fb0e277a3f383148e
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.
Add Token to MetaMask (Web3)