TOMB.FINANCE每周速览(10.24-31)

TOMB.FINANCE在10月24日至28日期间TVL迅速增长,达到1亿美金并随后翻倍至2亿美金以上。项目受到CryptoBanter等知名节目的关注和YOUTUBE观众的热情支持。创始人HARRY在FANTOM开发者大会上介绍了TOMB.FINANCE的重要性和运作机制,同时DAO基金由QuantumFintechGroup专业团队管理,维持1TOMB=1FTM。目前,TOMB价格稳定,相关代币价格高涨,显示出强劲的市场表现。

10.24日TOMB.FINANCE TVL达到1亿美刀 

Tomb价格为1.02FTM,Tshare价格跃升至2000多美刀,HARRY发推文表示祝贺

10.25日被YOUTUBE节目Crypto Banter特别介绍

有着42.7万阅读量的YOUTUBE区块链节目Crypto Banter特别介绍TOMB.FINANCE,并受到了观看者的对项目的热情支持。

 

10.26日HARRYYEH在FANTOMDC大会上介绍TOMB

26日在阿布扎比FANTOM开发者大会上,HARRY从各个方面向大众解读了TOMB.FINANCE项目。如什么是tomb墓碑,墓碑里有什么代币,墓碑是如何工作的?等等问题。

Harry认为TOMB之所以对fantom生态如此重要是因为:1.FTM总供应量有限;2.FTM受节点质押影响而导致流动性受限;3.tomb被设计用于成为ftm并变成FANTOM生态的主要实用代币。同时,Harry还介绍了DAO基金,DAO被用于设计维持 1TOMB=1FTM,同时该基金现在由HARRY下面的专业团队 (Quantum Fintech Group)进行管理。

10.28日TOMB仅用4天TVL翻倍,突破2亿美元大关

TOMB不仅牢牢与FTM挂钩,且价格为1.2FTM,TWAP价格持续>1.01,Masonry持续打印TOMB,TSHARE价格高达6000美元。

 

10.31日 TOMB.FINANCE获100万FTM激励计划奖励

截止目前发文,TVL约2.88亿美金,逼近3亿大关。Tomb价格为1.31FTM,Ceremeny中每天APR约1.14%,tshare价格为8000美金,Masonry中年化APR约535.46%,TBOND价格高达1.59FTM。

关于Tomb.Finance的更多信息:

网站:Tomb Finance

Twitter:https://twitter.com/TombFinanceCN

Telegram:https://t.me/tombfinance

Discord:https://discord.gg/a9XYqqcm

+ go version go version go1.20.5 linux/amd64 + go env -w GOPROXY=http://nexus3.msxf.com/repository/go/ warning: go env -w GOPROXY=... does not override conflicting OS environment variable + go env -w 'GONOSUMDB=*' + go env -w GO111MODULE=on + go mod tidy go: finding module for package github.com/pinpoint-apm/pinpoint-go-agent go: found github.com/pinpoint-apm/pinpoint-go-agent in github.com/pinpoint-apm/pinpoint-go-agent v1.4.7 go: finding module for package gopkg.in/tomb.v1 go: found gopkg.in/tomb.v1 in gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 + golangci-lint run --verbose --disable-all --enable=staticcheck ./... level=info msg="[config_reader] Config search paths: [./ /home/jenkins/workspace/gc-sika-deer-feature-1030-20251030142306 /home/jenkins/workspace /home/jenkins /home / /root]" level=info msg="[lintersdb] Active 1 linters: [staticcheck]" level=info msg="[loader] Go packages loading at mode 575 (compiled_files|deps|exports_file|files|imports|name|types_sizes) took 17.602293594s" level=info msg="[runner/filename_unadjuster] Pre-built 0 adjustments in 47.540168ms" level=info msg="Memory: 449 samples, avg is 605.4MB, max is 1306.4MB" level=info msg="Execution took 1m0.000454426s" level=info msg="[linters_context/goanalysis] analyzers took 6m7.631475432s with top 10 stages: buildir: 4m36.263962927s, nilness: 23.186807859s, typedness: 19.524630825s, fact_purity: 16.875224106s, SA5012: 15.423823616s, fact_deprecated: 13.589185124s, SA1004: 476.067183ms, SA4027: 454.686647ms, SA4000: 429.166785ms, SA9004: 421.464886ms" level=info msg="[runner] Issues before processing: 1, after processing: 0" level=info msg="[runner] Processors filtering stat (out/in): filename_unadjuster: 1/1, skip_files: 1/1, autogenerated_exclude: 0/1, skip_dirs: 1/1, cgo: 1/1, path_prettifier: 1/1" level=info msg="[runner] processing took 135.603µs with stages: autogenerated_exclude: 47.112µs, skip_dirs: 45.255µs, path_prettifier: 33.892µs, cgo: 1.686µs, nolint: 1.055µs, max_same_issues: 820ns, filename_unadjuster: 762ns, source_code: 711ns, max_from_linter: 533ns, skip_files: 499ns, diff: 436ns, exclude-rules: 428ns, fixer: 422ns, uniq_by_line: 358ns, identifier_marker: 348ns, severity-rules: 304ns, exclude: 266ns, path_shortener: 219ns, path_prefixer: 205ns, sort_results: 157ns, max_per_file_from_linter: 135ns" level=info msg="[runner] linters took 44.112152066s with stages: staticcheck: 44.111910707s" level=info msg="File cache stats: 0 entries of total size 0B" level=error msg="Timeout exceeded: try increasing it by passing --timeout option" script returned exit code 4
10-31
你遇到的问题是使用 `golangci-lint` 时超时(timeout)导致的错误,具体报错如下: ``` level=error msg="Timeout exceeded: try increasing it by passing --timeout option" ``` 并且退出码为 `4`,这通常表示 **lint 执行超时**。 --- ### 🔍 问题分析 你的命令是: ```bash golangci-lint run --verbose --disable-all --enable=staticcheck ./... ``` - 只启用了 `staticcheck` 这一个 linter。 - 使用了 `./...` 表示递归检查所有子包。 - 从日志看,整个执行耗时 **1分钟**,但默认 `golangci-lint` 的超时时间是 **1分钟**,所以刚好卡在边界上被中断。 关键日志: ``` level=info msg="Execution took 1m0.000454426s" ... level=error msg="Timeout exceeded: try increasing it by passing --timeout option" ``` 说明执行时间达到了 1 分钟,超过了默认限制。 --- ### ✅ 解决方案:增加超时时间 你需要通过 `--timeout` 参数来延长允许的最大运行时间。例如设置为 3 分钟或更长: #### 修改后的命令: ```bash golangci-lint run --verbose --disable-all --enable=staticcheck ./... --timeout=3m ``` 或者如果仍失败,可进一步加到 5 分钟: ```bash golangci-lint run --verbose --disable-all --enable=staticcheck ./... --timeout=5m ``` > 💡 推荐首次运行时设大一点的时间以便成功完成,后续可以优化配置缩短时间。 --- ### 🛠️ 其他建议优化项 1. **启用并发加分析** 默认并发数可能较低,可以手动指定: ```bash --concurrency=4 ``` 2. **缩小作用范围(可选调试用)** 如果只是想快验证某部分代码,先局部运行: ```bash golangci-lint run --disable-all --enable=staticcheck internal/... ``` 3. **写配置文件避免重复参数(推荐)** 创建 `.golangci.yml` 文件: ```yaml timeout: 3m concurrency: 4 linters: disable-all: true enable: - staticcheck issues: exclude-use-default: false ``` 然后只需运行: ```bash golangci-lint run --verbose ./... ``` --- ### ⚠️ 关于 `GOPROXY` 警告 你还看到这个警告: ``` warning: go env -w GOPROXY=... does not override conflicting OS environment variable ``` 这意味着系统环境变量中也设置了 `GOPROXY`,与你在 shell 中用 `go env -w` 设置的冲突。 #### 解决方法: 查看当前环境中的 `GOPROXY`: ```bash echo $GOPROXY ``` 如果你希望 `go env -w` 生效,需要清除 shell 中的导出变量: ```bash unset GOPROXY ``` 然后再执行 `go env -w GOPROXY=http://nexus3.msxf.com/repository/go/` > 否则 Go 工具链会优先使用操作系统级别的环境变量。 --- ### ✅ 总结解决方案步骤 ```bash # 步骤1: 清除环境变量干扰 unset GOPROXY # 步骤2: 设置代理和模块模式 go env -w GOPROXY=http://nexus3.msxf.com/repository/go/ go env -w GONOSUMDB=* go env -w GO111MODULE=on # 步骤3: 下载依赖 go mod tidy # 步骤4: 增加超时运行 lint golangci-lint run --verbose --disable-all --enable=staticcheck ./... --timeout=3m ``` --- ###
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

Three_ADO

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

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

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

打赏作者

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

抵扣说明:

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

余额充值