Linked Questions

20 votes
2 answers
47k views

I am just starting to dive into Web3. I am trying to display the various ERC20 token values for a given Ethereum Address. The pieces I need to do this are: Token Contract Address Token Contract ABI ...
Shawn Tabrizi's user avatar
2 votes
1 answer
1k views

If I have the address of the solidity contract, can I from that address determine the source code and the ABI? I mean by this, is there a function to call in etherscan or something like that?
Trevor Lee Oakley's user avatar
176 votes
10 answers
111k views

ABI is referenced in many places including the official Ethereum website. What is an ABI and why is it necessary to use?
Taylor Gerring's user avatar
35 votes
4 answers
41k views

is there a way with web3.js to get a contract abi json, knowing only the contract address? I cannot find anymore a link in wich they explain how to do this, in this post the guy replied telling that ...
user2548436's user avatar
25 votes
2 answers
15k views

Why do I need a compiled version of the contract just to get the ABI definition? Seems like the contract address should be enough. Im very confused because I am simply trying to run a contract ...
ZMitton's user avatar
  • 2,800
5 votes
2 answers
2k views

I see no option to import contracts. Would appreciate any help here. I do not have the contract code, but I do have its address.
Gian Carlo Martinelli's user avatar
6 votes
1 answer
4k views

Is it possible to get a contract only by its address without the ABI definition? I'm experimenting with ethereum in a private network through the web3.js client console. The problem is that any ...
Henrique Barcelos's user avatar
2 votes
1 answer
3k views

I deployed ERC-721 contract to mainnet last night with truffle Contract is successfully deployed but no abi file generated (I don't know why..) so I can't run my dapp https://etherscan.io/address/...
PRB's user avatar
  • 43
4 votes
2 answers
956 views

I am using the npm package of solc to compile the contracts and accessing it as given here. It is compiling my contracts. But when I try to deploy the contract using web3.eth.sendTransaction({data: ...
Aniket's user avatar
  • 3,555
0 votes
1 answer
1k views

My Contract Source https://gist.github.com/munggo/ed25afb0aff9169a6c57f1d464d13177 Convert contract arguments to ABI-encoded format How???
Mun-Kyo Seo's user avatar
1 vote
1 answer
688 views

I have a question, what if I have a simple contract that has a public function "give something to this adress" and that will be called from a website I will put it on-chain but will not verify it ...
Michael Narper's user avatar
1 vote
1 answer
160 views

I'm a junior blockchain developer, I deployed a smart contract on Ethereum blockchain for NFT collection. How can I call reveal function to reveal NFTS using remix or ethers js ? function reveal() ...
David Jay's user avatar
  • 311