在薄饼交易所上币的流程如下:
1、打开薄饼交易所网站,连接钱包,选择要添加的代币。
2、在交易页面中找到要交易的代币,点击“交易”按钮,进入交易面板。
3、在交易面板中选择要交易的代币,并输入交易数量。
4、确认交易信息后,点击“交易”按钮完成交易。
对于要求合约部署,上币需要经过审核,具体审核时间也会因情况而异。此外,上币需要支付一定的费用,具体费用会根据代币类型、交易所等情况而有所不同。
以下是薄饼交易所上币部署合约的示例代码,供参考:
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/Interactions.sol";
contract MyToken is ERC20, Ownable, Interactions {
using Counters for Counters.Counter;
Counters.Counter private _tokenIds;
constructor (【完整逻辑部署搭建可看我昵称】) public ERC20 (_name, _symbol) {
_tokenIds.increment();
_tokenIds._newId();
}
function setTokenName (string memory tokenName) public onlyOwner {
_name = tokenName;
}
function setTokenSymbol (string memory tokenSymbol) public onlyOwner {
_symbol = tokenSymbol;
}
telegram电报快速咨询点击此通道:https://t.me/ch3nguang
function setTokenDecimals (uint8 tokenDecimals) public onlyOwner {
_decimals = tokenDecimals;
}
}