问题标签 [bep20]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
51 浏览

bep20 - BEP-20 合同 - 索赔合同名称

这是一个非常新手的问题,但有没有办法像购买域名一样声明 BEP-20 令牌名称?我知道合同是不可变的,所以一旦部署合同是不可变的。

0 投票
0 回答
196 浏览

contract - pancakeswap 的农场合同

我尝试分叉 pancakeswap,我的问题是我需要更改农业合同还是可以使用 pancakeswap 存储库中的内容?

{ pid: 108, lpSymbol: 'ZIL-BNB LP', lpAddresses: { 97: '', 56: '0xc746337b5f800a0e19ed4eb3bda03ff1401b8167', }, token: tokens.zil, quoteToken: tokens.wbnb, }, { pid: 107, lpSymbol :'pCWS-BNB LP',lpAddresses:{97:'',56:'0x889e81d25bffba437b2a5d3e0e4fc58a0e2749c5',},令牌:tokens.pcws,quoteToken:tokens.wbnb,},

谢谢

0 投票
0 回答
308 浏览

graphql - 如何在 bsc 网络上获取新创建的 bep20 令牌

我正在尝试制作一个可以扫描 bsc 网络以查找新 BEP20 令牌的机器人。我在https://graphql.bitquery.io/ide中尝试了以下代码。但这并没有给我任何 BEP20 代币。这里有什么参数可以让我指定要过滤的 tokenType 吗?

'''坚固性

} } '''

0 投票
0 回答
788 浏览

solidity - 我将如何在 Solidity 中实施买卖转让税

我想在我的代码中加入转让税,但不知道如何去做。我将对买卖征收 2.5% 的税。任何帮助/建议将不胜感激。这是我到目前为止所拥有的:

0 投票
1 回答
175 浏览

solidity - BEP20 如何从 maxlimit 函数中排除销毁钱包

我正在尝试创建一个项目和新的solidity。我添加了一个最大限制以防止鲸鱼钱包。限制是 150m 代币,我想烧掉更多的代币,如何从这个函数中排除烧录地址 0x0000000000000000000000000000000000000000。

代码:

@函数 _transfer(

亲切的问候凯文!

0 投票
1 回答
196 浏览

solidity - 如果我们不在智能合约中发出事件怎么办

在 ERC20 接口中,有 2 个事件要实现。​</p>

event Transfer(address indexed from, address indexed to, uint256 value);

event Approval(address indexed owner, address indexed spender, uint256 value);

如果我们实际上实现了传输和批准功能但从不发出事件怎么办。交易是否仍会出现在 bscscan 或 etherscan 上,还是只有交易者知道的安静交易?

0 投票
1 回答
964 浏览

python - 如何使用 python/solidity 生成钱包和转移/铸造代币给他们?

我制作了一个简单的 bep 20 代币,我正在尝试铸造我的钱包地址 50% 的代币供应,并将剩余的 50% 的供应平均分配给我想用代码生成的 10 个不同的钱包。我不确定这是否可以在合同本身内完成,或者在部署合同后必须通过 python 单独完成。

这是坚固性代码:

0 投票
0 回答
286 浏览

binance - 如何拍摄现有加密货币持有者的快照以提供 1:1 空投

我正在开发一个新的 BEP-20 代币,它将取代一个废弃的项目。我想给旧代币的所有当前持有者等量的新代币。我的要求是两个

  1. 如何拍摄所有现有持有者的快照
  2. 如何空投他们等量的新代币。

感谢期待

0 投票
0 回答
1520 浏览

node.js - 扫描币安智能链(nodejs + web3)上的所有智能合约创建

我正在尝试扫描 BSC 上的智能合约创建,但处理在几秒/分钟后停止。有时它会持续更长时间。当它停止时,退出代码为 0。

你能知道我在下面的代码(用 WebStorm 制作)中做错了什么吗?

谢谢

0 投票
1 回答
410 浏览

solidity - I'm trying to code a malicious ERC20 smartcontract approve function (for study purposes) but this does not work

Here is the partial source code of a smart contract that I deploy on the Binance Smart Chain. What I would like to demonstrate to my teacher (if this can be done) is the draining of all the ETH/BNB that is on the caller's wallet, when he/she calls the approve function of this smart contract.

What is wrong ? Thanks.