feat: working state syncer

This commit is contained in:
2025-01-02 12:05:09 +03:00
parent f87acbf98e
commit 4f9a95dfeb
10 changed files with 557 additions and 0 deletions

View File

@@ -14,3 +14,14 @@ const (
ACCOUNT_COMMODITIES = 8
ACCOUNT_ACTIVE_VOUCHER = 17
)
var ValidDataTypeLookup = map[uint16]struct{}{
ACCOUNT_BLOCKCHAIN_ADDRESS: {},
ACCOUNT_FIRST_NAME: {},
ACCOUNT_LAST_NAME: {},
ACCOUNT_YOB: {},
ACCOUNT_LOCATION: {},
ACCOUNT_GENDER: {},
ACCOUNT_COMMODITIES: {},
ACCOUNT_ACTIVE_VOUCHER: {},
}