0xc8e3…65f6

All memos sent from and to 0xc8e3…65f6.

data:application/json,{"p":"ierc-20","op":"proxy_transfer","proxy":[{"tick":"Sparkle Inscription","nonce":"1702221975558","from":"0xc8e3cf7cc4b01a69704e1d7b18a0b09ed90d65f6","to":"0x41a87ea7a1cb7ad228f690ed80a5fcceb5be4435","amt":"119","value":"0.00698649","sign":"0xf255a559c454c39900764ccc629813c22f4ac36343c54d29b770fa2e53119ebc76643b47044b1d3b57fe0780dbdf9f1985497e1f47924381c7d856816e267e6a1b"}]}
data:application/json,{"p":"ierc-20","op":"proxy_transfer","proxy":[{"tick":"ethi","nonce":"1702221954462","from":"0xc8e3cf7cc4b01a69704e1d7b18a0b09ed90d65f6","to":"0xcc5e075a5fb6d64c253211806bd91b53abadd479","amt":"500","value":"0.249995","sign":"0x950b0272fbce9aa2584fab6a3d8170cb9fe0b2191d11d88fa14702e2a5f29c804f252f6a8a50e8487865d91c60087e63c25d8562341b30b17bdc58398a1bcf151c"}]}
data:application/vnd.facet.tx+json;rule=esip6,{"op":"call","data":{"to":"0xf29e6e319ac4ce8c100cfc02b1702eb3d275029e","function":"swapExactTokensForTokens","args":{"amountIn":"13000000000000000000000","amountOutMin":"13625740825352050","path":["0x345448777295920dad4ded8ab4eaa452b4206d9f","0x1673540243e793b0e77c038d4a88448eff524dce"],"to":"0xC8E3cf7cc4b01a69704e1D7b18A0B09eD90d65F6","deadline":"1000000000000000000"}}}
data:application/vnd.facet.tx+json;rule=esip6,{"op":"create","data":{"init_code_hash":"0xb1b0ed1e4a8c9c9b0210f267137e368f782453e41f622fa8cf68296d04c84c88","args":{"name":"scam","symbol":"scam","maxSupply":"21000000000","perMintLimit":"1000000","decimals":"3"},"source_code":"pragma(:rubidity, \"1.0.0\")\ncontract(:ERC20, abstract: true) {\n event(:Transfer, { from: :address, to: :address, amount: :uint256 })\n event(:Approval, { owner: :address, spender: :address, amount: :uint256 })\n string(:public, :name)\n string(:public, :symbol)\n uint8(:public, :decimals)\n uint256(:public, :totalSupply)\n mapping(({ address: :uint256 }), :public, :balanceOf)\n mapping(({ address: mapping(address: :uint256) }), :public, :allowance)\n constructor(name: :string, symbol: :string, decimals: :uint8) {\n s.name=name\n s.symbol=symbol\n s.decimals=decimals\n }\n function(:approve, { spender: :address, amount: :uint256 }, :public, :virtual, returns: :bool) {\n s.allowance[msg.sender][spender] = amount\n emit(:Approval, owner: msg.sender, spender: spender, amount: amount)\n return true\n }\n function(:transfer, { to: :address, amount: :uint256 }, :public, :virtual, returns: :bool) {\n require(s.balanceOf[msg.sender] >= amount, \"Insufficient balance\")\n s.balanceOf[msg.sender] -= amount\n s.balanceOf[to] += amount\n emit(:Transfer, from: msg.sender, to: to, amount: amount)\n return true\n }\n function(:transferFrom, { from: :address, to: :address, amount: :uint256 }, :public, :virtual, returns: :bool) {\n allowed = s.allowance[from][msg.sender]\n require(s.balanceOf[from] >= amount, \"Insufficient balance\")\n require(allowed >= amount, \"Insufficient allowance\")\n s.allowance[from][msg.sender] = allowed - amount\n s.balanceOf[from] -= amount\n s.balanceOf[to] += amount\n emit(:Transfer, from: from, to: to, amount: amount)\n return true\n }\n function(:_mint, { to: :address, amount: :uint256 }, :internal, :virtual) {\n s.totalSupply += amount\n s.balanceOf[to] += amount\n emit(:Transfer, from: address(0), to: to, amount: amount)\n }\n function(:_burn, { from: :address, amount: :uint256 }, :internal, :virtual) {\n require(s.balanceOf[from] >= amount, \"Insufficient balance\")\n s.balanceOf[from] -= amount\n s.totalSupply -= amount\n emit(:Transfer, from: from, to: address(0), amount: amount)\n }\n}\ncontract(:PublicMintERC20, is: :ERC20) {\n uint256(:public, :maxSupply)\n uint256(:public, :perMintLimit)\n constructor(name: :string, symbol: :string, maxSupply: :uint256, perMintLimit: :uint256, decimals: :uint8) {\n self.ERC20.constructor(name: name, symbol: symbol, decimals: decimals)\n s.maxSupply=maxSupply\n s.perMintLimit=perMintLimit\n }\n function(:mint, { amount: :uint256 }, :public) {\n require(amount > 0, \"Amount must be positive\")\n require(amount <= s.perMintLimit, \"Exceeded mint limit\")\n require(s.totalSupply + amount <= s.maxSupply, \"Exceeded max supply\")\n _mint(to: msg.sender, amount: amount)\n }\n function(:airdrop, { to: :address, amount: :uint256 }, :public) {\n require(amount > 0, \"Amount must be positive\")\n require(amount <= s.perMintLimit, \"Exceeded mint limit\")\n require(s.totalSupply + amount <= s.maxSupply, \"Exceeded max supply\")\n _mint(to: to, amount: amount)\n }\n}\n"}}
data:application/vnd.facet.tx+json;rule=esip6,{"op":"create","data":{"init_code_hash":"0xb1b0ed1e4a8c9c9b0210f267137e368f782453e41f622fa8cf68296d04c84c88","args":{"decimals":"4","name":"scam","symbol":"scam","maxSupply":"210000000000","perMintLimit":"10000000"},"source_code":"pragma(:rubidity, \"1.0.0\")\ncontract(:ERC20, abstract: true) {\n event(:Transfer, { from: :address, to: :address, amount: :uint256 })\n event(:Approval, { owner: :address, spender: :address, amount: :uint256 })\n string(:public, :name)\n string(:public, :symbol)\n uint8(:public, :decimals)\n uint256(:public, :totalSupply)\n mapping(({ address: :uint256 }), :public, :balanceOf)\n mapping(({ address: mapping(address: :uint256) }), :public, :allowance)\n constructor(name: :string, symbol: :string, decimals: :uint8) {\n s.name=name\n s.symbol=symbol\n s.decimals=decimals\n }\n function(:approve, { spender: :address, amount: :uint256 }, :public, :virtual, returns: :bool) {\n s.allowance[msg.sender][spender] = amount\n emit(:Approval, owner: msg.sender, spender: spender, amount: amount)\n return true\n }\n function(:transfer, { to: :address, amount: :uint256 }, :public, :virtual, returns: :bool) {\n require(s.balanceOf[msg.sender] >= amount, \"Insufficient balance\")\n s.balanceOf[msg.sender] -= amount\n s.balanceOf[to] += amount\n emit(:Transfer, from: msg.sender, to: to, amount: amount)\n return true\n }\n function(:transferFrom, { from: :address, to: :address, amount: :uint256 }, :public, :virtual, returns: :bool) {\n allowed = s.allowance[from][msg.sender]\n require(s.balanceOf[from] >= amount, \"Insufficient balance\")\n require(allowed >= amount, \"Insufficient allowance\")\n s.allowance[from][msg.sender] = allowed - amount\n s.balanceOf[from] -= amount\n s.balanceOf[to] += amount\n emit(:Transfer, from: from, to: to, amount: amount)\n return true\n }\n function(:_mint, { to: :address, amount: :uint256 }, :internal, :virtual) {\n s.totalSupply += amount\n s.balanceOf[to] += amount\n emit(:Transfer, from: address(0), to: to, amount: amount)\n }\n function(:_burn, { from: :address, amount: :uint256 }, :internal, :virtual) {\n require(s.balanceOf[from] >= amount, \"Insufficient balance\")\n s.balanceOf[from] -= amount\n s.totalSupply -= amount\n emit(:Transfer, from: from, to: address(0), amount: amount)\n }\n}\ncontract(:PublicMintERC20, is: :ERC20) {\n uint256(:public, :maxSupply)\n uint256(:public, :perMintLimit)\n constructor(name: :string, symbol: :string, maxSupply: :uint256, perMintLimit: :uint256, decimals: :uint8) {\n self.ERC20.constructor(name: name, symbol: symbol, decimals: decimals)\n s.maxSupply=maxSupply\n s.perMintLimit=perMintLimit\n }\n function(:mint, { amount: :uint256 }, :public) {\n require(amount > 0, \"Amount must be positive\")\n require(amount <= s.perMintLimit, \"Exceeded mint limit\")\n require(s.totalSupply + amount <= s.maxSupply, \"Exceeded max supply\")\n _mint(to: msg.sender, amount: amount)\n }\n function(:airdrop, { to: :address, amount: :uint256 }, :public) {\n require(amount > 0, \"Amount must be positive\")\n require(amount <= s.perMintLimit, \"Exceeded mint limit\")\n require(s.totalSupply + amount <= s.maxSupply, \"Exceeded max supply\")\n _mint(to: to, amount: amount)\n }\n}\n"}}
data:application/json,{"p":"ierc-20","op":"proxy_transfer","proxy":[{"tick":"ethi","nonce":"1701083710238","from":"0xc8e3cf7cc4b01a69704e1d7b18a0b09ed90d65f6","to":"0x0186d61abeb8e9a6b5fb407d2e421bbc2e80e458","amt":"500","value":"0.069745","sign":"0x69241837922086da085cbf44ed999d1afa48bf3d434fc2ec2779bd96a46f07640dedf2557d7a418db7de0b4cd98de9d37b99a29c7824b33b0ca67e645325d1e21b"}]}
data:,{I am the founder of the erc-20-based scam token. This token is used for a PFP project called ScamFace. Please refrain from issuing it as it is worthless and just a meme coin. The team has 10% volume and 10% airdrop volume. A separate notification will be posted on Twitter(x) at a later date. My Twitter account is NftUniv. Have a nice day.}
1-50 of 358