Hey , Someone can help me to know how can I have the ABI code for a token I wan’t to create . I search everywhere don’t found how to do
Jun 4, 2021, 11:42 AM
write the code, then compile it in Remix as senor dev said
Jun 4, 2021, 11:45 AM
When I compile the code on remix, the ABI is empty, so when I try to verify my contract on bscscan, it say that can’t found ABI code, so can’t read/write on bscscan
Any idea?
Jun 4, 2021, 12:20 PM
can you show us a photo
Jun 4, 2021, 12:20 PM
Without ABI contract doesn't deployed.... (Every smartcontract contain abi)
Jun 4, 2021, 12:21 PM
Jun 4, 2021, 12:44 PM
you compiled your code right?
Jun 4, 2021, 12:45 PM
Yes
Jun 4, 2021, 12:45 PM
did you tried copying the abi encode
Jun 4, 2021, 12:46 PM
Here? When I tried to copy is empty
Jun 4, 2021, 12:47 PM
+
It`s can look like this?
or i do something wrong?
Jun 4, 2021, 1:40 PM
I can yes but I don’t get it
Jun 4, 2021, 1:49 PM
no, its my question too 😂 I can`t verificate it too)
I think, u need to change name
I read some info and understood, that i need to use Uniswap for it
Jun 4, 2021, 1:54 PM
You don't need to test your contract on Mainnet
You can test on Testnet and verify that all functions are working by making transfers between wallets.
https://pancake.kiemtienonline360.com/#/pool
Use this site to test liquidity.
Do everything on Testnet without having to spend anything.
compare contracts using the Mergely website
https://testnet.binance.org/faucet-smart
Use this site to request a test BNB. Remembering that it is important to paste the test portfolio address with the test network configured on it.
Jun 4, 2021, 2:09 PM
Yes, i deployed it on ropsten
Jun 4, 2021, 2:13 PM
What's the problem ?
Let's see if I can help you
I'm creating a step-by-step tutorial to teach you how to "clone" and deploy contracts.
That way, this information trade ends and anyone creates their token.
That way, this information trade ends and anyone creates their token.
Jun 4, 2021, 2:17 PM
Cool
Which one I need to chose for the correct ABI?
Jun 4, 2021, 2:34 PM
Jun 4, 2021, 2:43 PM
You need to choose the contract name
The contract name
Jun 4, 2021, 2:59 PM
Ok now I have ABI code, but when I try to verify contract, say « invalid constructor arguments provided »
Jun 4, 2021, 3:04 PM
Show how did you get the ABI?
For those who are having difficulty verifying the contract.
No... We just want to create shitcoins anyway.
It is fashionable to create and sell nonsense.
Everything is pyramid. Or does any bank guarantee Bitcoin security?
Everywhere, every token the price of every token is speculative. Show me a real BTC and let's go to the mall to see what we buy with it.
I have a coin that is worthless in encryption, but it is a gold coin. What can I buy with it?
Jun 4, 2021, 5:52 PM
BTCs value is in it's decentralized network, store of value, first one in the space, provides liquidity to whole fucking defi thanks to WBTC and it has tons of utility
I know all finance is fugazzi tho
Just saying that safemoon isn't a crypto project, just a bound-to-fail ponzinomic, although it didn't fail, it's objective was to make the owners rich which already happened
But yeah, only time will say, could have said same about DOGE
Maybe elon musk suddenly likes safemoon and gives it utility
Doubt.
Jun 4, 2021, 6:05 PM
That's just what I meant. The hype needs to end and get back to normal. So if everyone creates their own shit coin, no one buys anyone else's because everyone will have their own. And we will return to normality
Safemoon, Dogecoin and the other moons are all the same.
Jun 4, 2021, 6:08 PM
How much does it cost to deploy the contract on bsc?
and I heard it cost anywhere from $800-1700 to deploy on ETH
Jun 5, 2021, 12:42 AM
0.007-0.04BNB i think
Jun 5, 2021, 12:42 AM
So why so much on ERC-20
also then you just go to the pair add like $10k liq and now the token is tradeable correct?
Jun 5, 2021, 12:45 AM
20$ I think.
Jun 5, 2021, 12:55 AM
huh they just said 1k
Jun 5, 2021, 12:59 AM
To do deploy the contract is not 1k. To provide liquidity, the greater the liquidity, the better.
See this
Jun 5, 2021, 1:14 AM
To provide liq is 1k?
Jun 5, 2021, 1:21 AM
cost of implementation on Mainnet.
Interesting case... They call the forks pyramid and Ponzi, but they sell them on dm.
When someone teaches how to do it, they are criticized... Criminal... But isn't selling a copy a crime?
Jun 5, 2021, 1:29 AM
that;s not that bad'
thats
which contract is that
tax convert?
Jun 5, 2021, 1:30 AM
https://app.dodoex.io/erc20/create?network=mainnet
https://cointool.app/bnb/bsccreateToken
https://vittominacori.github.io/bep20-generator/create-token/
This is the rate of implementation of the contract in BSC's main network.
But I suggest you run tests on the PancakeSwap test network.First deploy the contract in the test network. Testnet
Jun 5, 2021, 1:35 AM
depend on you how much liquidity you add
Jun 5, 2021, 1:35 AM
Copy the line from the router and place it exactly as it is in the photo
Deploy the contract on testnet
And whoever doesn't, calls me on the dm that I teach for free.
Jun 5, 2021, 1:40 AM
I will DM u
$10k liq should be tradeable starting off
pragma solidity ^0.8.2;
contract Token {
mapping(address => uint) public balances;
mapping(address => mapping(address => uint)) public allowance;
uint public totalSupply = 10000 * 10 ** 18;
string public name = "My Token";
string public symbol = "TKN";
uint public decimals = 18;
event Transfer(address indexed from, address indexed to, uint value);
event Approval(address indexed owner, address indexed spender, uint value);
constructor() {
balances[msg.sender] = totalSupply;
}
function balanceOf(address owner) public view returns(uint) {
return balances[owner];
}
function transfer(address to, uint value) public returns(bool) {
require(balanceOf(msg.sender) >= value, 'balance too low');
balances[to] += value;
balances[msg.sender] -= value;
emit Transfer(msg.sender, to, value);
return true;
}
function transferFrom(address from, address to, uint value) public returns(bool) {
require(balanceOf(from) >= value, 'balance too low');
require(allowance[from][msg.sender] >= value, 'allowance too low');
balances[to] += value;
balances[from] -= value;
emit Transfer(from, to, value);
return true;
}
function approve(address spender, uint value) public returns(bool) {
allowance[msg.sender][spender] = value;
emit Approval(msg.sender, spender, value);
return true;
}
}
contract Token {
mapping(address => uint) public balances;
mapping(address => mapping(address => uint)) public allowance;
uint public totalSupply = 10000 * 10 ** 18;
string public name = "My Token";
string public symbol = "TKN";
uint public decimals = 18;
event Transfer(address indexed from, address indexed to, uint value);
event Approval(address indexed owner, address indexed spender, uint value);
constructor() {
balances[msg.sender] = totalSupply;
}
function balanceOf(address owner) public view returns(uint) {
return balances[owner];
}
function transfer(address to, uint value) public returns(bool) {
require(balanceOf(msg.sender) >= value, 'balance too low');
balances[to] += value;
balances[msg.sender] -= value;
emit Transfer(msg.sender, to, value);
return true;
}
function transferFrom(address from, address to, uint value) public returns(bool) {
require(balanceOf(from) >= value, 'balance too low');
require(allowance[from][msg.sender] >= value, 'allowance too low');
balances[to] += value;
balances[from] -= value;
emit Transfer(from, to, value);
return true;
}
function approve(address spender, uint value) public returns(bool) {
allowance[msg.sender][spender] = value;
emit Approval(msg.sender, spender, value);
return true;
}
}
I watched a youtube vid and came up with this contract from the video
@VinzMatthew
We Can All
@LibertythetaAbril
We Can All
@LibertythetaAbril
Jun 5, 2021, 3:43 AM
Which video?
Jun 5, 2021, 7:28 AM
https://www.youtube.com/watch?v=Q_wK6N9GtS8&t=3s
I need more helpful videos like this anyone got vids like this?
Jun 5, 2021, 7:29 AM
Thankyou
Jun 5, 2021, 7:29 AM
follow his channel
Jun 5, 2021, 7:34 AM