solidity开发中的问题(assert revert require&节约gas)

25 篇文章 1 订阅
22 篇文章 0 订阅

1.如果compile 0.4.23,找不到对应的版本,可以先选auto compile。

在这里插入图片描述
2.callData就是console里面的input数据
在这里插入图片描述
3、消耗gas多的代码:
3.1.assert() 多、
require和revert少
assert(condition)
revert(string reason)
require(condition, string reason)

require(i<10, "非常长的报错信息提示浪费gas")
所以优化用error(0.8^)
error MyError(address caller, uint i);
function testCustomError(uint _i) public view {
	if(_i >10) {
		revert MyError(msg.sender, _i);
	}
}

3.2.storage状态变量修改

3.3.while、for循环越多

3.4.函数mutability的pure、view消耗少

4.函数returns中,可以返回reference type类型嘛?
可以return (value1, value2, value3)
在这里插入图片描述
5.节约gas技巧
https://www.bilibili.com/video/BV1Pi4y1U7Cu/?spm_id_from=333.788

.start - 50908 gas
1.use calldata - 49163 gas
2.load state variables to memory - 48952 gas // 函数声明memory引用类型,代替状态storage
3.short circuit - 48634 gas // &&
4.loop increments - 48226 gas // ++i
5.cache array length - 48191 gas // 缓存数组长度
6.load array elements to memory - 48029 gas // for中多次用到的 num[i],缓存起来

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

前端段

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值