Skip to content

Commit 6316bca

Browse files
committed
feat : add some coin
1 parent 41c7fac commit 6316bca

File tree

2 files changed

+55
-20
lines changed

2 files changed

+55
-20
lines changed

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
build:
2+
go build -o main ./main.go
3+
14
build-arm64:
25
GOARCH=arm64 GOOS=darwin go build -o zkproof_darwin_arm64 ./main.go
36

utils/constants.go

Lines changed: 52 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
package utils
22

33
import (
4-
"github.com/consensys/gnark-crypto/ecc/bn254/fr"
54
"math/big"
5+
6+
"github.com/consensys/gnark-crypto/ecc/bn254/fr"
67
)
78

89
const (
@@ -19,24 +20,55 @@ var (
1920
Uint64MaxValueFr = new(fr.Element).SetBigInt(Uint64MaxValueBigInt)
2021
Uint64MaxValueFrSquare = new(fr.Element).SetBigInt(Uint64MaxValueBigIntSquare)
2122
AssetTypeForTwoDigits = map[string]bool{
22-
"bttc": true,
23-
"shib": true,
24-
"lunc": true,
25-
"xec": true,
26-
"win": true,
27-
"bidr": true,
28-
"spell": true,
29-
"hot": true,
30-
"doge": true,
31-
"pepe": true,
32-
"floki": true,
33-
"nft": true,
34-
"sats": true,
35-
"btt": true,
36-
"bonk": true,
37-
"rats": true,
38-
"axl": true,
39-
"1cat": true,
40-
"omi": true,
23+
"nft": true,
24+
"turbo": true,
25+
"cheems": true,
26+
"hippo": true,
27+
"spell": true,
28+
"sats": true,
29+
"qubic": true,
30+
"pepe": true,
31+
"lunc": true,
32+
"snek": true,
33+
"shib": true,
34+
"dog": true,
35+
"mog": true,
36+
"vinu": true,
37+
"lai": true,
38+
"btt": true,
39+
"1cat": true,
40+
"wen": true,
41+
"aidoge": true,
42+
"bidr": true,
43+
"elon": true,
44+
"wgrt": true,
45+
"say": true,
46+
"bonk": true,
47+
"pepper": true,
48+
"rats": true,
49+
"supra": true,
50+
"hot": true,
51+
"omi": true,
52+
"htx": true,
53+
"reef": true,
54+
"peipei": true,
55+
"wojak": true,
56+
"xec": true,
57+
"toshi": true,
58+
"win": true,
59+
"babydoge": true,
60+
"why": true,
61+
"bome": true,
62+
"doge": true,
63+
"zbcn": true,
64+
"bttc": true,
65+
"raca": true,
66+
"apepe": true,
67+
"ladys": true,
68+
"vra": true,
69+
"axl": true,
70+
"floki": true,
71+
"bgsc": true,
72+
"atlas": true,
4173
}
4274
)

0 commit comments

Comments
 (0)