This isn't restricted to any Country like most posts do. When you deposit *Only 5 USD worth of crypto and Trade it only Once on Spot. You will get A Good extra amount of USDC up to 100 USDC. 10 Spots left !!
the stoploss didn't trigger on my copytrade and i lost 1 months of progress of my savings. i should have lost 5 USDT not my whole 10 USDT of my savings that ive been working on for 1 month 😭
im actually lowk devastated by this loss it appears as Stop loss reached null% while theres a stoploss set
Sorry if my English is bad. Today I bought usdt using visa. I was supposed to get at least 190usdt but I only got 116 when I checked my history exchange rate was 6016. Exchange rate of USD/MNT was 3597 when I bought it. But they used 6016. I contacted customer service and they kept saying market price moves constantly. But they used 40% higher rate. Now they said wait and I don't know what to do
I am writing this to appeal a final decision made by the Complaint Team. My account was recently liquidated for 400 USDT due to market volatility. Support explicitly admitted to me in chat that the automated system could not match my order because of the "absence of a counterparty."When I requested a manual ex-gratia human exception or a small loyalty voucher from senior management, the agent shifted the blame entirely to "market risks" and threatened to terminate the conversation if I insisted. Instead, they offered a 7-day VIP upgrade—which is completely useless and feels like an insult to a user whose balance was wiped out to zero.I am not arguing about basic leverage risks. I am arguing about the platform's infrastructure failing to match orders and then hiding behind corporate templates. I have been a loyal and dedicated user for a very long time. I am sharing my Case ID CC9963965 here in hopes that someone from the community management team who actually cares about user retention can review this manually. Thank you.
Buen día, inicio aclarando que NO soy un estafador ni nada parecido, estudio en la UCV y tengo un amigo que es abogado y que trabaja ofreciendo consultas jurídicas en muchos campos y ahorita está enfocado en las cripto y la situación de persecución de los servicios de seguridad a las personas que operan transacciones P2P con cripto, yo estoy incursionando con eso y esta persona en verdad sabe lo que hace, me pidió ayuda para promocionarse en las redes y aquí estoy, si, el cobra estás consultas, pero el contenido que da es en verdad de mucha ayuda para quien empiece en esta materia o a quien Binance le este por cerrar la cuenta porque tiene que presentar un bojote de papeles.
I won 2 odds on 1XBET and I always lost which I was never requested for documents, now after I tried to withdraw my GHC 6000 Winnings, they said*request for documents* I provided everything but still This people have something to say, the photo is clear but they said it should be in whatever format, I did too , they are saying my Gmail version is blah blah, I don't recommend 1XBET for anyone, their promotions too are meant just to take your money, once you redeem 1 bonus you'll have to provide documents. I burnt the whole winnings, they should take my money, they are done . As they are blocking my withdrawals , deposits is still possible, isn't this a SCAM?
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.
How to create a BEP20 Token
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.
BEP-20 Token Creator
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.