跳至主要內容
期货合约、永续合约

什么是期货合约

期货合约 : 是买方和卖方的一个约定,在将来的某个时间,以某个价格对某个货物进行交易

比如农民会种植农作物,粮商收购农作物。农民会和粮商 签订期货合约

卖货的一方,属于做空单。买货的一方,属于做多单。 如果货物价格上涨,多单盈利。如果货物价格下降,空单盈利。

什么是 永续期货合约

期货合约约定的有一个交割时间。 永续期货合约 没有到期时间。

永续期货合约 的 资金费率

如果 永续合约的 价格 高于 现货的价格, 资金费率就是正的。 多单要根据持仓量 支付给空单 资金费


程序员老张大约 2 分钟
薅空投如何防止被认定为女巫攻击

什么是女巫攻击

通俗的说,女巫攻击,就是一个人,在链上创建很多地址,伪装成不同用户进行交互,从而获取更多的空投奖励

专业的说: A Sybil attack is a type of attack on a computer network service in which an attacker subverts the service's reputation system by creating a large number of pseudonymous identities and uses them to gain a disproportionately large influence.


程序员老张小于 1 分钟
AI搞副业资料汇总

AI搞副业资料汇总

https://github.com/bleedline/aimoneyhunter

https://www.bilibili.com/video/BV1mH4y1a7mk/?buvid=XX832B68A864BAEB8339196240F29CCD7A684&from_spmid=main.space-contribution.0.0&is_story_h5=false&mid=Xx5moA1YjUQhhQpFExUn0w%3D%3D&p=1&plat_id=116&share_from=ugc&share_medium=android&share_plat=android&share_session_id=3a258058-fabd-4227-84e5-a73b6a8fe708&share_source=GENERIC&share_tag=s_i&spmid=main.ugc-video-detail.0.0&timestamp=1709654210&unique_k=HuGgOf9&up_id=65564239&vd_source=b64eda844079e9704095181ace398456


程序员老张小于 1 分钟
Hardhat入门

Hardhat入门

安装
npm install --save-dev hardhat

初始化项目
npx hardhat

编译合约
npx hardhat compile

测试合约
npx hardhat test

部署合约
npx hardhat run scripts/deploy.ts

启动一个本地的以太坊
npx hardhat node

部署合约到本地的以太坊
npx hardhat run scripts/deploy.ts --network localhost


程序员老张小于 1 分钟以太坊智能合约Hardhat