Skip to content
Snippets Groups Projects
  • Hans Moog's avatar
    24fbbae4
    ValueTangle implementation (#320) · 24fbbae4
    Hans Moog authored
    * Feat: refactored message + started to add tests
    
    * Refactor: go mod tidy
    
    * Refactor: continued to refactor message
    
    * Feat: updated to last hive.go + added Signature() methid
    
    * Feat: go mod tidy
    
    * Feat: added mutex to the signature write in Bytes()
    
    * Fix: fixed Signature method
    
    * Feat: refactored message methods
    
    * Feat: refactored output
    
    * Fix: fixed signature mismatch in tangle factory methods
    
    * Refactor: go mod tidy
    
    * Feat: added solditification logic to value tangle
    
    * Feat: fixed some code related to objectstorage factories
    ValueTangle implementation (#320)
    Hans Moog authored
    * Feat: refactored message + started to add tests
    
    * Refactor: go mod tidy
    
    * Refactor: continued to refactor message
    
    * Feat: updated to last hive.go + added Signature() methid
    
    * Feat: go mod tidy
    
    * Feat: added mutex to the signature write in Bytes()
    
    * Fix: fixed Signature method
    
    * Feat: refactored message methods
    
    * Feat: refactored output
    
    * Fix: fixed signature mismatch in tangle factory methods
    
    * Refactor: go mod tidy
    
    * Feat: added solditification logic to value tangle
    
    * Feat: fixed some code related to objectstorage factories
storageprefix.go 679 B
package storageprefix

var (
	MainNet = []byte{0}

	Layer0Message         = []byte{1}
	Layer0MessageMetadata = []byte{2}
	Layer0Approvers       = []byte{3}
	Layer0MissingMessage  = []byte{4}

	ValueTransferPayload         = []byte{5}
	ValueTransferPayloadMetadata = []byte{6}
	ValueTransferApprover        = []byte{7}
	ValueTransferMissingPayload  = []byte{8}
	ValueTransferAttachment      = []byte{9}
	ValueTransferConsumer        = []byte{10}
	ValueTangleOutputs           = []byte{11}

	LedgerStateTransferOutput        = []byte{12}
	LedgerStateTransferOutputBooking = []byte{13}
	LedgerStateReality               = []byte{14}
	LedgerStateConflictSet           = []byte{15}
)