Documentation ¶
Index ¶
- Constants
- Variables
- func Compress(b []byte) []byte
- func CompressMsgpackMarshalPanic(val interface{}) []byte
- func Decompress(b []byte) []byte
- func DecompressMsgpackUnmarshal(data []byte, val interface{}) error
- func MsgpackMarshalPanic(val interface{}) []byte
- func MsgpackUnmarshal(data []byte, val interface{}) error
- type Address
- type Asset
- type DataStore
- type Decoder
- func (dec *Decoder) DecodeTransaction() (*SignedTransaction, error)
- func (dec *Decoder) Read(b []byte) error
- func (dec *Decoder) ReadBytes() ([]byte, error)
- func (dec *Decoder) ReadInput() (*Input, error)
- func (dec *Decoder) ReadInt() (int, error)
- func (dec *Decoder) ReadInteger() (Integer, error)
- func (dec *Decoder) ReadMagic() (bool, error)
- func (dec *Decoder) ReadOutput() (*Output, error)
- func (dec *Decoder) ReadSignatures() (map[uint16]*crypto.Signature, error)
- func (dec *Decoder) ReadUint16() (uint16, error)
- func (dec *Decoder) ReadUint64() (uint64, error)
- type DepositData
- type DeprecatedSnapshot
- type Domain
- type DomainReader
- type Encoder
- func (enc *Encoder) EncodeInput(in *Input)
- func (enc *Encoder) EncodeOutput(o *Output)
- func (enc *Encoder) EncodeSignatures(sm map[uint16]*crypto.Signature)
- func (enc *Encoder) EncodeTransaction(signed *SignedTransaction) []byte
- func (enc *Encoder) Write(b []byte)
- func (enc *Encoder) WriteInt(d int)
- func (enc *Encoder) WriteInteger(d Integer)
- func (enc *Encoder) WriteUint16(d uint16)
- func (enc *Encoder) WriteUint64(d uint64)
- type GenesisHackInput
- type GenesisHackTransaction
- type GhostChecker
- type Input
- type Integer
- func (x Integer) Add(y Integer) (v Integer)
- func (x Integer) Cmp(y Integer) int
- func (x Integer) Div(y int) (v Integer)
- func (x Integer) MarshalJSON() ([]byte, error)
- func (x Integer) MarshalMsgpack() ([]byte, error)
- func (x Integer) Mul(y int) (v Integer)
- func (x Integer) Ration(y Integer) (v RationalNumber)
- func (x Integer) Sign() int
- func (x Integer) String() string
- func (x Integer) Sub(y Integer) (v Integer)
- func (x *Integer) UnmarshalJSON(b []byte) error
- func (x *Integer) UnmarshalMsgpack(data []byte) error
- type MintData
- type MintDistribution
- type Node
- type NodeReader
- type Output
- type RationalNumber
- type Round
- type RoundLink
- type Script
- type SignedGenesisHackTransaction
- type SignedTransaction
- func (tx *SignedTransaction) AsLatestVersion() *VersionedTransaction
- func (signed *SignedTransaction) SignInput(reader UTXOReader, index int, accounts []*Address) error
- func (signed *SignedTransaction) SignInputV1(reader UTXOReader, index int, accounts []*Address) error
- func (signed *SignedTransaction) SignRaw(key crypto.Key) error
- func (signed *SignedTransaction) SignRawV1(key crypto.Key) error
- func (signed *SignedTransaction) SignUTXO(utxo *UTXO, accounts []*Address) error
- func (tx *SignedTransaction) TransactionType() uint8
- type SignedTransactionV1
- type Snapshot
- type SnapshotWithTopologicalOrder
- type SnapshotWork
- type Transaction
- func (tx *Transaction) AddDepositInput(data *DepositData)
- func (tx *Transaction) AddInput(hash crypto.Hash, index int)
- func (tx *Transaction) AddKernelNodeMintInput(batch uint64, amount Integer)
- func (tx *Transaction) AddOutputWithType(ot uint8, accounts []*Address, s Script, amount Integer, seed []byte)
- func (tx *Transaction) AddRandomScriptOutput(accounts []*Address, s Script, amount Integer) error
- func (tx *Transaction) AddScriptOutput(accounts []*Address, s Script, amount Integer, seed []byte)
- func (tx *Transaction) AsLatestVersion() *VersionedTransaction
- func (tx *Transaction) DepositData() *DepositData
- func (tx *Transaction) ViewGhostKey(a *crypto.Key) []*Output
- type UTXO
- type UTXOLocker
- type UTXOReader
- type UTXOWithLock
- type VersionedTransaction
- func (ver *VersionedTransaction) CompressMarshal() []byte
- func (tx *VersionedTransaction) LockInputs(locker UTXOLocker, fork bool) error
- func (ver *VersionedTransaction) Marshal() []byte
- func (ver *VersionedTransaction) PayloadHash() crypto.Hash
- func (ver *VersionedTransaction) PayloadMarshal() []byte
- func (tx *VersionedTransaction) UnspentOutputs() []*UTXO
- func (ver *VersionedTransaction) Validate(store DataStore) error
- type WithdrawalData
Constants ¶
View Source
const ( NodeStatePledging = "PLEDGING" NodeStateAccepted = "ACCEPTED" NodeStateRemoved = "REMOVED" NodeStateCancelled = "CANCELLED" )
View Source
const ( Operator0 = 0x00 Operator64 = 0x40 OperatorSum = 0xfe OperatorCmp = 0xff )
View Source
const ( TxVersion = 0x02 ExtraSizeLimit = 256 OutputTypeScript = 0x00 OutputTypeWithdrawalSubmit = 0xa1 OutputTypeWithdrawalFuel = 0xa2 OutputTypeNodePledge = 0xa3 OutputTypeNodeAccept = 0xa4 OutputTypeNodeRemove = 0xa6 OutputTypeDomainAccept = 0xa7 OutputTypeDomainRemove = 0xa8 OutputTypeWithdrawalClaim = 0xa9 OutputTypeNodeCancel = 0xaa OutputTypeDomainAssetCustody = 0xab OutputTypeDomainAssetRelease = 0xac OutputTypeDomainAssetMigrate = 0xad TransactionTypeScript = 0x00 TransactionTypeMint = 0x01 TransactionTypeDeposit = 0x02 TransactionTypeWithdrawalSubmit = 0x03 TransactionTypeWithdrawalFuel = 0x04 TransactionTypeWithdrawalClaim = 0x05 TransactionTypeNodePledge = 0x06 TransactionTypeNodeAccept = 0x07 TransactionTypeNodeRemove = 0x09 TransactionTypeDomainAccept = 0x10 TransactionTypeDomainRemove = 0x11 TransactionTypeNodeCancel = 0x12 TransactionTypeUnknown = 0xff )
View Source
const MainNetworkId = "XIN"
View Source
const (
MaximumEncodingInt = 256
)
View Source
const (
MintGroupKernelNode = "KERNELNODE"
)
View Source
const Precision = 8
View Source
const (
SnapshotVersion = 1
)
Variables ¶
View Source
var ( CompressionVersionZero = []byte{0, 0, 0, 0} CompressionVersionLatest = CompressionVersionZero )
View Source
var (
XINAssetId crypto.Hash
)
View Source
var ZstdEmbed []byte
Functions ¶
func CompressMsgpackMarshalPanic ¶ added in v0.2.7
func CompressMsgpackMarshalPanic(val interface{}) []byte
func Decompress ¶ added in v0.12.1
func DecompressMsgpackUnmarshal ¶ added in v0.2.7
func MsgpackMarshalPanic ¶
func MsgpackMarshalPanic(val interface{}) []byte
func MsgpackUnmarshal ¶ added in v0.1.13
Types ¶
type Address ¶
type Address struct { PrivateSpendKey crypto.Key PrivateViewKey crypto.Key PublicSpendKey crypto.Key PublicViewKey crypto.Key }
func NewAddressFromSeed ¶
func NewAddressFromString ¶
func (Address) MarshalJSON ¶
func (*Address) UnmarshalJSON ¶
type Asset ¶ added in v0.1.14
func (*Asset) FeeAssetId ¶ added in v0.1.14
type DataStore ¶
type DataStore interface { UTXOReader UTXOLocker GhostChecker NodeReader DomainReader }
type Decoder ¶ added in v0.12.1
type Decoder struct {
// contains filtered or unexported fields
}
func NewDecoder ¶ added in v0.12.1
func (*Decoder) DecodeTransaction ¶ added in v0.12.1
func (dec *Decoder) DecodeTransaction() (*SignedTransaction, error)
func (*Decoder) ReadInteger ¶ added in v0.12.1
func (*Decoder) ReadOutput ¶ added in v0.12.1
func (*Decoder) ReadSignatures ¶ added in v0.12.1
func (*Decoder) ReadUint16 ¶ added in v0.12.1
func (*Decoder) ReadUint64 ¶ added in v0.12.1
type DepositData ¶
type DepositData struct { Chain crypto.Hash AssetKey string TransactionHash string OutputIndex uint64 Amount Integer }
func (*DepositData) Asset ¶ added in v0.1.14
func (d *DepositData) Asset() *Asset
func (*DepositData) UniqueKey ¶ added in v0.1.4
func (d *DepositData) UniqueKey() crypto.Hash
type DeprecatedSnapshot ¶ added in v0.5.0
type DomainReader ¶
type DomainReader interface {
ReadDomains() []Domain
}
type Encoder ¶ added in v0.12.1
type Encoder struct {
// contains filtered or unexported fields
}
func NewEncoder ¶ added in v0.12.1
func NewEncoder() *Encoder
func (*Encoder) EncodeInput ¶ added in v0.12.1
func (*Encoder) EncodeOutput ¶ added in v0.12.1
func (*Encoder) EncodeSignatures ¶ added in v0.12.1
func (*Encoder) EncodeTransaction ¶ added in v0.12.1
func (enc *Encoder) EncodeTransaction(signed *SignedTransaction) []byte
func (*Encoder) WriteInteger ¶ added in v0.12.1
func (*Encoder) WriteUint16 ¶ added in v0.12.1
func (*Encoder) WriteUint64 ¶ added in v0.12.1
type GenesisHackInput ¶ added in v0.1.14
type GenesisHackTransaction ¶ added in v0.1.14
type Integer ¶
type Integer struct {
// contains filtered or unexported fields
}
var Zero Integer
func NewInteger ¶
func NewIntegerFromString ¶
func (Integer) MarshalJSON ¶
func (Integer) MarshalMsgpack ¶
func (Integer) Ration ¶ added in v0.11.0
func (x Integer) Ration(y Integer) (v RationalNumber)
func (*Integer) UnmarshalJSON ¶
func (*Integer) UnmarshalMsgpack ¶
type MintData ¶ added in v0.1.1
func (*MintData) Distribute ¶ added in v0.1.1
func (m *MintData) Distribute(tx crypto.Hash) *MintDistribution
type MintDistribution ¶ added in v0.1.1
type Node ¶
type NodeReader ¶
type RationalNumber ¶ added in v0.11.0
type RationalNumber struct {
// contains filtered or unexported fields
}
var OneRat RationalNumber
func (RationalNumber) Cmp ¶ added in v0.11.0
func (r RationalNumber) Cmp(x RationalNumber) int
func (RationalNumber) Product ¶ added in v0.11.0
func (r RationalNumber) Product(x Integer) (v Integer)
type Script ¶
type Script []uint8
func NewThresholdScript ¶ added in v0.1.1
func (Script) MarshalJSON ¶
func (*Script) UnmarshalJSON ¶
func (Script) VerifyFormat ¶
type SignedGenesisHackTransaction ¶ added in v0.1.14
type SignedGenesisHackTransaction struct { GenesisHackTransaction Signatures [][]crypto.Signature }
type SignedTransaction ¶
type SignedTransaction struct { Transaction SignaturesMap []map[uint16]*crypto.Signature `msgpack:"Signatures"` SignaturesSliceV1 [][]*crypto.Signature `msgpack:"-"` }
func (*SignedTransaction) AsLatestVersion ¶ added in v0.4.1
func (tx *SignedTransaction) AsLatestVersion() *VersionedTransaction
func (*SignedTransaction) SignInput ¶
func (signed *SignedTransaction) SignInput(reader UTXOReader, index int, accounts []*Address) error
func (*SignedTransaction) SignInputV1 ¶ added in v0.12.1
func (signed *SignedTransaction) SignInputV1(reader UTXOReader, index int, accounts []*Address) error
func (*SignedTransaction) SignRawV1 ¶ added in v0.12.3
func (signed *SignedTransaction) SignRawV1(key crypto.Key) error
func (*SignedTransaction) SignUTXO ¶ added in v0.5.10
func (signed *SignedTransaction) SignUTXO(utxo *UTXO, accounts []*Address) error
func (*SignedTransaction) TransactionType ¶ added in v0.2.0
func (tx *SignedTransaction) TransactionType() uint8
type SignedTransactionV1 ¶ added in v0.12.0
type SignedTransactionV1 struct { Transaction SignaturesSliceV1 [][]*crypto.Signature `msgpack:"Signatures"` }
type Snapshot ¶
type Snapshot struct { Version uint8 NodeId crypto.Hash Transaction crypto.Hash References *RoundLink RoundNumber uint64 Timestamp uint64 Signatures []*crypto.Signature `msgpack:",omitempty"` Signature *crypto.CosiSignature `msgpack:",omitempty"` Hash crypto.Hash `msgpack:"-"` }
func (*Snapshot) PayloadHash ¶
func (*Snapshot) VersionedPayload ¶ added in v0.5.0
type SnapshotWork ¶ added in v0.11.7
type Transaction ¶
type Transaction struct { Version uint8 Asset crypto.Hash Inputs []*Input Outputs []*Output Extra []byte }
func NewTransaction ¶
func NewTransaction(asset crypto.Hash) *Transaction
func (*Transaction) AddDepositInput ¶
func (tx *Transaction) AddDepositInput(data *DepositData)
func (*Transaction) AddKernelNodeMintInput ¶ added in v0.1.1
func (tx *Transaction) AddKernelNodeMintInput(batch uint64, amount Integer)
func (*Transaction) AddOutputWithType ¶ added in v0.2.0
func (*Transaction) AddRandomScriptOutput ¶ added in v0.2.0
func (tx *Transaction) AddRandomScriptOutput(accounts []*Address, s Script, amount Integer) error
func (*Transaction) AddScriptOutput ¶
func (tx *Transaction) AddScriptOutput(accounts []*Address, s Script, amount Integer, seed []byte)
func (*Transaction) AsLatestVersion ¶ added in v0.1.14
func (tx *Transaction) AsLatestVersion() *VersionedTransaction
func (*Transaction) DepositData ¶ added in v0.12.0
func (tx *Transaction) DepositData() *DepositData
func (*Transaction) ViewGhostKey ¶
func (tx *Transaction) ViewGhostKey(a *crypto.Key) []*Output
type UTXOLocker ¶
type UTXOReader ¶
type UTXOReader interface { ReadUTXO(hash crypto.Hash, index int) (*UTXOWithLock, error) CheckDepositInput(deposit *DepositData, tx crypto.Hash) error ReadLastMintDistribution(group string) (*MintDistribution, error) }
type UTXOWithLock ¶
type VersionedTransaction ¶ added in v0.1.14
type VersionedTransaction struct { SignedTransaction BadGenesis *SignedGenesisHackTransaction `msgpack:"-"` // contains filtered or unexported fields }
func DecompressUnmarshalVersionedTransaction ¶ added in v0.2.7
func DecompressUnmarshalVersionedTransaction(val []byte) (*VersionedTransaction, error)
func UnmarshalVersionedTransaction ¶ added in v0.1.14
func UnmarshalVersionedTransaction(val []byte) (*VersionedTransaction, error)
func (*VersionedTransaction) CompressMarshal ¶ added in v0.2.7
func (ver *VersionedTransaction) CompressMarshal() []byte
func (*VersionedTransaction) LockInputs ¶ added in v0.1.14
func (tx *VersionedTransaction) LockInputs(locker UTXOLocker, fork bool) error
func (*VersionedTransaction) Marshal ¶ added in v0.1.14
func (ver *VersionedTransaction) Marshal() []byte
func (*VersionedTransaction) PayloadHash ¶ added in v0.1.14
func (ver *VersionedTransaction) PayloadHash() crypto.Hash
func (*VersionedTransaction) PayloadMarshal ¶ added in v0.1.14
func (ver *VersionedTransaction) PayloadMarshal() []byte
func (*VersionedTransaction) UnspentOutputs ¶ added in v0.1.14
func (tx *VersionedTransaction) UnspentOutputs() []*UTXO
func (*VersionedTransaction) Validate ¶ added in v0.1.14
func (ver *VersionedTransaction) Validate(store DataStore) error
Click to show internal directories.
Click to hide internal directories.