Ubuntu 24.04安装shadowsocks-libev Posted on June 3, 2024 Shadowsocks-libev 是一个基于 libev 的高性能的代理工具,支持多种加密方式,适用于个人和企业的网络加速。本文将指导您在 Ubuntu 24.04 上安装 Shadowsocks-libev。 [Read More] Tags: tools
Solidity:存钱罐合约 Posted on May 28, 2024 ```solidity // SPDX-License-Identifier: MIT pragma solidity ^0.8.25; [Read More] Tags: blockchain solidity
Solidity:Gas 优化 Posted on May 27, 2024 在Solidity中,优化gas使用是非常重要的,因为每一笔交易都需要消耗gas。以下是一些可以帮助你优化gas使用的技巧: [Read More] Tags: blockchain solidity
Solidity:在合约中创建其它合约 Posted on May 27, 2024 在Solidity中,new关键字用于创建一个新的智能合约实例。当你使用new关键字创建一个新的合约实例时,Solidity会在区块链上部署一个新的合约,并返回新合约的地址。自0.8.0版本开始,new关键字通过指定salt选项支持create2特性。 [Read More] Tags: blockchain solidity