Skip to content

Instantly share code, notes, and snippets.

View lingjianrui's full-sized avatar
🎯
Focusing

凌见瑞(Jerry.Ling) lingjianrui

🎯
Focusing
View GitHub Profile
@lingjianrui
lingjianrui / .prettierrc.json
Created January 26, 2023 08:49
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.7+commit.e28d00a7.js&optimize=false&runs=200&gist=
{
"overrides": [
{
"files": "*.sol",
"options": {
"printWidth": 80,
"tabWidth": 4,
"useTabs": false,
"singleQuote": false,
"bracketSpacing": false
@lingjianrui
lingjianrui / NFTXUHE.sol
Created November 18, 2022 12:29
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.7+commit.e28d00a7.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.0;
interface IERC165 {
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
interface IERC721 is IERC165 {
@lingjianrui
lingjianrui / centos配置网络.txt
Created January 21, 2021 11:06
centos配置网络
vi /etc/sysconfig/network-scripts/ifcfg-eth0
将ONBOOT=NO改为yes
yum install net-tools