Skip to main content

Questions tagged [erc-223]

For questions regarding the use of tokens using the ERC223 standard.

3 votes
2 answers
666 views

Is there any specific way of identifying ERC-721, ERC-777, & ERC-223 contract events under the EVM, specifically under the eth.getTransactionReceipt() function? I know there's a way for ERC-20 ...
keennay's user avatar
  • 59
0 votes
1 answer
118 views

Hello I have a simple implementation for a ERC223 Token. I use this repository: ERC223-token-standard Here is my contract Code: pragma solidity ^0.5.8; import "./ERC223-token-standard-development/...
user3025417's user avatar
1 vote
2 answers
2k views

I'm testing to create a token in Truffle; it compiles fine, but it won't load the balance of the token in to Metamask. I've set the connection correct: it does load the ETH balances of the Ganache ...
Andy's user avatar
  • 11
0 votes
0 answers
154 views

I am searching for an ERC1410 security token contract source code (must be tested) to implement in another contract, there is a github repo available but it is written in the beginning that the code ...
Muhammad Sohail Ashraf's user avatar
2 votes
1 answer
306 views

From ERC 677 Motivation ERC20 requires a multistep process for tokens to be transferred to a contract. First approvemust be called on the token contract, enabling the contract to withdraw the ...
Moshe Stauber's user avatar
1 vote
1 answer
144 views

In order to list real live example code for ERC20-Token and Crowdsales at a talk about Smart Contracts I'm looking for such projects? Who can recommend me the real GOOD examples out there (and not ...
delete's user avatar
  • 337
1 vote
2 answers
1k views

Imagine you have a smart contract that accepts all forms of ERC20s. You want users to call a function by which they will send you their ERC20s and in exchange receive a greeting. Technically we can ...
Sophie259's user avatar
0 votes
1 answer
68 views

I was going through ERC223 and read that contracts which are supporting any erc223 token contract should maintain the list for them so that they can accept only those tokens. Is that the correct ...
CaptPython's user avatar
1 vote
1 answer
58 views

Trying to understand what we should expect after External Owned Accounts will be treated as Contracts after second Serenity update will be live. How does it influence ERC223 Tokens, will they break ...
Liberalite's user avatar
1 vote
1 answer
3k views

i've been trying to mix ERC20 functionality with ERC223 function overloading technique and create a bridge for backwards compatibility using SafeERC20. For relevancy sake i renamed SafeERC20 into ...
Liberalite's user avatar
0 votes
1 answer
388 views

i still don't get the idea behind the "if you send 100 ERC20 to a contract, they're stuck there and these 100 ERC20 are lost forever".. i really don't get.. like, a contract has an address and a ...
Fahmy Chaabane's user avatar
3 votes
2 answers
1k views

I'm trying to create an ERC20 Token that can send Tokens to a Receiver Contract similar to how ERC223 does and i decided to try ERC677 but i can't understand how to update this code to match Solidity ...
Liberalite's user avatar
0 votes
1 answer
261 views

function withdrawForeignTokens(address _tokenContract) onlyOwner IsAuthenticate public returns (bool) { ERC223Interface token = ERC223Interface(_tokenContract); return token.transfer(...
Rudrika's user avatar
  • 417
0 votes
1 answer
290 views

function transferToAddress(address _to, uint _value, bytes memory _data) internal returns (bool success) { require (_to != msg.sender && _to != address(0)); uint fee = ...
Rudrika's user avatar
  • 417
2 votes
1 answer
289 views

I did some research but I couldn't find anything so specific. I would like users that own a specific ERC20 token to be able to use it to buy an ERC223 token generated by a contract according to ...
Zetal's user avatar
  • 91

15 30 50 per page