-2

I created/fork a bep20 token, if finishes successfully & contract fully created. But i cant see the token or anything related to the token in the contract. the only thing visible are the contract address, transaction hash. e.t.c. you can check the link below to verify my words.

https://bscscan.com/tx/0xc61a353504deca41bdfb46b199f91adedd2bbd19f5ddae29ba54122a71e68c3f

bature
  • 1
  • Hi, welcome to StackOverflow ! You should take the [Tour](https://stackoverflow.com/tour) on StackOverflow, explaining how to properly ask a question. The community is here to help you, but you definitely need to provide more details to help us answer your question :) (such as code samples, giving more context of what you are trying to achieve, etc) – Jissay Apr 23 '21 at 15:03

1 Answers1

0

As the contract detail page says, you deployed the library Address - not the contract SafeMoon that you probably wanted to deploy.

Bscscan screenshot

Since you're deploying the contract using Remix, you need to select the correct contract in the Deploy tab.

Deploy tab screenshot

Petr Hejda
  • 40,554
  • 8
  • 72
  • 100
  • Ok so how can i deploy the contract seprately. and from where. because i have been trying for days now, yet no progress. please help. – bature Apr 20 '21 at 10:43
  • You need to change the contract name that you're deploying, in your deployment process. Your question doesn't say whether you deploy it using Remix (if so, [this answer](https://stackoverflow.com/a/67165153/1693192) will help you navigate, but there's a separate selectbox for deployment too - so not only select in during compile but also during deploy) or using `web3` or `truffle` or any other code-based tool - but if it's in your code, you need to specify the contract name in your code. – Petr Hejda Apr 20 '21 at 10:49
  • sorry i forgot to add. i'm using remix. – bature Apr 20 '21 at 10:53
  • Then you need to select the contract in the Deployment tab in Remix https://imgur.com/a/PLmavjZ – Petr Hejda Apr 20 '21 at 10:56