You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
344 B

package types
import (
"time"
)
type Submission struct {
Type string
Nonce []byte
KeyProof []byte
Package []byte
Timestamp time.Time
}
type Batch struct {
Type string
Nullifiers [][]byte
URL string
TXID string
Nonce []byte
Signature string
}
type Packet struct {
PID string
Nullifier []byte
Vote []byte
Franchise []byte
}