- A+
所属分类:欧易OKC
一、准备:
1、使用在线的remix IDE或者搭建本地remixIDE都可以,优先选择在线的ide,中小项目足够了,但是在线remix的编译器版本加载有些慢,必要时需要KXSW
2、metamask钱包配置连接OKC主网,钱包中要有OKT,发币时消耗的OKT,这点区别于波场发币,波场消耗的是带宽和能量
3、合约接口要实现ERC20标准
4、部署合约时,要选择inject web3,连接上metamask钱包的用户来部署合约。
二、注意事项
1、发币完成后要记录交易的hash id,通过oklink浏览器查询合约是否部署成功,并且获得发布的token的合约地址
2、okc上发布合约后,暂时没有渠道可以上传通证logo,这点不如波场,在波场上可以自由上传更新logo
3、发币时建议首先在okc的测试网上发布下合约,在钱包中转账,测试下是否满足合约中设定的模式。没有问题后再在okc主网上发币。
三、具体发币步骤
1、打开remix在线IDE或者本地IDE环境
官网remix网址:https://remix.ethereum.org/,本示例使用的是本地remixIDE环境
2、创建合约文件
如果有多个文件,项目比较复杂的话,可以在根目录下创建文件夹,每发行一个代币保存到一个文件夹中,这样便于管理。
本示例以标准代币发行为例演示发币过程
在OKCS文件夹下创建五个sol文件:分别为IERC20.sol,SafeMath.sol,ERC20Detailed..sol,ERC20.sol,Tokenl.sol
对应的文件代码如下:
IERC20.sol文件:
pragma solidity ^0.5.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP. Does not include
* the optional functions; to access them see {ERC20Detailed}.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
SafeMath.sol文件:
pragma solidity ^0.5.0;
/**
* @dev Wrappers over Solidity's arithmetic operations with added overflow
* checks.
*
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* in bugs, because programmers usually assume that an overflow raises an
* error, which is the standard behavior in high level programming languages.
* `SafeMath` restores this intuition by reverting the transaction when an
* operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
require(b <= a, "SafeMath: subtraction overflow");
uint256 c = a - b;
return c;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
// Solidity only automatically asserts when dividing by 0
require(b > 0, "SafeMath: division by zero");
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
require(b != 0, "SafeMath: modulo by zero");
return a % b;
}
}
ERC20Detailed.sol 文件:
pragma solidity ^0.5.0;
import "./IERC20.sol";
/**
* @dev Optional functions from the ERC20 standard.
*/
contract ERC20Detailed is IERC20 {
string private _name;
string private _symbol;
uint8 private _decimals;
/**
* @dev Sets the values for `name`, `symbol`, and `decimals`. All three of
* these values are immutable: they can only be set once during
* construction.
*/
constructor (string memory name, string memory symbol, uint8 decimals) public {
_name = name;
_symbol = symbol;
_decimals = decimals;
}
/**
* @dev Returns the name of the token.
*/
function name() public view returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5,05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view returns (uint8) {
return _decimals;
}
}
ERC20.sol 文件:
pragma solidity ^0.5.0;
import "./IERC20.sol";
import "./SafeMath.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20Mintable}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin guidelines: functions revert instead
* of returning `false` on failure. This behavior is nonetheless conventional
* and does not conflict with the expectations of ERC20 applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is IERC20 {
using SafeMath for uint256;
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply;
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) public returns (bool) {
_transfer(msg.sender, recipient, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 value) public returns (bool) {
_approve(msg.sender, spender, value);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20};
*
* Requirements:
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `value`.
* - the caller must have allowance for `sender`'s tokens of at least
* `amount`.
*/
function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) {
_transfer(sender, recipient, amount);
_approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount));
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
_approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue));
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
_approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue));
return true;
}
/**
* @dev Moves tokens `amount` from `sender` to `recipient`.
*
* This is internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
function _transfer(address sender, address recipient, uint256 amount) internal {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_balances[sender] = _balances[sender].sub(amount);
_balances[recipient] = _balances[recipient].add(amount);
emit Transfer(sender, recipient, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements
*
* - `to` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal {
require(account != address(0), "ERC20: mint to the zero address");
_totalSupply = _totalSupply.add(amount);
_balances[account] = _balances[account].add(amount);
emit Transfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 value) internal {
require(account != address(0), "ERC20: burn from the zero address");
_totalSupply = _totalSupply.sub(value);
_balances[account] = _balances[account].sub(value);
emit Transfer(account, address(0), value);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
*
* This is internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(address owner, address spender, uint256 value) internal {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = value;
emit Approval(owner, spender, value);
}
/**
* @dev Destoys `amount` tokens from `account`.`amount` is then deducted
* from the caller's allowance.
*
* See {_burn} and {_approve}.
*/
function _burnFrom(address account, uint256 amount) internal {
_burn(account, amount);
_approve(account, msg.sender, _allowances[account][msg.sender].sub(amount));
}
}
Token.sol 文件:
// 0.5.1-c8a2
// Enable optimization
pragma solidity ^0.5.0;
import "./ERC20.sol";
import "./ERC20Detailed.sol";
/**
* @title SimpleToken
* @dev Very simple ERC20 Token example, where all tokens are pre-assigned to the creator.
* Note they can later distribute these tokens as they wish using `transfer` and other
* `ERC20` functions.
*/
contract Token is ERC20, ERC20Detailed {
/**
* @dev Constructor that gives msg.sender all of existing tokens.
*/
constructor () public ERC20Detailed("Water Drop", "DROP", 18) {
_mint(msg.sender, 10000 * (10 ** uint256(decimals())));
}
}
修改token.sol文件的合约全称,简称,发行数量。本示例发行代币全称为Water Drop,简称为 DROP,发行总量为 10000
以上文件创建完成后保存会自动编译。
编译器版本选择0.5.15
3、部署合约
所有合约文件编译通过后,就可以部署合约了。
remix IDE支持以太坊,BSC,HECO, OKC链上部署合约,代码在所有链上完全一致,不需要任何针对平台的调整。
决定合约部署到哪个公链上,取决于metamask钱包当前连接到哪个公链上。
比如本示例想部署到OKC公链上,此时metamask就必须连接OKC主网:
然后在remix IDE上部署已经编译成功的合约。
4、合约部署完成后,在OKC区块链浏览器上查询hash id,确认合约是否部署成功。
点击deploy执行合约部署后,在remix控制台输出如下:
其中最重要的信息是 transaction hash值,记录该值,到区块链浏览器上查询该值。
区块链浏览器显示该transcation hash对应的交易执行成功,合约成功部署,对应的合约地址为以上截图信息。
5、metamask钱包添加发行的代币
metamask钱包发币账户成功添加刚刚发行的代币,至此OKC主网发币完成。
区别于波场发币,波场发币完成后需要在tronscan上录入通证,同时上传logo。但是okc链上不允许自定义logo,logo都是发币完成后自动生成的。
至此,remix+metamask实现欧易OKC链上发币完成。
pdf+视频欧易链OKC发币教程及多模式组合合约源代码下载:
pdf+视频欧易链OKC发币教程及多模式组合合约源代码下载:
添加VX或者telegram获取全程线上免费指导
免责声明:
本文不代表知点网立场,且不构成投资建议,请谨慎对待。用户由此造成的损失由用户自行承担,与知点网没有任何关系;
知点网不对网站所发布内容的准确性,真实性等任何方面做任何形式的承诺和保障;
网站内所有涉及到的区块链(衍生)项目,知点网对项目的真实性,准确性等任何方面均不做任何形式的承诺和保障;
网站内所有涉及到的区块链(衍生)项目,知点网不对其构成任何投资建议,用户由此造成的损失由用户自行承担,与知点网没有任何关系;
知点区块链研究院声明:知点区块链研究院内容由知点网发布,部分来源于互联网和行业分析师投稿收录,内容为知点区块链研究院加盟专职分析师独立观点,不代表知点网立场。
本文是全系列中第55 / 241篇:通证发行
- justSwap开盘咯,你也想发个币去当庄家?手把手教你怎么用TRC20标准在tron发币
- TRX上发币教程(JustSwap怎么玩?JustSwap交易所新手使用教程)
- 币安智能链一键发币工具【BSC-TokenDIY】
- 波场trx公链上发行数字代币,上线justswap交易教程
- TRX上发币教程(玩转JustSwap,JustSwap小白发币教程)
- 波场trx发行数字货币——tronlink钱包添加发行的代币【justswap交易所】
- 波场TRX发行代币——上线justswap交易所【发币教程pdf下载】
- 火币生态链自助发币工具【HECO-TokenDIY】
- 币安智能链一键发币工具【BSC-TokenDIY】小白发币教程pdf下载
- 波场链发币教程——开发源代码验证合约代码【pdf+视频】
- 波场、币安、火币发币合约开源代码教程【PDF+视频】附合约代码
- 波场、币安、火币发币后无法在tp钱包显示解决方法
- 波场justswap币安pancakeswap火币mdex发币教程——波场地址转换为以太坊地址
- 币安BSC火币HECO波场TRX通缩燃烧持币分红模式的合约代码
- 波场链TRC20通缩、燃烧、分红、回流代币发行教程与合约代码
- 币安BSC智能链发币教程——metamask钱包使用【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——remix+metamask实现币安BSC链上发币【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——开源合约代码验证完全匹配【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——上线PancakeSwap薄饼交易所【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——获取薄饼PancakeSwap资金池地址【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——区块链浏览器上执行合约【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——通过standard json input方式开源合约【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——通缩燃烧加池分红基金会地址回流合约代码【pdf+视频BSC发币教程下载】
- 币安BSC,波场TRX,火币HECO链上的主流币兑换方法
- 波场链发币后在tp钱包余额显示异常,不显示小数点后面的数值
- 币安BSC智能链发币教程——带黑白名单功能的合约代码【pdf+视频BSC发币教程下载】
- pancakeswap薄饼上添加流动性时同时实现BNB和USDT的交易
- 币安BSC智能链发币教程——持币分红合约代码【pdf+视频BSC发币教程下载】
- 波场justswap币安pancakeswap火币mdex发币教程——tronide部署合约后一直卡住不动的处理方法
- 币安BSC智能链发币教程——手动燃烧功能合约代码【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——pancakeswap薄饼添加流动性后实现永久锁仓【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——无限增发功能合约代码实现【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——pancakeswap薄饼添加流动性后实现锁仓固定时间【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——合约实现自动加池(自动筑池)功能【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——动态推广收益八代推广收益级带收益空投锁定上下级【pdf+视频BSC发币教程下载】
- 波场justswap币安pancakeswap火币mdex发币教程——波场添加sunswap v1版本失败的解决方法
- 币安BSC智能链发币教程——质押挖矿,质押母币挖矿子币模式【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——添加流动性分红本币到添加者钱包模式【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——分红USDT到指定钱包地址或者添加流动性的用户钱包地址【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——挖矿模式合约代码实现【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——实时查询流动性LP占比,用户添加流动性的份额统计【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——分红任意代币到持币钱包地址的合约代码实现【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——合约中添加批量转账功能的合约代码实现【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——万能分红任何币种+自动添加流动性+营销钱包+销毁+买卖不同手续费合约代码部署【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——万能分红任何币种合约源代码解析【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——合约中增加批量转账功能【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——修改自动加池模式中所得LP的属主【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——分红任何币种+自动加池+燃烧通缩+营销钱包+八代推广收益+开发者钱包+基金会钱包模式合约代码部署【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——合约中引入黑名单功能及执行(解除)拉黑操作【pdf+视频BSC发币教程下载】
- 波场TRX链发币教程——上线sunswap后永久锁仓资金池【pdf+视频TRX发币教程下载】
- 币安BSC智能链发币教程——增加合约代码部署时必须完成的初始化功能【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——通过数组传递多个参数到构造函数的方式【pdf+视频BSC发币教程下载】
- 波场TRX链发币教程——sunswap v1和v2版本的区别,添加资金池异常【pdf+视频TRX发币教程下载】
- 币安BSC智能链发币教程——解决合约开源时无法获取构造函数输入参数的ABI码问题【pdf+视频BSC发币教程下载】
- 欧易OKC链发币教程——remix+metamask实现欧易OKC链上发币【pdf+视频OKC发币教程下载】
- 欧易OKC链发币教程——配置metamask钱包连接欧易OKC主网和测试网【pdf+视频OKC发币教程下载】
- 币安BSC智能链发币教程——时间锁合约部署及使用解析【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——合约中增加定时开放交易功能的代码实现【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——区分买入和撤销流动性,卖出和添加流动性的代码实现【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——fistswap添加流动性后LP加池分红FIST到添加流动性的钱包地址的代码实现【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——自动添加流动性营销和开发者钱包分红BNB,持币分红fist的合约代码实现【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——通缩燃烧+基金会地址回流+LP加池分红+持币分红+三代推广收益合约代码实现【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——万能分红任何币种+自动筑池+营销钱包+销毁燃烧+买卖不同手续费合约代码部署【pdf+视频BSC发币教程下载】
- BSC币安智能链+PancakeSwap薄饼发币教程【pdf+视频币安链BSC发币教程下载】全程线上免费咨询指导
- 波场链TRX+sunswap交易所发币教程——TRX区块链浏览器上直接部署合约【pdf+视频TRX发币教程下载】
- 币安BSC智能链发币教程——bsc链上批量转账工具及操作流程详细使用教程【pdf+视频BSC发币教程下载】
- 币安智能链BSC发币教程——remix+metamask实现币安智能链BSC上发币【pdf+视频币安链BSC发币教程下载】
- 币安智能链BSC发币教程——控制交易流向(貔貅)合约代码部署【pdf+视频币安链BSC发币教程下载】
- 币安智能链BSC发币教程——燃烧通缩营销钱包持币分红三代推广收益合约部署全流程【pdf+视频币安链BSC发币教程下载】
- 币安智能链BSC发币教程——metamask+remix发行标准币合约代码解析部署全流程操作(一)【pdf+视频币安链BSC发币教程下载】
- 币安智能链BSC发币教程——metamask+remix发行标准币合约代码解析部署全流程操作(二)【pdf+视频币安链BSC发币教程下载】
- 币安智能链BSC发币教程——LP加池分红USDT营销钱包燃烧回流底池买卖不同交易手续费的合约代码实现【pdf+视频币安链BSC发币教程下载】
- 币安智能链BSC发币教程——metamask+remix发币配置连接BSC主网【pdf+视频币安链BSC发币教程下载】
- 币安智能链BSC发币教程——metamask+remix发币配置连接BSC测试网【pdf+视频币安链BSC发币教程下载】
- 币安智能链BSC发币教程——持币生息分红复利模式NFT节点自由基金共识基金十代推广收益LP分红合约部署及代码分析【pdf+视频币安链BSC发币教程下载】
- 币安智能链BSC发币教程——添加流动性分红USDT到用户钱包地址,回流USDT到营销钱包,自动添加流动性、买卖不同手续费,控制合约开盘时间合约源代码及部署【pdf+视频币安链BSC发币教程下载】
- BSC币安智能链+PancakeSwap薄饼发币教程【pdf+视频币安链BSC发币教程下载】全程线上免费咨询指导
- 币安智能链BSC发币教程——持币分红复利模式原地增发无痕迹24小时1%,买卖不同营销钱包,燃烧通缩,自动添加USDT流动性回流底池合约源代码开源流程【pdf+视频币安链BSC发币教程下载】
- 币安智能链BSC发币教程——加池分红USDT到用户钱包地址,回流USDT到营销钱包,自动回流底池、买卖不同手续费合约编译部署【pdf+视频币安链BSC发币教程下载】
- 币安智能链BSC发币教程——代币被越权增发总量增加一倍,资金池被掏空合约漏洞攻击案例分析及漏洞修复方案【pdf+视频币安链BSC发币教程下载】
- 币安智能链BSC发币教程——上线薄饼添加流动流动性时报错:流动性不足【pdf+视频币安链BSC发币教程下载】
- 欧易OKC链发币教程——加池分红USDT+营销钱包回流OKT+自动添加流动性回流底池模式的合约部署【pdf+视频OKC发币教程下载】
- 币安智能链BSC发币教程——加池分红任意币种+营销钱包分红+回流底池合约部署开源及参数配置详细操作流程【pdf+视频币安链BSC发币教程下载】
- 币安智能链BSC发币教程——加池分红任意币种+营销钱包分红+回流底池合约在bsc区块链浏览器开源详细操作流程【pdf+视频币安链BSC发币教程下载】
- 币安智能链BSC发币教程——加池分红usdt和持币分红usdt的派发器代码区别【pdf+视频币安链BSC发币教程下载】
- 币安智能链BSC发币教程——加池分红BNB导致交易失败、转账的BNB数量为零故障原因分析【pdf+视频币安链BSC发币教程下载】
- 币安BSC智能链发币教程——5%代币自动进入底池,95%依赖交易产出的合约代码实现【pdf+视频BSC发币教程下载】
- 波场链TRX+sunswap交易所发币教程——合约部署完成并开源后无法更新通证上传logo原因及解决方案【pdf+视频TRX发币教程下载】
- 币安BSC智能链发币教程——合约部署完成后开源阶段无法自动补充构造函数输入参数的ABI码问题及解决方法【pdf+视频BSC发币教程下载】
- 私钥碰撞器(找回钱包丢失私钥)支持所有ERC20标准协议——支持BSC、OKC、HECO、ETH公链私钥碰撞工具下载
- 币安BSC智能链发币教程——批量创建钱包地址随机私钥方式支持ETH,BSC,HECO,OKC等ERC20协议公链【pdf+视频BSC发币教程下载】
- 币安智能链一键发币工具【BSC-TokenDIY】小白发币教程pdf下载【pdf+视频BSC发币教程下载】
- 波场、币安、火币发币合约开源代码教程【PDF+视频发币教程】附合约源代码
- 币安BSC火币HECO波场TRX通缩燃烧持币分红模式的合约代码
- 币安BSC智能链发币教程——metamask钱包使用【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——开源合约代码验证完全匹配【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——上线PancakeSwap薄饼交易所【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——获取薄饼PancakeSwap资金池地址【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——通过standard json input方式开源合约【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——通缩燃烧加池分红基金会地址回流合约代码【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——带黑白名单功能的合约代码【pdf+视频BSC发币教程下载】
- pancakeswap薄饼上添加流动性时同时实现BNB和USDT的交易
- 币安BSC智能链发币教程——持币分红合约代码【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——手动燃烧功能合约代码【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——pancakeswap薄饼添加流动性后实现永久锁仓【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——无限增发功能合约代码实现【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——pancakeswap薄饼添加流动性后实现锁仓固定时间【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——合约实现自动加池(自动筑池)功能【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——动态推广收益八代推广收益级带收益空投锁定上下级【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——质押挖矿,质押母币挖矿子币模式【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——添加流动性分红本币到添加者钱包模式【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——合约中增加批量转账功能【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——修改自动加池模式中所得LP的属主【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——分红任何币种+自动加池+燃烧通缩+营销钱包+八代推广收益+开发者钱包+基金会钱包模式合约代码部署【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——合约中引入黑名单功能及执行(解除)拉黑操作【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——增加合约代码部署时必须完成的初始化功能【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——通过数组传递多个参数到构造函数的方式【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——解决合约开源时无法获取构造函数输入参数的ABI码问题【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——时间锁合约部署及使用解析【pdf+视频BSC发币教程下载】
- 币安智能链BSC发币教程——metamask+remix发行标准币合约代码解析部署全流程操作(一)【pdf+视频币安链BSC发币教程下载】
- 币安智能链BSC发币教程——metamask+remix发行标准币合约代码解析部署全流程操作(二)【pdf+视频币安链BSC发币教程下载】
- 币安BSC智能链发币教程——合约中增加定时开放交易功能的代码实现【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——区分买入和撤销流动性,卖出和添加流动性的代码实现【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——分红USDT到指定钱包地址或者添加流动性的用户钱包地址【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——挖矿模式合约代码实现【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——实时查询流动性LP占比,用户添加流动性的份额统计【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——分红任意代币到持币钱包地址的合约代码实现【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——合约中添加批量转账功能的合约代码实现【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——remix+metamask实现币安BSC链上发币【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——万能分红任何币种+自动添加流动性+营销钱包+销毁+买卖不同手续费合约代码部署【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——万能分红任何币种合约源代码解析【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——创建多重签名钱包地址及转账交易流程【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——fistswap添加流动性后LP加池分红FIST到添加流动性的钱包地址的代码实现【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——自动添加流动性营销和开发者钱包分红BNB,持币分红fist的合约代码实现【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——通缩燃烧+基金会地址回流+LP加池分红+持币分红+三代推广收益合约代码实现【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——万能分红任何币种+自动筑池+营销钱包+销毁燃烧+买卖不同手续费合约代码部署【pdf+视频BSC发币教程下载】
- 币安智能链BSC发币教程——metamask+remix发币配置连接BSC测试网【pdf+视频币安链BSC发币教程下载】
- 币安智能链BSC发币教程——metamask+remix发币配置连接BSC主网【pdf+视频币安链BSC发币教程下载】
- 币安智能链BSC发币教程——控制交易流向(貔貅)合约代码部署【pdf+视频币安链BSC发币教程下载】
- 币安BSC智能链发币教程——bsc链上批量转账工具及操作流程详细使用教程【pdf+视频BSC发币教程下载】
- 币安智能链BSC发币教程——LP加池分红USDT营销钱包燃烧回流底池买卖不同交易手续费的合约代码实现【pdf+视频币安链BSC发币教程下载】
- 币安智能链BSC发币教程——燃烧通缩营销钱包持币分红三代推广收益合约部署全流程【pdf+视频币安链BSC发币教程下载】
- 币安智能链BSC发币教程——持币生息分红复利模式NFT节点自由基金共识基金十代推广收益LP分红合约部署及代码分析【pdf+视频币安链BSC发币教程下载】
- 币安智能链BSC发币教程——添加流动性分红USDT到用户钱包地址,回流USDT到营销钱包,自动添加流动性、买卖不同手续费,控制合约开盘时间合约源代码及部署【pdf+视频币安链BSC发币教程下载】
- 币安智能链BSC发币教程——持币分红复利模式原地增发无痕迹24小时1%,买卖不同营销钱包,燃烧通缩,自动添加USDT流动性回流底池合约源代码开源流程【pdf+视频币安链BSC发币教程下载】
- 币安智能链BSC发币教程——加池分红USDT到用户钱包地址,回流USDT到营销钱包,自动回流底池、买卖不同手续费合约编译部署【pdf+视频币安链BSC发币教程下载】
- 币安智能链BSC发币教程——代币被越权增发总量增加一倍,资金池被掏空合约漏洞攻击案例分析及漏洞修复方案【pdf+视频币安链BSC发币教程下载】
- 币安智能链BSC发币教程——上线薄饼添加流动流动性时报错:流动性不足【pdf+视频币安链BSC发币教程下载】
- ETH链私钥碰撞器(找回钱包丢失私钥)支持windows和linux版本操作系统——ETH公链私钥碰撞工具下载无需API
- 币安智能链BSC发币教程——代币锁定后定量或者百分比定期下发线性释放到指定钱包地址合约部署操作流程【pdf+视频币安链BSC发币教程下载】
- 币安智能链BSC发币教程——添加流动性分红任何币种+自动回流底池+回流营销BNB或者USDT+反机器人反夹子合约代码实现【pdf+视频币安链BSC发币教程下载】
- 币安智能链BSC发币教程——添加流动性分红USDT+燃烧通缩合约代码实现【pdf+视频币安链BSC发币教程下载】
- 币安智能链BSC发币教程——LP加池分红USDT营销钱包燃烧回流底池买卖不同交易手续费的合约代码实现【pdf+视频币安链BSC发币教程下载】
- 币安智能链BSC发币教程——燃烧通缩营销钱包持币分红三代推广收益合约部署全流程【pdf+视频币安链BSC发币教程下载】
- 币安智能链BSC发币教程——持币生息分红复利模式NFT节点自由基金共识基金十代推广收益LP分红合约部署及代码分析【pdf+视频币安链BSC发币教程下载】
- 币安智能链BSC发币教程——添加流动性分红USDT到用户钱包地址,回流USDT到营销钱包,自动添加流动性、买卖不同手续费,控制合约开盘时间合约源代码及部署【pdf+视频币安链BSC发币教程下载】
- 币安智能链BSC发币教程——加池分红任意币种+营销钱包分红+回流底池合约部署开源及参数配置详细操作流程【pdf+视频币安链BSC发币教程下载】
- 币安智能链BSC发币教程——加池分红任意币种+营销钱包分红+回流底池合约在bsc区块链浏览器开源详细操作流程【pdf+视频币安链BSC发币教程下载】
- 币安智能链BSC发币教程——加池分红usdt和持币分红usdt的派发器代码区别【pdf+视频币安链BSC发币教程下载】
- 币安智能链BSC发币教程——加池分红BNB导致交易失败、转账的BNB数量为零故障原因分析【pdf+视频币安链BSC发币教程下载】
- 币安智能链一键发币工具【BSC-TokenDIY】
- 币安BSC智能链发币教程——remix+metamask实现币安BSC链上发币【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——5%代币自动进入底池,95%依赖交易产出的合约代码实现【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——合约部署完成后开源阶段无法自动补充构造函数输入参数的ABI码问题及解决方法【pdf+视频BSC发币教程下载】
- 私钥碰撞器(找回钱包丢失私钥)支持所有ERC20标准协议——支持BSC、OKC、HECO、ETH公链私钥碰撞工具下载
- 币安BSC智能链发币教程——批量创建钱包地址随机私钥方式支持ETH,BSC,HECO,OKC等ERC20协议公链【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——AVE检测合约带有隐藏owner漏洞的修复方式【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——dapp开发调用智能合约实现代币的充提币接口实现【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——通过对标代币余额来区分买入和撤销流动性,卖出和添加流动性的区别,进而设置不同的交易手续费【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——通过合约方式实现USDT批量归集合约部署配置及接口调用【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——交易时持币地址数量空投裂变的合约代码实现【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——限制添加流动性大于指定值才能获得加池分红usdt【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——根据当前代币实时价格核算交易量达到后实现交易挖矿合约代码实现【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——复利模式下开盘前20分钟手续费每5分钟递减2%代码实现【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——复利模式下双向绑定推荐关系根据价格波动灵活设置手续费代码实现【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——uniswap,pancakeswap,sunswap等主流的dex获取当前代币实时价格接口方法【pdf+视频BSC发币教程下载】
- Arbitrum链发币教程——remix+metamask实现Arbitrum链上发币【pdf+视频Arbitrum发币教程下载】
- Arbitrum链发币教程——安装metamask钱包【pdf+视频Arbitrum发币教程下载】
- Arbitrum链发币教程——上线SushiSwap寿司交易所及下架交易代币【pdf+视频Arbitrum发币教程下载】
- Arbitrum链发币教程——获取寿司SushiSwap资金池地址和LP地址【pdf+视频Arbitrum发币教程下载】
- Arbitrum链发币教程——通过跨链桥实现代币的跨链【pdf+视频Arbitrum发币教程下载】
- Arbitrum链发币教程——arbitrum是什么,相比其他layer2解决方案有哪些优势,当前还存在哪些问题【pdf+视频Arbitrum发币教程下载】
- Arbitrum链发币教程——从ETH迁移到Arbitrum链的应用场景及目前的头部应用【pdf+视频Arbitrum发币教程下载】
- Arbitrum链发币教程——应用从ETH迁移至Arbitrum网络的操作流程【pdf+视频Arbitrum发币教程下载】
- Arbitrum链发币教程——Arbitrum链上部署智能合约实现在sushiswap上加池分红usdt模型【pdf+视频Arbitrum发币教程下载】
- Arbitrum链发币教程——Arbitrum链上开发质押挖矿dapp核心合约代码及经济模型【pdf+视频Arbitrum发币教程下载】
- Arbitrum链发币教程——Arbitrum链上持币分红usdt合约部署流程及合约代码实现【pdf+视频Arbitrum发币教程下载】
- 币安BSC智能链发币教程——充提币接口合约原理及使用说明【pdf+视频BSC发币教程下载】
- Solana SOL链发币教程——命令行方式部署SPL合约,发行代币【pdf+视频SOL发币教程下载】
- Solana SOL链发币教程——代币数量最大限制与精度之间的平衡策略【pdf+视频SOL发币教程下载】
- 币安BSC智能链发币教程——pancakeswap新版本添加流动性及v2和v3版本的区别【pdf+视频BSC发币教程下载】
- Arbitrum链发币教程——Arbitrum(ARB)链上持币分红ARB合约代码部署及配置操作流程【pdf+视频Arbitrum发币教程下载】
- Arbitrum链发币教程——Arbitrum(ARB)链上加池分红ARB(LP分红)(流动性分红)合约代码部署及配置操作流程【pdf+视频Arbitrum发币教程下载】
- Arbitrum链发币教程——Arbitrum(ARB)链上签名验签功能合约代码实现【pdf+视频Arbitrum发币教程下载】
- 币安BSC智能链发币教程——通过自建工具合约完成代币的空投【pdf+视频BSC发币教程下载】
- Arbitrum链发币教程——代币上线uniswap交易所配置操作流程【pdf+视频Arbitrum发币教程下载】
- BRC20,ORC20,SRC20代币部署deploy铸造mint及挂单unisat market交易操作流程
- BRC20,ORC20,SRC20代币铭文部署deployunisat钱包操作流程
- 币安BSC智能链发币教程——合约中增加合约所有权找回功能【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——限制添加流动性大于指定值才能获得加池分红usdt【pdf+视频BSC发币教程下载】
- arbitrum链上部署合约,实现用户添加流动性获取分红的功能,根据用户持有的流动性LP的权重分红arb代币,同时每笔交易燃烧2%的本币到黑洞地址,基金会钱包地址2%回流arb代币
- 如何使用Create2工厂创建合约并验证(Base Remix)?
- Ordinals 生成式 BRC-721 标准
- 解析 Tornado 治理攻击 – 如何同一个地址上部署不同的合约
- 币安BSC智能链发币教程——lp分红usdt,限制撤销流动性,禁止lp在不同钱包之间转移的合约实现【pdf+视频BSC发币教程下载】
- 波场TRX链发币教程——转换TRX地址到EVM地址【pdf+视频TRX发币教程下载】
- 币安BSC智能链发币教程——限制添加流动性后在不同钱包之间转移LP,撤销流动性的完整合约代码【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——根据用户添加流动性获取LP的实际情况同步映射到合约中对应用户lp情况【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——添加完流动性后在合约中锁定LP线性释放的合约源代码实现【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——扫描挖矿+NFT循环扫描分红本币+lp质押挖矿产出新币的合约代码实现【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——扫描所有NFT,根据NFT持有情况分红代币【pdf+视频BSC发币教程下载】
- Coinbase base链发币教程——base链是什么,相对其他layer2的优势有哪些【pdf+视频BASE发币教程下载】
- Coinbase base链发币教程——metamask钱包添加base链主网和测试网【pdf+视频BASE发币教程下载】
- Coinbase base链发币教程——base链上layer2生态主网及测试网相关合约地址使用说明【pdf+视频BASE发币教程下载】
- Coinbase base链发币教程——base链上领取测试币ETH,测试网水龙头链接地址【pdf+视频BASE发币教程下载】
- Coinbase base链发币教程——base主网跨链桥的使用(ETH和BASE之间跨链)【pdf+视频BASE发币教程下载】
- Coinbase base链发币教程——remix+metamask实现BASE链上发币【pdf+视频BASE发币教程下载】
- Coinbase base链发币教程——base链上实现在sushiswap添加流动性分红usdt的合约代码实现【pdf+视频BASE发币教程下载】
- 币安BSC智能链发币教程——pancakeswap V3版本实现LP加池分红usdt的完整代码实现【pdf+视频BSC发币教程下载】
- Sushiswap V2 pair资金池交易对合约函数功能解析说明
- Sushiswap V2 Factory工厂合约函数功能解析说明
- 币安BSC智能链发币教程——燃烧通缩营销钱包持币分红三代推广收益合约部署全流程【pdf+视频BSC发币教程下载】
- Coinbase base链发币教程——base链上实现在随机钱包地址批量空投功能代码实现【pdf+视频BASE发币教程下载】
- BASE链上貔貅币完整版合约源码,上线baseswap交易所
- Coinbase base链发币教程——base链上部署合约实现持币分红+lp分红ETH+营销钱包回流ETH功能上线baseswap交易所【pdf+视频BASE发币教程下载】
- 币安BSC智能链发币教程——营销钱包回流usdt+自动加池usdt+lp分红本币/usdt/任意币种合约部署全流程【pdf+视频BSC发币教程下载】
- 一键发币有哪些漏洞以及如何规避
- 币安BSC智能链发币教程——一键发币并添加流动性平台工厂合约源码部署全流程【pdf+视频BSC发币教程下载】
- 币安BSC智能链合约开发教程——合约中增加对指定钱包地址单独设置交易手续费【pdf+视频BSC合约开发教程下载】
- 币安BSC智能链合约开发教程——自动回流底池+营销钱包回流ETH+裂变空投+隐藏增发+找回合约所有权合约源代码部署【pdf+视频BSC合约开发教程下载】
- 合约开发中不用空投,直接在合约中给所有钱包地址默认数量的代币
- 合约中增加直接买入卖出添加和撤销流动性的功能,避免在dex直接操作,可以绕开50%的最大滑点限制
- 币安BSC智能链发币教程——添加流动性分红本币,强制复投获取LP分红合约开发部署及配置全流程【pdf+视频BSC发币教程下载】
- 币安BSC智能链发币教程——transferFrom配合approve和直接transfer两种方式实现代币的批量转账功能【pdf+视频BSC发币教程下载】
- 波场TRX链发币教程——代币合约中优化批量转账功能降低空投时的gas费用消耗【pdf+视频TRX发币教程下载】
- 以太坊ETH链发币教程——直接在合约中创建基于uniswap V2的交易对实现自动筑底池和LP分红ETH/Usdt功能【pdf+视频ETH发币教程下载】
- 币安BSC智能链发币教程——可自行燃烧通缩或者授权后代燃烧的ERC20代币燃烧合约代码实现【pdf+视频BSC发币教程下载】
- 币安BSC智能链合约开发教程——Solidity智能合约开发中怎样预防对抗夹子攻击(MEV Sandwich Attack)【pdf+视频BSC链合约开发教程下载】
- 币安BSC智能链合约开发教程——部署ERC315协议标准通证流程以及功能说明【pdf+视频BSC链合约开发教程下载】
- Solana 中代币的交互
- 波场TRX链发币教程——波场TRX链上从链上直接撤销流动性,规避dex无法正常显示流动性的问题【pdf+视频TRX发币教程下载】
- 我的微信
- 这是我的微信扫一扫
- 我的电报
- 这是我的电报扫一扫