This commit is contained in:
2025-05-13 15:44:44 +08:00
parent 20a741ae11
commit 8e2324df0e
32 changed files with 2840 additions and 44 deletions

10
abis/token.go Normal file
View File

@ -0,0 +1,10 @@
package abis
type TokenABI struct {
//token 合约地址
Address string
//测试网地址
TestAddress string
//token 最小单位位数
Decimals int
}