batch encode

This commit is contained in:
thloyi
2026-04-16 16:40:21 +08:00
parent e761fd6f84
commit d2879efcc6
5 changed files with 3014 additions and 5 deletions

12
enum.go
View File

@@ -119,9 +119,11 @@ func GetConditionByProgram(program string) []string {
}
const (
TxEventAddLP = "add"
TxEventRemoveLP = "remove"
TxEventBuy = "buy"
TxEventSell = "sell"
TxEventBurn = "burn"
TxEventAddLP = "add"
TxEventRemoveLP = "remove"
TxEventBuy = "buy"
TxEventSell = "sell"
TxEventBuyFailed = "buy_failed"
TxEventSellFailed = "sell_failed"
TxEventBurn = "burn"
)