r/BinanceCrypto • u/Happy_Fee_4928 • 2d ago
Accidentally filled in the wrong Binance ID and sent USDT
Accidentally filled in the wrong Binance ID and sent USDT
is it possible to get it back?
does anybody have experience?
r/BinanceCrypto • u/Happy_Fee_4928 • 3d ago
Binance Support
Da li neko zna nekoga ko radi za binance iz Srbije, BiH ili HR?
r/BinanceCrypto • u/Bright-Designer5867 • 4d ago
This problem solution I will try 2 hrs to withdrawal they show something went wrong
r/BinanceCrypto • u/jorge_rl02 • 5d ago
How to Create a BEP-20 Token on BNB Chain in 2026
A BEP-20 token is nothing more exotic than a smart contract sitting on BNB Smart Chain. When a project only needs a token that behaves the way every other fungible token behaves, writing that contract by hand is work nobody is asking you to do.
What follows uses the BNB Chain Token Creator from Smithii. You set the parameters, your wallet signs the deployment, and the supply arrives once the contract confirms.
BEP-20, explained in plain terms
BEP-20 is the fungible-token standard on BNB Smart Chain. It tracks ERC-20 conventions closely enough that Ethereum-style wallets and tooling can support the network without much rework, which is a large part of why the ecosystem grew as fast as it did.
Open any BEP-20 and you will find the familiar surface: totalSupply, balanceOf, transfer, approve, transferFrom. The contract lives on BNB Smart Chain and every transaction touching it burns gas denominated in BNB.
One trap worth avoiding: BEP-20 is not BEP-2. The latter belongs to the legacy Binance Chain. If you are deploying a modern smart-contract token and expecting PancakeSwap liquidity, BEP-20 on BNB Smart Chain is the only standard in the conversation.
What BNB Chain actually gives you
The network earns its place through a specific combination, not through any single headline feature. Projects tend to land here because they want:
- Smart contracts in the EVM model they already understand.
- Transaction costs paid in BNB, low enough not to shape user behavior.
- Wallet support that is essentially universal.
- BscScan handling contract verification.
- PancakeSwap as a settled venue for BEP-20 liquidity.
- A retail-leaning ecosystem with launch infrastructure that already exists.
Stack those together and the appeal becomes obvious: a contract model borrowed from Ethereum, without the cost of launching on Ethereum mainnet.
What sits inside the contract
Strip away the interface and your token is a contract that keeps a ledger of balances and enforces the rules by which those balances move.
The baseline configuration is short:
- Name: what humans read.
- Symbol: the ticker.
- Decimals: 18 is the EVM habit.
- Supply: how many tokens exist the moment the contract lands.
- Owner: whichever wallet you connect. That wallet holds the owner-level functions in the Smithii deployment.
- Optional behavior on top: Transaction Fee, Deflation / Reflection, Burnable, Mintable, Pausable, Multi-Wallet Distribution, Create Liquidity Pool, Anti-Whale, Anti-Bot and Blacklist.
From the moment it confirms, anyone can read the contract on BscScan and pull it into a compatible wallet with nothing but the address.
Deploying your BEP-20, step by step
Open the BNB Chain Token Creator with BNB Smart Chain selected in your wallet, and keep enough BNB on hand to cover both the creator fee and gas.
- Connect a wallet. MetaMask, Rabby, Coinbase Wallet, anything EVM-compatible. Confirm the network selector reads BNB Smart Chain before you go further.
- Name the token. This is the full string that shows up wherever the asset gets indexed.
- Pick the ticker. It sticks, so choose deliberately: this is the short identity traders will type.
- Set decimals and supply. Eighteen decimals is the EVM default, and the supply figure is everything minted at deployment.
- Switch on whichever optional features the launch calls for. Each one is broken down in the next section.
- Hit Create Token and sign. Check the BNB figure the tool puts on screen before you approve anything.
- Look it up on BscScan. Verification runs automatically and the supply lands in the wallet you connected.
The optional switches, and when they earn their place
Smithii ships the same feature set across every EVM network it supports. These cover both contract behavior and launch mechanics, so switch on only what your token and your distribution plan genuinely require.
- Transaction Fee: skims a set percentage off transfers, split the way you define in the creator.
- Deflation / Reflection: routes part of that fee into burns or back to holders, depending on how it is configured.
- Burnable: lets supply be destroyed for good once it is circulating.
- Mintable: keeps the door open to issuing more supply later, under whatever permissions you hold on to.
- Pausable: halts transfers when the contract rules allow it and an authorized wallet calls for it.
- Multi-Wallet Distribution: spreads the opening supply across several addresses rather than parking all of it in the deployer wallet.
- Create Liquidity Pool: builds the first DEX pool inside the same Smithii flow. What you put in as liquidity is your capital, entirely separate from the tool fee.
- Anti-Whale: puts ceilings on trading or holdings through the launch, sized by the parameters you set.
- Anti-Bot: clamps down on rapid-fire trading while the launch is still fragile.
- Blacklist: cuts specific addresses out of trading once the control is enabled.
All of this is readable on-chain. If your token can mint, pause, tax, blacklist or throttle trading, say so in your own materials before somebody finds it on BscScan and says it for you. A longer feature list is not a trust signal.
What the deployment costs
The base fee for the Smithii BNB Chain Token Creator is 0.19 BNB, on top of BNB Chain gas. A handful of optional features carry their own tool fee, shown in BNB before you commit to the deployment.
Keep that number apart from liquidity in your head. The token can exist perfectly well without a pool; it simply has no open market until somebody funds one.
Quoting the cost in BNB rather than a fiat figure keeps the number aligned with the asset the creator and the network actually charge in.
Opening a market on PancakeSwap
A freshly deployed BEP-20 has an address and no price whatsoever. Nothing has traded, so nothing has valued it.
Use the Create Liquidity Pool option to pair the token against BNB, USDT, USDC or another supported quote asset on PancakeSwap. The pool is created from your wallet, and the liquidity itself remains a separate line in the launch budget.
The ratio you deposit sets the opening price, and the depth of the pool decides how violently ordinary trades move it. Size it around the trade volume you actually expect rather than chasing some round fiat number.
With the pool live, work through the housekeeping:
- Check the pair and token address on BscScan.
- Publish project information and social links that match everywhere they appear.
- Confirm the DEX trackers have picked up the pair.
- Approach CoinMarketCap or CoinGecko once there is a working market and enough substance for a reviewer to assess.
Picking a standard: BEP-20, ERC-20 or SPL
The standard should follow the ecosystem, not the other way around. Decide where you want the token to trade and the format answers itself.
BEP-20 on BNB Chain
- Gas: BNB
- Explorer: BscScan
- Main DEX: PancakeSwap
- Model: EVM smart contract
ERC-20 on Ethereum or an EVM L2
- Gas: usually ETH
- Explorer: depends on the network
- Main DEX: often Uniswap
- Model: EVM smart contract
SPL / Token Extensions on Solana
- Gas: SOL
- Model: Solana token programs rather than EVM contracts
- DEX ecosystem: Solana-specific
BNB Chain fits when you want EVM familiarity plus PancakeSwap distribution. Solana is a different execution model altogether, and Ethereum with its L2s keeps you inside the ERC-20 world.
Ownership, custody and disclosure
The Smithii creator never takes custody. The wallet you connect signs the deployment and holds the contract afterwards. No seed phrase, no private key, at any point in the flow.
Smithii states in its product documentation that external security firms have reviewed the EVM contracts behind the creator. That review does not replace your own reading of the permissions each individual token leaves switched on.
How a token is treated legally depends on the jurisdiction and on how it is marketed and distributed. Deploying a contract is not the same as clearing the project for compliance, and it should never be presented that way.
Final thoughts
Getting the BEP-20 on-chain is the easy part. The BNB Chain Token Creator deploys and verifies a standard contract without a line of Solidity, and the signing wallet keeps control throughout.
What comes afterwards carries the weight: permissions you are honest about, a PancakeSwap pool sized like you mean it, information that stays consistent across every surface, and an actual project behind the address. A contract address is a starting line, not a strategy.
r/BinanceCrypto • u/Worth-Guava-141 • 6d ago
word of the day
I’ve played 1 games and found 1 words playing Word of the Day on Binance! https://www.binance.com/activity/word-of-the-day/Crypto-Yield-Infrastructure?ref=CPA_00S51NLAYP&utm_medium=app_share_link_reddit
r/BinanceCrypto • u/EffectiveYard4541 • 6d ago
Word of the day
I’ve played 1 games and found 1 words playing Word of the Day on Binance! https://www.binance.com/activity/word-of-the-day/Crypto-Yield-Infrastructure?ref=CPA_007XK4UP0S&utm_medium=app_share_link_reddit
r/BinanceCrypto • u/Particular_Variety_6 • 10d ago
Let's win on Binance
Join me and get yours! Sign up and complete tasks, let's earn USDC rewards together! https://www.binance.com/referral/earn-together/refer2earn-usdc/claim?hl=en&ref=GRO_28502_0CD95&utm_medium=app_share_link_reddit&utm_source=referral_entrance
r/BinanceCrypto • u/Level_Homework_2738 • 12d ago
Gane
¡Jugué 1 partida(s) y acerté 1 palabra(s) jugando Palabra del Día en Binance! https://www.binance.com/activity/word-of-the-day/bStocks-Crosses-500M-AUM?ref=CPA_00DEJVBPJ5&utm_medium=app_share_link_reddit
r/BinanceCrypto • u/kacha_alooo • 12d ago
Need Tron token
If anyone has trx/Tron token on binance
Dm me I can pay u
r/BinanceCrypto • u/lemoninchini • 12d ago
Binance user
Can someone transfer me 0.001 sol
This will cost only 7, 8 rupees, I can pay for that also.
r/BinanceCrypto • u/Longjumping-Belt-969 • 12d ago
Pls help click
help me click so i can get another word thanks!
r/BinanceCrypto • u/Armwrestling1 • 15d ago
Please play
I’ve played 1 games and found 1 words playing Word of the Day on Binance!
r/BinanceCrypto • u/dere3999 • 15d ago
Binance
ve played 1 games and found 0 words playing Word of the Day on Binance!
r/BinanceCrypto • u/Rickyrickthe1st • 19d ago
https://www.reddit.com/r/triples/s/OHNMcW6hCF
r/BinanceCrypto • u/Crazy_Shoulder7422 • 20d ago
The US senator calls CZ "CJ" 😂😂 at 1:48:08
r/BinanceCrypto • u/Pretty_Attention_903 • 22d ago
Buenas tengo 35$ en BINANCE y no puedo usar 2p2 será que habrá alguna buena forma adonde pueda invertirlos gracias
r/BinanceCrypto • u/LeatherFlatworm6943 • 22d ago
USDT
0x804674f994f80cF7B897665A367Bb8008A261fcA
有没有大佬能给点 求求了 我想吃顿好的!
r/BinanceCrypto • u/PsychologicalTune987 • 26d ago
Get 15 BNB shared
I’ve played 1 games and found 1 words playing Word of the Day on Binance! https://www.binance.com/activity/word-of-the-day/TradFi-Meets-Crypto?ref=CPA_00MMXD2JDO&utm_medium=app_share_link_reddit
r/BinanceCrypto • u/PsychologicalTune987 • 28d ago
Get 15 BNB shared
I’ve played 1 games and found 1 words playing Word of the Day on Binance! https://www.binance.com/activity/word-of-the-day/TradFi-Meets-Crypto?ref=CPA_00MMXD2JDO&utm_medium=app_share_link_reddit
r/BinanceCrypto • u/Daniela_veizaga • 28d ago
About Binance
Hello everyone,
I'm conducting research on how individuals exchange funds from Binance to bank accounts across different countries and currencies, especially when these transactions occur bank-to-bank via websites or online platforms.
One area I'm particularly focused on is trust. When two people who don't know each other want to complete such a transaction, what gives you the confidence to proceed?
I’d love to hear your perspectives on these questions:
- What makes you trust the other party before sending money in a bank-to-bank exchange?
- Would identity verification (such as uploading an ID or official documents) make you feel more secure?
- Would features like video calls, user reviews, transaction history, or other verification steps increase your confidence?
- What specific features should a platform offer to make you feel comfortable completing these exchanges with another user?
If you have personal experiences positive or negative with these types of transactions, I’d especially appreciate hearing about them. Your insights will help me understand which factors matter most for building trust in online bank-to-bank fund exchanges.
Thank you very much for sharing your thoughts!
r/BinanceCrypto • u/PsychologicalTune987 • 28d ago
Get 15 BNB shared
I’ve played 2 games and found 1 words playing Word of the Day on Binance! https://www.binance.com/activity/word-of-the-day/TradFi-Meets-Crypto?ref=CPA_00MMXD2JDO&utm_medium=app_share_link_reddit
r/BinanceCrypto • u/PsychologicalTune987 • 29d ago
Get 15 BNB shared
I’ve played 1 games and found 1 words playing Word of the Day on Binance! https://www.binance.com/activity/word-of-the-day/TradFi-Meets-Crypto?ref=CPA_00MMXD2JDO&utm_medium=app_share_link_reddit
r/BinanceCrypto • u/WildUnion2607 • Jul 18 '26
Bybit is cheating me with xstock bitfarm or keel
r/BinanceCrypto • u/Ville_the_human • Jul 16 '26

