Documentation ¶
Index ¶
- Constants
- Variables
- func IsSpfHardfork(height BlockHeight) bool
- func IsSpfPoolHistoryHardfork(height BlockHeight) bool
- func RuneToString(r rune) string
- func SiafundDiv(height BlockHeight) int64
- func SiafundMul(height BlockHeight) int64
- func SiafundPortion(height BlockHeight) *big.Rat
- type Block
- func (b Block) CalculateMinerFees() Currency
- func (b Block) CalculateSubsidies(height BlockHeight) (Currency, Currency)
- func (b Block) CalculateSubsidy(height BlockHeight) Currency
- func (b Block) Header() BlockHeader
- func (b Block) ID() BlockID
- func (b Block) MarshalSia(w io.Writer) error
- func (b Block) MerkleRoot() crypto.Hash
- func (b Block) MinerPayoutID(i uint64) SiacoinOutputID
- func (b *Block) UnmarshalSia(r io.Reader) error
- type BlockHeader
- type BlockHeight
- type BlockID
- type BlockNonce
- type Clock
- type CoveredFields
- type Currency
- func CalculateCoinbase(height BlockHeight) Currency
- func CalculateDevSubsidy(height BlockHeight) Currency
- func CalculateNumSiacoins(height BlockHeight) (totalCoins Currency)
- func MaxCurrency(c0, c1 Currency) Currency
- func MinCurrency(c0, c1 Currency) Currency
- func NewCurrency(b *big.Int) (c Currency)
- func NewCurrency64(x uint64) (c Currency)
- func NewCurrencyStr(amount string) (Currency, error)
- func PostTax(height BlockHeight, payout Currency) Currency
- func SiafundBLostClaim(sfc SiafundClaim) Currency
- func SiafundCount(height BlockHeight) Currency
- func Tax(height BlockHeight, payout Currency) Currency
- func (x Currency) Add(y Currency) (c Currency)
- func (x Currency) Add64(y uint64) (c Currency)
- func (x Currency) Big() *big.Int
- func (x Currency) Cmp(y Currency) int
- func (x Currency) Cmp64(y uint64) int
- func (x Currency) Div(y Currency) (c Currency)
- func (x Currency) Div64(y uint64) (c Currency)
- func (x Currency) Equals(y Currency) bool
- func (x Currency) Equals64(y uint64) bool
- func (x Currency) Float64() (f64 float64, exact bool)
- func (c Currency) HumanString() string
- func (x Currency) IsZero() bool
- func (c Currency) MarshalJSON() ([]byte, error)
- func (c Currency) MarshalSia(w io.Writer) error
- func (c Currency) MarshalSiaSize() int
- func (x Currency) Mul(y Currency) (c Currency)
- func (x Currency) Mul64(y uint64) (c Currency)
- func (x Currency) MulFloat(y float64) (c Currency)
- func (x Currency) MulRat(y *big.Rat) (c Currency)
- func (x Currency) MulTax(height BlockHeight) (c Currency)
- func (x Currency) RoundDown(y Currency) (c Currency)
- func (c *Currency) Scan(s fmt.ScanState, ch rune) error
- func (x Currency) Sqrt() (c Currency)
- func (c Currency) String() string
- func (x Currency) Sub(y Currency) (c Currency)
- func (x Currency) Sub64(y uint64) (c Currency)
- func (x Currency) Uint64() (u uint64, err error)
- func (c *Currency) UnmarshalJSON(b []byte) error
- func (c *Currency) UnmarshalSia(r io.Reader) error
- type CurrencyType
- type ExtraNonce2
- type FileContract
- func (fc FileContract) MarshalSia(w io.Writer) error
- func (fc FileContract) MarshalSiaSize() (size int)
- func (fc FileContract) MissedHostOutput() SiacoinOutput
- func (fc FileContract) MissedRenterOutput() SiacoinOutput
- func (fc FileContract) MissedVoidOutput() (SiacoinOutput, error)
- func (fc FileContract) SetMissedHostPayout(value Currency)
- func (fc FileContract) SetMissedRenterPayout(value Currency)
- func (fc FileContract) SetMissedVoidPayout(value Currency) error
- func (fc FileContract) SetValidHostPayout(value Currency)
- func (fc FileContract) SetValidRenterPayout(value Currency)
- func (fc FileContract) TotalPayout() (total, valid, missed Currency)
- func (fc *FileContract) UnmarshalSia(r io.Reader) error
- func (fc FileContract) ValidHostOutput() SiacoinOutput
- func (fc FileContract) ValidHostPayout() Currency
- func (fc FileContract) ValidRenterOutput() SiacoinOutput
- func (fc FileContract) ValidRenterPayout() Currency
- type FileContractID
- func (fcid *FileContractID) LoadString(str string) error
- func (fcid FileContractID) MarshalJSON() ([]byte, error)
- func (fcid FileContractID) MarshalText() ([]byte, error)
- func (fcid FileContractID) StorageProofOutputID(proofStatus ProofStatus, i uint64) SiacoinOutputID
- func (fcid FileContractID) String() string
- func (fcid *FileContractID) UnmarshalJSON(b []byte) error
- func (fcid *FileContractID) UnmarshalText(text []byte) error
- type FileContractRevision
- func (fcr FileContractRevision) EAFundRevision(amount Currency) (FileContractRevision, error)
- func (fcr FileContractRevision) EndHeight() BlockHeight
- func (fcr FileContractRevision) ExecuteProgramRevision(revisionNumber uint64, transfer Currency, newRoot crypto.Hash, newSize uint64) (FileContractRevision, error)
- func (fcr FileContractRevision) HostPublicKey() SiaPublicKey
- func (fcr FileContractRevision) ID() FileContractID
- func (fcr FileContractRevision) MarshalSia(w io.Writer) error
- func (fcr FileContractRevision) MarshalSiaSize() (size int)
- func (fcr FileContractRevision) MissedHostOutput() SiacoinOutput
- func (fcr FileContractRevision) MissedHostPayout() Currency
- func (fcr FileContractRevision) MissedRenterOutput() SiacoinOutput
- func (fcr FileContractRevision) MissedRenterPayout() Currency
- func (fcr FileContractRevision) MissedVoidOutput() (SiacoinOutput, error)
- func (fcr FileContractRevision) MissedVoidPayout() (Currency, error)
- func (fcr FileContractRevision) PaymentRevision(amount Currency) (FileContractRevision, error)
- func (fcr FileContractRevision) SetMissedHostPayout(value Currency)
- func (fcr FileContractRevision) SetMissedRenterPayout(value Currency)
- func (fcr FileContractRevision) SetMissedVoidPayout(value Currency) error
- func (fcr FileContractRevision) SetValidHostPayout(value Currency)
- func (fcr FileContractRevision) SetValidRenterPayout(value Currency)
- func (fcr FileContractRevision) ToTransaction() Transaction
- func (fcr FileContractRevision) TotalPayout() (valid, missed Currency)
- func (fcr *FileContractRevision) UnmarshalSia(r io.Reader) error
- func (fcr FileContractRevision) ValidHostOutput() SiacoinOutput
- func (fcr FileContractRevision) ValidHostPayout() Currency
- func (fcr FileContractRevision) ValidRenterOutput() SiacoinOutput
- func (fcr FileContractRevision) ValidRenterPayout() Currency
- type OutputID
- type ProofStatus
- type SectorWithToken
- type SiaPublicKey
- func (x SiaPublicKey) Equals(y SiaPublicKey) bool
- func (spk *SiaPublicKey) LoadString(s string) error
- func (spk SiaPublicKey) MarshalSia(w io.Writer) error
- func (spk SiaPublicKey) String() string
- func (x SiaPublicKey) ToPublicKey() (pk crypto.PublicKey)
- func (spk *SiaPublicKey) UnmarshalJSON(b []byte) error
- func (spk *SiaPublicKey) UnmarshalSia(r io.Reader) error
- type SiacoinInput
- type SiacoinOutput
- type SiacoinOutputID
- type SiafundClaim
- type SiafundInput
- type SiafundOutput
- type SiafundOutputID
- type SiafundState
- type SolanaAddress
- type SolanaTransport
- type SolanaTransportAllowance
- type SolanaTransportRecord
- type SolanaTransportStatus
- type Specifier
- type SpfAmount
- type SpfTransportAllowance
- type SpfTransportType
- type SpfType
- type StdClock
- type StorageProof
- type StratumNotification
- type StratumRequest
- type StratumResponse
- type Target
- func (x Target) AddDifficulties(y Target) (t Target)
- func (x Target) Cmp(y Target) int
- func (x Target) Difficulty() Currency
- func (x Target) Int() *big.Int
- func (x Target) Inverse() *big.Rat
- func (x Target) MulDifficulty(y *big.Rat) (t Target)
- func (x Target) Rat() *big.Rat
- func (x Target) SubtractDifficulties(y Target) (t Target)
- type Timestamp
- type TimestampSlice
- type TokenID
- type Transaction
- func (t Transaction) FileContractID(i uint64) FileContractID
- func (t Transaction) HostSignature() TransactionSignature
- func (t Transaction) ID() TransactionID
- func (t Transaction) MarshalSia(w io.Writer) error
- func (t Transaction) MarshalSiaNoSignatures(w io.Writer)
- func (t Transaction) MarshalSiaSize() (size int)
- func (t Transaction) RenterSignature() TransactionSignature
- func (t Transaction) SiacoinOutputID(i uint64) SiacoinOutputID
- func (t Transaction) SiacoinOutputSum() (sum Currency)
- func (t Transaction) SiafundOutputID(i uint64) SiafundOutputID
- func (t Transaction) SigHash(i int, height BlockHeight) (hash crypto.Hash)
- func (t Transaction) SponsorAddresses() []UnlockHash
- func (t Transaction) StandaloneValid(currentHeight BlockHeight) (err error)
- func (t *Transaction) UnmarshalSia(r io.Reader) error
- type TransactionGraphEdge
- type TransactionID
- type TransactionSignature
- type UnlockConditions
- type UnlockHash
Constants ¶
const ( // Blake256r14InputSize is a size of input of Blake256r14 hash function. Blake256r14InputSize = 180 // Blake256r14NoncePosition is a position of 8 byte nonce in Blake256r14 input, bytes, 0-based. Blake256r14NoncePosition = 140 )
const ( // BlockHeaderSize is the size, in bytes, of a block header. // 32 (ParentID) + 8 (Nonce) + 8 (Timestamp) + 32 (MerkleRoot) BlockHeaderSize = 80 )
const SolanaAddrLen = 32
SolanaAddrLen is the length of Solana public keys.
const SpecifierLen = 16
SpecifierLen is the length in bytes of a Specifier.
const ( // UnlockHashChecksumSize is the size of the checksum used to verify // human-readable addresses. It is not a crypytographically secure // checksum, it's merely intended to prevent typos. 6 is chosen because it // brings the total size of the address to 38 bytes, leaving 2 bytes for // potential version additions in the future. UnlockHashChecksumSize = 6 )
Variables ¶
var ( // ASICHardforkTotalTarget is the initial target after the ASIC hardfork. // The actual target at ASICHardforkHeight is replaced with this value in // order to prevent intolerably slow block times post-fork. ASICHardforkTotalTarget Target // ASICHardforkTotalTime is the initial total time after the ASIC // hardfork. The actual total time at ASICHardforkHeight is replaced with // this value in order to prevent intolerably slow block times post-fork. ASICHardforkTotalTime int64 // ASICHardforkFactor is the factor by which the hashrate of targeted // ASICs will be reduced. ASICHardforkFactor = uint64(1009) // ASICHardforkReplayProtectionPrefix is a byte that prefixes // SiacoinInputs and SiafundInputs when calculating SigHashes to protect // against replay attacks. ASICHardforkReplayProtectionPrefix = []byte{0} // Fork2022 specifies whether to activate the hardfork of Dec 2022. // It includes: // * spending burnt coins from BurnAddressUnlockHash using UnburnAddressUnlockHash // from UnburnStartBlockHeight until UnburnStopBlockHeight // * spending coins from AirdropNebulousLabsUnlockHash using UngiftUnlockHash // * introducing SPF-B and allocating 200,000,000 SPF-B funds Fork2022 = true // SiafundBLostClaimAddress is an address all locked claims of existing SPF-B are sent to. SiafundBLostClaimAddress = UnlockHashFromAddrStr("06f07e27a80b0879a47786405053d969b90d41f1e355cb9b8f2dae2f1c31dd0eac9ee57586bf") // BlockFrequency is the desired number of seconds that // should elapse, on average, between successive Blocks. BlockFrequency BlockHeight // BlockSizeLimit is the maximum size of a binary-encoded Block // that is permitted by the consensus rules. BlockSizeLimit = uint64(2e6) // BlocksPerHour is the number of blocks expected to be mined per hour. BlocksPerHour = BlockHeight(6) // BlocksPerDay is the number of blocks expected to be mined per day. BlocksPerDay = 24 * BlocksPerHour // BlocksPerWeek is the number of blocks expected to be mined per week. BlocksPerWeek = 7 * BlocksPerDay // BlocksPerMonth is the number of blocks expected to be mined per month. BlocksPerMonth = 30 * BlocksPerDay // BlocksPerYear is the number of blocks expected to be mined per year. BlocksPerYear = 365 * BlocksPerDay // BurnAddressBlockHeight is the height at which the dev fund will be burnt // instead of being claimed by the dev fund. Setting this value to 0 will // prevent the dev fund from being burnt at any height. BurnAddressBlockHeight = BlockHeight(105000) // BurnAddressUnlockHash is the unlock hash for where to send coins to burn. BurnAddressUnlockHash = UnlockHashFromAddrStr("000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69") // UnburnAddressUnlockHash is the address used to spend coins from BurnAddressUnlockHash. Activated in Fork2022. UnburnAddressUnlockHash = UnlockHashFromAddrStr("64c682831d977974380ad988787644fd23adeddcc0fe9f155519f5bbb9a8c61273faef5f72c7") // UnburnStartBlockHeight is the height at which unburn address starts working. UnburnStartBlockHeight = Fork2022Height // UnburnStopBlockHeight is the height at which unburn address stops working. UnburnStopBlockHeight = Fork2022Height + BlockHeight(10000) // DevFundEnabled is a boolean that when set to true will enable the ability to // configure a dev fund DevFundEnabled = true // DevFundInitialBlockHeight is the height at which the dev fund became mandatory DevFundInitialBlockHeight = BlockHeight(1) // DevFundDecayStartBlockHeight is the height at which the DevFundInitialPercentage // begins to linearly decay to the DevFundFinalPercentage DevFundDecayStartBlockHeight = BlockHeight(30000) // DevFundDecayEndBlockHeight is the height at which the DevFundInitialPercentage // has fully decayed to the DevFundFinalPercentage DevFundDecayEndBlockHeight = BlockHeight(105000) // DevFundInitialPercentage is the initial percentage of the block reward that is // sent to the DevFundUnlockHash before any dev fund percentage decay happens DevFundInitialPercentage = uint64(20) // DevFundFinalPercentage is the final percentage of the block reward that is sent // to the DevFundUnlockHash after the dev fund percentage is fully decayed DevFundFinalPercentage = uint64(10) // DevFundUnlockHash is the unlock hash for the dev fund subsidy // Do not set this to the Zero address as doing so will cause the test that // verifies that a dev fee is set to fail DevFundUnlockHash = UnlockHashFromAddrStr("aefe0af2713c112ba4d10dee7753726e5c4de3f237ea455151342615c95d0e797d7a8cce7b05") // EndOfTime is value to be used when a date in the future is needed for // validation EndOfTime = time.Unix(0, math.MaxInt64) // ExtremeFutureThreshold is a temporal limit beyond which Blocks are // discarded by the consensus rules. When incoming Blocks are processed, their // Timestamp is allowed to exceed the processor's current time by a small amount. // But if the Timestamp is further into the future than ExtremeFutureThreshold, // the Block is immediately discarded. ExtremeFutureThreshold Timestamp // FutureThreshold is a temporal limit beyond which Blocks are // discarded by the consensus rules. When incoming Blocks are processed, their // Timestamp is allowed to exceed the processor's current time by no more than // FutureThreshold. If the excess duration is larger than FutureThreshold, but // smaller than ExtremeFutureThreshold, the Block may be held in memory until // the Block's Timestamp exceeds the current time by less than FutureThreshold. FutureThreshold Timestamp // GenesisBlock is the first block of the block chain GenesisBlock Block // GenesisID is used in many places. Calculating it once saves lots of // redundant computation. GenesisID BlockID // GenesisAirdropAllocation is the output creating the initial coins allocated // for the airdrop at network launch GenesisAirdropAllocation []SiacoinOutput // GenesisSiacoinAllocation is the set of SiacoinOutputs created in the Genesis // block GenesisSiacoinAllocation []SiacoinOutput // GenesisSiafundAllocation is the set of SiafundOutputs created in the Genesis // block. GenesisSiafundAllocation []SiafundOutput // ForkedGenesisSiafundAllocation is the set of SiafundOutputs created in the Genesis // block. ForkedGenesisSiafundAllocation []SiafundOutput // SiafundHardforkAllocation is allocation of new Siafunds at various hardforks. SiafundHardforkAllocation map[BlockHeight][]SiafundOutput // GenesisTimestamp is the timestamp when genesis block was mined GenesisTimestamp Timestamp // InitialCoinbase is the coinbase reward of the Genesis block. InitialCoinbase = uint64(300e3) // AirdropCommunityValue is the total amount of coins the community members will split // from the genesis block airdrop. AirdropCommunityValue = NewCurrency64(10000000000).Mul(SiacoinPrecision) // AirdropPoolValue is the total amount of coins the pools get // airdrop so that they can pay out miners in the first 144 blocks AirdropPoolValue = NewCurrency64(51840000).Mul(SiacoinPrecision) // AirdropNebulousLabsValue is a gift to the NebulousLabs Team to acknowledge all their // effort and hard work. THANK YOU! AirdropNebulousLabsValue = NewCurrency64(300000000).Mul(SiacoinPrecision) // AirdropNebulousLabsUnlockHash is the address of NebulousLabs Team gift. AirdropNebulousLabsUnlockHash = UnlockHashFromAddrStr("7d0c44f7664e2d34e53efde0661a6f628ec9264785ae8e3cd7c973e8d190c3c97b5e3ecbc567") // UngiftUnlockHash is the address used to spend coins from AirdropNebulousLabsUnlockHash. Activated in Fork2022. UngiftUnlockHash = UnlockHashFromAddrStr("23e3564f335bf2aad01f8b06363547392db54f375025f402a604c60c7a9879d1f8186bcd1e88") // UngiftStartBlockHeight is the height at which ungift address starts working. UngiftStartBlockHeight = Fork2022Height // Ungift2UnlockHash is the address used to spend coins from AirdropNebulousLabsUnlockHash. Activated on ASICHardforkHeight. Ungift2UnlockHash = UnlockHashFromAddrStr("015ccfcefcd9700ac7e118929590f9e66efb7bc2c473c560889aa197bec45efe429917a941d2") // Ungift2StartBlockHeight is the height at which ungift2 address starts working. Ungift2StartBlockHeight = ASICHardforkHeight // AirdropSiaPrimeValue is the total amount of coins ScPrime gets to help bootstrap // expenses AirdropSiaPrimeValue = NewCurrency64(200000000).Mul(SiacoinPrecision) // MaturityDelay specifies the number of blocks that a maturity-required output // is required to be on hold before it can be spent on the blockchain. // Outputs are maturity-required if they are highly likely to be altered or // invalidated in the event of a small reorg. One example is the block reward, // as a small reorg may invalidate the block reward. Another example is a siafund // payout, as a tiny reorg may change the value of the payout, and thus invalidate // any transactions spending the payout. File contract payouts also are subject to // a maturity delay. MaturityDelay BlockHeight // MaxTargetAdjustmentDown restrict how much the block difficulty is allowed to // change in a single step, which is important to limit the effect of difficulty // raising and lowering attacks. MaxTargetAdjustmentDown *big.Rat // MaxTargetAdjustmentUp restrict how much the block difficulty is allowed to // change in a single step, which is important to limit the effect of difficulty // raising and lowering attacks. MaxTargetAdjustmentUp *big.Rat // MedianTimestampWindow tells us how many blocks to look back when calculating // the median timestamp over the previous n blocks. The timestamp of a block is // not allowed to be less than or equal to the median timestamp of the previous n // blocks, where for ScPrime this number is typically 11. MedianTimestampWindow = uint64(11) // MinimumCoinbase is the minimum coinbase reward for a block. // The coinbase decreases in each block after the Genesis block, // but it will not decrease past MinimumCoinbase. MinimumCoinbase uint64 // FixedCoinbase is the fixed coinbase reward for a block. // It starts at Blake256r14HardforkHeight height and continues until FixedCoinbaseEndHeight. // After FixedCoinbaseEndHeight, the reward is switched to 1 hasting per block. FixedCoinbase uint64 // OakDecayDenom is the denominator for how much the total timestamp is decayed // each step. OakDecayDenom int64 // OakDecayNum is the numerator for how much the total timestamp is decayed each // step. OakDecayNum int64 // OakHardforkBlock is the height at which the hardfork to switch to the oak // difficulty adjustment algorithm is triggered. OakHardforkBlock BlockHeight // OakHardforkFixBlock is the height at which the hardfork to switch from the broken // oak difficulty adjustment algorithm to the fixed oak difficulty adjustment // algorithm is triggered. OakHardforkFixBlock BlockHeight // OakHardforkTxnSizeLimit is the maximum size allowed for a transaction, a change // which I believe was implemented simultaneously with the oak hardfork. OakHardforkTxnSizeLimit = uint64(64e3) // 64 KB // OakMaxBlockShift is the maximum number of seconds that the oak algorithm will shift // the difficulty. OakMaxBlockShift int64 // OakMaxDrop is the drop is the maximum amount that the difficulty will drop each block. OakMaxDrop *big.Rat // OakMaxRise is the maximum amount that the difficulty will rise each block. OakMaxRise *big.Rat // RootDepth is the cumulative target of all blocks. The root depth is essentially // the maximum possible target, there have been no blocks yet, so there is no // cumulated difficulty yet. RootDepth = Target{255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255} // RootTarget is the target for the genesis block - basically how much work needs // to be done in order to mine the first block. The difficulty adjustment algorithm // takes over from there. RootTarget Target // SiacoinPrecision is the number of base units in a siacoin. This constant is used // for mining rewards calculation and supported for compatibility with // existing 3rd party intergations. // DEPRECATED: Since February 2020 one scprimecoin equals 10^27 Hastings // Use the types.ScPrimecoinPrecision constant. // // The base unit for Bitcoin is called a satoshi. We call 10^8 satoshis a bitcoin, // even though the code itself only ever works with satoshis. SiacoinPrecision = NewCurrency(new(big.Int).Exp(big.NewInt(10), big.NewInt(24), nil)) // ScPrimecoinPrecision is the number of base units in a scprimecoin that is used // by clients (1 SCP = 10^27 H). ScPrimecoinPrecision = NewCurrency(new(big.Int).Exp(big.NewInt(10), big.NewInt(27), nil)) // OldSiafundCount is the total number of Siafunds in existence before the SPF hardfork. OldSiafundCount = NewCurrency64(10000) // NewSiafundCount is the total number of Siafunds in existence after the SPF hardfork. NewSiafundCount = NewCurrency64(30000) // NewerSiafundCount is the total number of Siafunds in existence after the second SPF hardfork. NewerSiafundCount = NewCurrency64(200000000) // NewestSiafundCount is the total number of Siafunds in existing after the 2022 hardfork. NewestSiafundCount = NewCurrency64(400000000) // FirstSiafundMul is multiplier for percentage of siacoins that is taxed from FileContracts // before the first SPF hardfork. FirstSiafundMul = int64(39) // FirstSiafundDiv is divider for percentage of siacoins that is taxed from FileContracts // before the first SPF hardfork. FirstSiafundDiv = int64(1000) // FirstSiafundPortion is the percentage of siacoins that is taxed from FileContracts before the first SPF hardfork. FirstSiafundPortion = big.NewRat(FirstSiafundMul, FirstSiafundDiv) // SecondSiafundMul is multiplier for percentage of siacoins that is taxed from FileContracts // between the first and the second SPF hardforks. SecondSiafundMul = int64(150) // SecondSiafundDiv is divider for percentage of siacoins that is taxed from FileContracts // between the first and the second SPF hardforks. SecondSiafundDiv = int64(1000) // SecondSiafundPortion is the percentage of siacoins that is taxed from FileContracts between the first and the second SPF hardforks. SecondSiafundPortion = big.NewRat(SecondSiafundMul, SecondSiafundDiv) // ThirdSiafundMul is multiplier for percentage of siacoins that is taxed from FileContracts // after the second SPF hardfork. ThirdSiafundMul = int64(100) // ThirdSiafundDiv is divider for percentage of siacoins that is taxed from FileContracts // after the second SPF hardfork. ThirdSiafundDiv = int64(1000) // ThirdSiafundPortion is the percentage of siacoins that is taxed from FileContracts after the second SPF hardfork. ThirdSiafundPortion = big.NewRat(ThirdSiafundMul, ThirdSiafundDiv) // FourthSiafundMul is multiplier for percentage of siacoins that is taxed from FileContracts // after the 2022 hardfork. FourthSiafundMul = int64(150) // FourthSiafundDiv is divider for percentage of siacoins that is taxed from FileContracts // after the 2022 hardfork. FourthSiafundDiv = int64(1000) // FourthSiafundPortion is the percentage of siacoins that is taxed from FileContracts after the 2022 hardfork. FourthSiafundPortion = big.NewRat(FourthSiafundMul, FourthSiafundDiv) // TargetWindow is the number of blocks to look backwards when determining how much // time has passed vs. how many blocks have been created. It's only used in the old, // broken difficulty adjustment algorithm. TargetWindow BlockHeight // SiafundStates is a list of all SPF states in historical order. SiafundStates = []SiafundState{ {ActivationHeight: BlockHeight(0), TotalSupply: OldSiafundCount, Mul: FirstSiafundMul, Div: FirstSiafundDiv, Portion: *FirstSiafundPortion}, {ActivationHeight: SpfHardforkHeight, TotalSupply: NewSiafundCount, Mul: SecondSiafundMul, Div: SecondSiafundDiv, Portion: *SecondSiafundPortion}, {ActivationHeight: SpfSecondHardforkHeight, TotalSupply: NewerSiafundCount, Mul: ThirdSiafundMul, Div: ThirdSiafundDiv, Portion: *ThirdSiafundPortion}, } )
var ( // TaxHardforkHeight is the height at which the tax hardfork occurred. TaxHardforkHeight = build.Select(build.Var{ Dev: BlockHeight(10), Standard: BlockHeight(21e3), Testing: BlockHeight(10), }).(BlockHeight) // SpfAirdropHeight is the height of SPF airdrop. SpfAirdropHeight = build.Select(build.Var{ Dev: BlockHeight(20), Standard: BlockHeight(7200), Testing: BlockHeight(7200), }).(BlockHeight) // SpfHardforkHeight is the height of SPF hardfork. SpfHardforkHeight = build.Select(build.Var{ Dev: BlockHeight(30), Standard: BlockHeight(54550), Testing: BlockHeight(10000), }).(BlockHeight) // SpfSecondHardforkHeight is the height of second SPF hardfork. SpfSecondHardforkHeight = build.Select(build.Var{ Dev: BlockHeight(40), Standard: BlockHeight(109000), Testing: BlockHeight(20000), }).(BlockHeight) // Fork2022Height is the block height of Fork2022. Fork2022Height = build.Select(build.Var{ Dev: BlockHeight(50), Standard: BlockHeight(222800), Testing: BlockHeight(40000), }).(BlockHeight) // ASICHardforkHeight is the height at which the hardfork targeting // selected ASICs was activated. ASICHardforkHeight = build.Select(build.Var{ Dev: BlockHeight(60), Standard: BlockHeight(238650), Testing: BlockHeight(80000), }).(BlockHeight) // SpfPoolHistoryHardforkHeight is the height at which the hardfork // fixing historical SPF pool values is activated. SpfPoolHistoryHardforkHeight = build.Select(build.Var{ Dev: BlockHeight(70), Standard: BlockHeight(247900), Testing: BlockHeight(100000), }).(BlockHeight) // Blake256r14HardforkHeight is the height at which the hardfork // adding BLAKE256r14 PoW algorithm is activated. Blake256r14HardforkHeight = build.Select(build.Var{ Dev: BlockHeight(80), Standard: BlockHeight(293210), Testing: BlockHeight(110000), }).(BlockHeight) // Blake256r14SoftforkHeight is the height at which the softfork // removing BLAKE2b PoW algorithm is activated. Blake256r14SoftforkHeight = build.Select(build.Var{ Dev: BlockHeight(90), Standard: BlockHeight(308000), Testing: BlockHeight(120000), }).(BlockHeight) // FixedCoinbaseEndHeight is the height at which fixed coinbase stop. FixedCoinbaseEndHeight = build.Select(build.Var{ Dev: BlockHeight(140), Standard: BlockHeight(500000), Testing: BlockHeight(140000), }).(BlockHeight) )
var ( // ErrParseCurrencyAmount is returned when the input is unable to be parsed // into a currency unit due to a malformed amount. ErrParseCurrencyAmount = errors.New("malformed amount") // ErrParseCurrencyInteger is returned when the input is unable to be parsed // into a currency unit due to a non-integer value. ErrParseCurrencyInteger = errors.New("non-integer number of hastings") // ErrParseCurrencyUnits is returned when the input is unable to be parsed // into a currency unit due to missing units. ErrParseCurrencyUnits = errors.New("amount is missing currency units. Currency units are case sensitive") // ErrNegativeCurrency is the error that is returned if performing an // operation results in a negative currency. ErrNegativeCurrency = errors.New("negative currency not allowed") // ErrUint64Overflow is the error that is returned if converting to a // unit64 would cause an overflow. ErrUint64Overflow = errors.New("cannot return the uint64 of this currency - result is an overflow") // ZeroCurrency defines a currency of value zero. ZeroCurrency = NewCurrency64(0) )
var ( // ProofMissed indicates that a StorageProof was missed, which means that // no valid proof was submitted within the proof window. ProofMissed ProofStatus = false // ProofValid indicates that a valid StorageProof was submitted within the // proof window. ProofValid ProofStatus = true // ErrRevisionCostTooHigh indicates that a new revision can't be created // because the cost is higher than the available funds. ErrRevisionCostTooHigh = errors.New("Can't create new revision with this cost. Not enough funds remaining to cover it") // ErrRevisionCollateralTooLow indicates that a new revision can't be created // because the available collateral is too low. ErrRevisionCollateralTooLow = errors.New("Can't create new revision with this collateral. Not enough funds remaining to cover it") // ErrMissingVoidOutput is the error returned when the void output of a // contract or revision is accessed that no longer has one. ErrMissingVoidOutput = errors.New("void output is missing") // ErrRevisionNotIncremented is returned if the revision number wasn't // incremented when creating a new revision. ErrRevisionNotIncremented = errors.New("revision number was not incremented") )
var ( // ErrEntropyKey is the error when a transaction tries to sign an entropy // public key ErrEntropyKey = errors.New("transaction tries to sign an entropy public key") // ErrFrivolousSignature is the error when a transaction contains a frivolous // signature ErrFrivolousSignature = errors.New("transaction contains a frivolous signature") // ErrInvalidPubKeyIndex is the error when a transaction contains a signature // that points to a nonexistent public key ErrInvalidPubKeyIndex = errors.New("transaction contains a signature that points to a nonexistent public key") // ErrInvalidUnlockHashChecksum is the error when the provided unlock hash has // an invalid checksum ErrInvalidUnlockHashChecksum = errors.New("provided unlock hash has an invalid checksum") // ErrMissingSignatures is the error when a transaction has inputs with missing // signatures ErrMissingSignatures = errors.New("transaction has inputs with missing signatures") // ErrPrematureSignature is the error when the timelock on signature has not // expired ErrPrematureSignature = errors.New("timelock on signature has not expired") // ErrPublicKeyOveruse is the error when public key was used multiple times while // signing transaction ErrPublicKeyOveruse = errors.New("public key was used multiple times while signing transaction") // ErrSortedUniqueViolation is the error when a sorted unique violation occurs ErrSortedUniqueViolation = errors.New("sorted unique violation") // ErrUnlockHashWrongLen is the error when a marshalled unlock hash is the wrong // length ErrUnlockHashWrongLen = errors.New("marshalled unlock hash is the wrong length") // ErrWholeTransactionViolation is the error when there's a covered fields violation ErrWholeTransactionViolation = errors.New("covered fields violation") // FullCoveredFields is a covered fileds object where the // 'WholeTransaction' field has been set to true. The primary purpose of // this variable is syntactic sugar. FullCoveredFields = CoveredFields{WholeTransaction: true} // SignatureEd25519 is a specifier for Ed22519 SignatureEd25519 = NewSpecifier("ed25519") // SignatureEntropy is a specifier for entropy SignatureEntropy = NewSpecifier("entropy") )
var ( ErrTransactionIDWrongLen = errors.New("input has wrong length to be an encoded transaction id") SpecifierClaimOutput = NewSpecifier("claim output") SpecifierFileContract = NewSpecifier("file contract") SpecifierFileContractRevision = NewSpecifier("file contract re") SpecifierMinerFee = NewSpecifier("miner fee") SpecifierMinerPayout = NewSpecifier("miner payout") SpecifierSiacoinInput = NewSpecifier("siacoin input") SpecifierSiacoinOutput = NewSpecifier("siacoin output") SpecifierSiafundInput = NewSpecifier("siafund input") SpecifierSiafundBInput = NewSpecifier("siafundb input") SpecifierSiafundOutput = NewSpecifier("siafund output") SpecifierSiafundBOutput = NewSpecifier("siafundb output") SpecifierStorageProofOutput = NewSpecifier("storage proof") SpecifierSiafundB = NewSpecifier("siafund b") )
These Specifiers are used internally when calculating a type's ID. See Specifier for more details.
var ( // ErrDoubleSpend is an error when a transaction uses a parent object // twice ErrDoubleSpend = errors.New("transaction uses a parent object twice") // ErrFileContractOutputSumViolation is an error when a file contract // has invalid output sums ErrFileContractOutputSumViolation = errors.New("file contract has invalid output sums") // ErrFileContractWindowEndViolation is an error when a file contract // window must end at least one block after it starts ErrFileContractWindowEndViolation = errors.New("file contract window must end at least one block after it starts") // ErrFileContractWindowStartViolation is an error when a file contract // window must start in the future ErrFileContractWindowStartViolation = errors.New("file contract window must start in the future") // ErrNonZeroClaimStart is an error when a transaction has a siafund // output with a non-zero siafund claim ErrNonZeroClaimStart = errors.New("transaction has a siafund output with a non-zero siafund claim") // ErrNonZeroRevision is an error when a new file contract has a // nonzero revision number ErrNonZeroRevision = errors.New("new file contract has a nonzero revision number") // ErrStorageProofWithOutputs is an error when a transaction has both // a storage proof and other outputs ErrStorageProofWithOutputs = errors.New("transaction has both a storage proof and other outputs") // ErrTimelockNotSatisfied is an error when a timelock has not been met ErrTimelockNotSatisfied = errors.New("timelock has not been met") // ErrTransactionTooLarge is an error when a transaction is too large // to fit in a block ErrTransactionTooLarge = errors.New("transaction is too large to fit in a block") // ErrZeroMinerFee is an error when a transaction has a zero value miner // fee ErrZeroMinerFee = errors.New("transaction has a zero value miner fee") // ErrZeroOutput is an error when a transaction cannot have an output // or payout that has zero value ErrZeroOutput = errors.New("transaction cannot have an output or payout that has zero value") // ErrZeroRevision is an error when a transaction has a file contract // revision with RevisionNumber=0 ErrZeroRevision = errors.New("transaction has a file contract revision with RevisionNumber=0") // ErrBadOutput is an error when a transaction has output UnlockHash // which is an address which spends coins from another address. ErrBadOutput = errors.New("transaction cannot have an output to a replaced address") // ErrBadInput is an error when a transaction tries to spend from BurnAddressUnlockHash // outside of [UnburnStartBlockHeight, UnburnStopBlockHeight). ErrBadInput = errors.New("transaction spend from burn address at this block height") )
var ( // ErrNegativeTarget is an error when a negative value used when converting // to target ErrNegativeTarget = errors.New("negative value used when converting to target") )
Functions ¶
func IsSpfHardfork ¶ added in v1.5.1
func IsSpfHardfork(height BlockHeight) bool
IsSpfHardfork returns true when one of Spf hardforks happens at given height.
func IsSpfPoolHistoryHardfork ¶ added in v1.8.3
func IsSpfPoolHistoryHardfork(height BlockHeight) bool
IsSpfPoolHistoryHardfork returns true if SPF pool history hardfork needs to happen at this height.
func RuneToString ¶ added in v1.5.0
RuneToString converts a rune type to a string.
func SiafundDiv ¶ added in v1.5.0
func SiafundDiv(height BlockHeight) int64
SiafundDiv returns SPF percentage divider by height.
func SiafundMul ¶ added in v1.5.0
func SiafundMul(height BlockHeight) int64
SiafundMul returns SPF percentage multiplier by height.
func SiafundPortion ¶
func SiafundPortion(height BlockHeight) *big.Rat
SiafundPortion returns SPF percentage by height.
Types ¶
type Block ¶
type Block struct { ParentID BlockID `json:"parentid"` Nonce BlockNonce `json:"nonce"` Timestamp Timestamp `json:"timestamp"` MinerPayouts []SiacoinOutput `json:"minerpayouts"` Transactions []Transaction `json:"transactions"` }
A Block is a summary of changes to the state that have occurred since the previous block. Blocks reference the ID of the previous block (their "parent"), creating the linked-list commonly known as the blockchain. Their primary function is to bundle together transactions on the network. Blocks are created by "miners," who collect transactions from other nodes, and then try to pick a Nonce that results in a block whose BlockID is below a given Target.
func (Block) CalculateMinerFees ¶ added in v1.3.8
CalculateMinerFees calculates the sum of a block's miner transaction fees
func (Block) CalculateSubsidies ¶ added in v1.3.8
func (b Block) CalculateSubsidies(height BlockHeight) (Currency, Currency)
CalculateSubsidies takes a block and a height and determines the block subsidies for miners and the dev fund.
func (Block) CalculateSubsidy ¶ added in v0.3.3
func (b Block) CalculateSubsidy(height BlockHeight) Currency
CalculateSubsidy takes a block and a height and determines the block subsidy.
func (Block) Header ¶ added in v0.3.3
func (b Block) Header() BlockHeader
Header returns the header of a block.
func (Block) ID ¶
ID returns the ID of a Block, which is calculated by hashing the concatenation of the block's parent's ID, nonce, and the result of the b.MerkleRoot(). It is equivalent to calling block.Header().ID()
func (Block) MarshalSia ¶ added in v1.0.0
MarshalSia implements the encoding.SiaMarshaler interface.
func (Block) MerkleRoot ¶
MerkleRoot calculates the Merkle root of a Block. The leaves of the Merkle tree are composed of the miner outputs (one leaf per payout), and the transactions (one leaf per transaction).
func (Block) MinerPayoutID ¶
func (b Block) MinerPayoutID(i uint64) SiacoinOutputID
MinerPayoutID returns the ID of the miner payout at the given index, which is calculated by hashing the concatenation of the BlockID and the payout index.
type BlockHeader ¶ added in v0.3.3
type BlockHeader struct { ParentID BlockID `json:"parentid"` Nonce BlockNonce `json:"nonce"` Timestamp Timestamp `json:"timestamp"` MerkleRoot crypto.Hash `json:"merkleroot"` }
A BlockHeader contains the data that, when hashed, produces the Block's ID.
func (BlockHeader) Blake256r14Input ¶ added in v1.9.0
func (h BlockHeader) Blake256r14Input(input *[Blake256r14InputSize]byte)
Blake256r14Input fills input for BLAKE256r14 hash of block header. Nonce is located at bytes [140, 148) of the input.
func (*BlockHeader) FromBlake256r14Input ¶ added in v1.9.0
func (h *BlockHeader) FromBlake256r14Input(inputPtr *[Blake256r14InputSize]byte) error
FromBlake256r14Input fills the header from a (solved) input of BLAKE256r14.
func (BlockHeader) ID ¶ added in v1.0.0
func (h BlockHeader) ID() BlockID
ID returns the ID of a Block, which is calculated by hashing the header.
func (BlockHeader) IDAndType ¶ added in v1.9.0
func (h BlockHeader) IDAndType() (id BlockID, blake256r14 bool)
IDAndType returns the ID of a Block, which is calculated by hashing the header, and type of hash used: if true, it is blake256r14 hash, otherwise blake2b.
type BlockHeight ¶
type BlockHeight uint64
BlockHeight is the number of blocks that exist after the genesis block.
type BlockID ¶
A BlockID is the hash of a BlockHeader. A BlockID uniquely identifies a Block, and indicates the amount of work performed to mine that Block. The more leading zeros in the BlockID, the more work was performed.
func (*BlockID) LoadString ¶ added in v1.3.3
LoadString loads a BlockID from a string
func (BlockID) MarshalJSON ¶ added in v1.0.0
MarshalJSON marshales a block id as a hex string.
func (*BlockID) UnmarshalJSON ¶ added in v1.0.0
UnmarshalJSON decodes the json hex string of the block id.
type BlockNonce ¶ added in v0.3.3
type BlockNonce [8]byte
The BlockNonce is a "scratch space" that miners can freely alter to produce a BlockID that satisfies a given Target.
type Clock ¶ added in v1.0.0
type Clock interface {
Now() Timestamp
}
Clock allows clients to retrieve the current time.
type CoveredFields ¶
type CoveredFields struct { WholeTransaction bool `json:"wholetransaction"` SiacoinInputs []uint64 `json:"siacoininputs"` SiacoinOutputs []uint64 `json:"siacoinoutputs"` FileContracts []uint64 `json:"filecontracts"` FileContractRevisions []uint64 `json:"filecontractrevisions"` StorageProofs []uint64 `json:"storageproofs"` SiafundInputs []uint64 `json:"siafundinputs"` SiafundOutputs []uint64 `json:"siafundoutputs"` MinerFees []uint64 `json:"minerfees"` ArbitraryData []uint64 `json:"arbitrarydata"` TransactionSignatures []uint64 `json:"transactionsignatures"` }
CoveredFields indicates which fields in a transaction have been covered by the signature. (Note that the signature does not sign the fields themselves, but rather their combined hash; see SigHash.) Each slice corresponds to a slice in the Transaction type, indicating which indices of the slice have been signed. The indices must be valid, i.e. within the bounds of the slice. In addition, they must be sorted and unique.
As a convenience, a signature of the entire transaction can be indicated by the 'WholeTransaction' field. If 'WholeTransaction' == true, all other fields must be empty (except for the Signatures field, since a signature cannot sign itself).
func (CoveredFields) MarshalSia ¶ added in v1.2.0
func (cf CoveredFields) MarshalSia(w io.Writer) error
MarshalSia implements the encoding.SiaMarshaler interface.
func (CoveredFields) MarshalSiaSize ¶ added in v1.3.0
func (cf CoveredFields) MarshalSiaSize() (size int)
MarshalSiaSize returns the encoded size of cf.
func (*CoveredFields) UnmarshalSia ¶ added in v1.3.1
func (cf *CoveredFields) UnmarshalSia(r io.Reader) error
UnmarshalSia implements the encoding.SiaUnmarshaler interface.
type Currency ¶
type Currency struct {
// contains filtered or unexported fields
}
A Currency represents a number of siacoins or siafunds. Internally, a Currency value is unbounded; however, Currency values sent over the wire protocol are subject to a maximum size of 255 bytes (approximately 10^614). Unlike the math/big library, whose methods modify their receiver, all arithmetic Currency methods return a new value. Currency cannot be negative.
func CalculateCoinbase ¶
func CalculateCoinbase(height BlockHeight) Currency
CalculateCoinbase calculates the coinbase for a given height. The coinbase equation is:
coinbase := max(InitialCoinbase - height, MinimumCoinbase) * SiacoinPrecision in [0, Blake256r14HardforkHeight). coinbase := FixedCoinbase * SiacoinPrecision in [Blake256r14HardforkHeight, FixedCoinbaseEndHeight) coinbase := `1 hasting` in [FixedCoinbaseEndHeight, infinity)
func CalculateDevSubsidy ¶ added in v1.3.8
func CalculateDevSubsidy(height BlockHeight) Currency
CalculateDevSubsidy takes a block and a height and determines the block subsidies for the dev fund.
func CalculateNumSiacoins ¶ added in v1.0.0
func CalculateNumSiacoins(height BlockHeight) (totalCoins Currency)
CalculateNumSiacoins calculates the number of siacoins in circulation at a given height.
func MaxCurrency ¶ added in v1.8.5
MaxCurrency is a max function for Currency type.
func MinCurrency ¶ added in v1.8.5
MinCurrency is a min function for Currency type.
func NewCurrency ¶
NewCurrency creates a Currency value from a big.Int. Undefined behavior occurs if a negative input is used.
func NewCurrency64 ¶
NewCurrency64 creates a Currency value from a uint64.
func NewCurrencyStr ¶ added in v1.6.3
NewCurrencyStr creates a Currency value from a supplied string with unit suffix. Valid unit suffixes are: H, pS, nS, uS, mS, SCP, KS, MS, GS, TS, SPF Unit Suffixes are case sensitive.
func PostTax ¶ added in v1.0.0
func PostTax(height BlockHeight, payout Currency) Currency
PostTax returns the amount of currency remaining in a file contract payout after tax.
func SiafundBLostClaim ¶ added in v1.8.3
func SiafundBLostClaim(sfc SiafundClaim) Currency
SiafundBLostClaim returns unclaimed amount for specific SPF-B claim lost due to lack of active contracts.
func SiafundCount ¶
func SiafundCount(height BlockHeight) Currency
SiafundCount returns the total number of Siafunds by height.
func Tax ¶ added in v1.0.0
func Tax(height BlockHeight, payout Currency) Currency
Tax returns the amount of Currency that will be taxed from fc.
func (Currency) Big ¶
Big returns the value of c as a *big.Int. Importantly, it does not provide access to the c's internal big.Int object, only a copy.
func (Currency) Cmp ¶
Cmp compares two Currency values. The return value follows the convention of math/big.
func (Currency) Cmp64 ¶ added in v1.0.4
Cmp64 compares x to a uint64. The return value follows the convention of math/big.
func (Currency) HumanString ¶ added in v1.3.0
HumanString prints the Currency using human readable units. The unit used will be the largest unit that results in a value greater than 1. The value is rounded to 4 significant digits.
func (Currency) MarshalJSON ¶
MarshalJSON implements the json.Marshaler interface.
func (Currency) MarshalSia ¶
MarshalSia implements the encoding.SiaMarshaler interface. It writes the byte-slice representation of the Currency's internal big.Int to w. Note that as the bytes of the big.Int correspond to the absolute value of the integer, there is no way to marshal a negative Currency.
func (Currency) MarshalSiaSize ¶ added in v1.3.0
MarshalSiaSize returns the encoded size of c.
func (Currency) MulFloat ¶
MulFloat returns a new Currency value y = c * x, where x is a float64. Behavior is undefined when x is negative.
func (Currency) MulRat ¶ added in v1.0.0
MulRat returns a new Currency value c = x * y, where y is a big.Rat.
func (Currency) MulTax ¶ added in v1.0.0
func (x Currency) MulTax(height BlockHeight) (c Currency)
MulTax returns a new Currency value c = x * SiafundPortion, depending on block height.
func (*Currency) Scan ¶
Scan implements the fmt.Scanner interface, allowing Currency values to be scanned from text.
func (Currency) Sqrt ¶
Sqrt returns a new Currency value y = sqrt(c). Result is rounded down to the nearest integer.
func (Currency) Sub64 ¶ added in v1.5.0
Sub64 returns a new Currency value c = x - y. Behavior is undefined when x < y.
func (Currency) Uint64 ¶ added in v1.0.0
Uint64 converts a Currency to a uint64. An error is returned because this function is sometimes called on values that can be determined by users - rather than have all user-facing points do input checking, the input checking should happen at the base type. This minimizes the chances of a rogue user causing a build.Critical to be triggered.
func (*Currency) UnmarshalJSON ¶
UnmarshalJSON implements the json.Unmarshaler interface. An error is returned if a negative number is provided.
type CurrencyType ¶ added in v1.9.2
type CurrencyType int
A CurrencyType defines enum for possible currency types.
const ( Scp CurrencyType = iota Spf )
CurrencyType constants.
type ExtraNonce2 ¶ added in v1.3.8
ExtraNonce2 is the nonce modified by the miner
func (*ExtraNonce2) Bytes ¶ added in v1.3.8
func (en *ExtraNonce2) Bytes() (b []byte)
Bytes is a bigendian representation of the extranonce2
func (*ExtraNonce2) Increment ¶ added in v1.3.8
func (en *ExtraNonce2) Increment() (err error)
Increment increases the nonce with 1, an error is returned if the resulting is value is bigger than possible given the size
type FileContract ¶
type FileContract struct { FileSize uint64 `json:"filesize"` FileMerkleRoot crypto.Hash `json:"filemerkleroot"` WindowStart BlockHeight `json:"windowstart"` WindowEnd BlockHeight `json:"windowend"` Payout Currency `json:"payout"` ValidProofOutputs []SiacoinOutput `json:"validproofoutputs"` MissedProofOutputs []SiacoinOutput `json:"missedproofoutputs"` UnlockHash UnlockHash `json:"unlockhash"` RevisionNumber uint64 `json:"revisionnumber"` }
A FileContract is a public record of a storage agreement between a "host" and a "renter." It mandates that a host must submit a storage proof to the network, proving that they still possess the file they have agreed to store.
The party must submit the storage proof in a block that is between 'WindowStart' and 'WindowEnd'. Upon submitting the proof, the outputs for 'ValidProofOutputs' are created. If the party does not submit a storage proof by 'WindowEnd', then the outputs for 'MissedProofOutputs' are created instead. The sum of 'MissedProofOutputs' and the sum of 'ValidProofOutputs' must equal 'Payout' minus the siafund fee. This fee is sent to the siafund pool, which is a set of siacoins only spendable by siafund owners.
Under normal circumstances, the payout will be funded by both the host and the renter, which gives the host incentive not to lose the file. The 'ValidProofUnlockHash' will typically be spendable by host, and the 'MissedProofUnlockHash' will either by spendable by the renter or by nobody (the ZeroUnlockHash).
A contract can be terminated early by submitting a FileContractTermination whose UnlockConditions hash to 'TerminationHash'.
func (FileContract) MarshalSia ¶ added in v1.3.0
func (fc FileContract) MarshalSia(w io.Writer) error
MarshalSia implements the encoding.SiaMarshaler interface.
func (FileContract) MarshalSiaSize ¶ added in v1.3.0
func (fc FileContract) MarshalSiaSize() (size int)
MarshalSiaSize returns the encoded size of fc.
func (FileContract) MissedHostOutput ¶ added in v1.5.0
func (fc FileContract) MissedHostOutput() SiacoinOutput
MissedHostOutput gets the host's missed proof output.
func (FileContract) MissedRenterOutput ¶ added in v1.5.0
func (fc FileContract) MissedRenterOutput() SiacoinOutput
MissedRenterOutput gets the renter's missed proof output.
func (FileContract) MissedVoidOutput ¶ added in v1.5.0
func (fc FileContract) MissedVoidOutput() (SiacoinOutput, error)
MissedVoidOutput gets the void's missed proof output.
func (FileContract) SetMissedHostPayout ¶ added in v1.5.0
func (fc FileContract) SetMissedHostPayout(value Currency)
SetMissedHostPayout sets the value of the host's missed proof output.
func (FileContract) SetMissedRenterPayout ¶ added in v1.5.0
func (fc FileContract) SetMissedRenterPayout(value Currency)
SetMissedRenterPayout sets the value of the renter's missed proof output.
func (FileContract) SetMissedVoidPayout ¶ added in v1.5.0
func (fc FileContract) SetMissedVoidPayout(value Currency) error
SetMissedVoidPayout sets the value of the void's missed proof output.
func (FileContract) SetValidHostPayout ¶ added in v1.5.0
func (fc FileContract) SetValidHostPayout(value Currency)
SetValidHostPayout sets the value of the host's valid proof output.
func (FileContract) SetValidRenterPayout ¶ added in v1.5.0
func (fc FileContract) SetValidRenterPayout(value Currency)
SetValidRenterPayout sets the value of the renter's valid proof output.
func (FileContract) TotalPayout ¶ added in v1.5.0
func (fc FileContract) TotalPayout() (total, valid, missed Currency)
TotalPayout returns the sum of each the valid and missed payouts plus the payout field of the contract.
func (*FileContract) UnmarshalSia ¶ added in v1.3.1
func (fc *FileContract) UnmarshalSia(r io.Reader) error
UnmarshalSia implements the encoding.SiaUnmarshaler interface.
func (FileContract) ValidHostOutput ¶ added in v1.5.0
func (fc FileContract) ValidHostOutput() SiacoinOutput
ValidHostOutput sets gets host's missed proof output.
func (FileContract) ValidHostPayout ¶ added in v1.5.0
func (fc FileContract) ValidHostPayout() Currency
ValidHostPayout gets the value of the host's valid proof output.
func (FileContract) ValidRenterOutput ¶ added in v1.5.0
func (fc FileContract) ValidRenterOutput() SiacoinOutput
ValidRenterOutput gets the renter's valid proof output.
func (FileContract) ValidRenterPayout ¶ added in v1.5.0
func (fc FileContract) ValidRenterPayout() Currency
ValidRenterPayout gets the value of the renter's valid proof output.
type FileContractID ¶
FileContractID uniquely identifies a file contract
func (*FileContractID) LoadString ¶ added in v1.3.4
func (fcid *FileContractID) LoadString(str string) error
LoadString loads a FileContractID from a string
func (FileContractID) MarshalJSON ¶ added in v1.0.0
func (fcid FileContractID) MarshalJSON() ([]byte, error)
MarshalJSON marshals an id as a hex string.
func (FileContractID) MarshalText ¶ added in v1.6.2
func (fcid FileContractID) MarshalText() ([]byte, error)
MarshalText marshals an id as a hex string.
func (FileContractID) StorageProofOutputID ¶
func (fcid FileContractID) StorageProofOutputID(proofStatus ProofStatus, i uint64) SiacoinOutputID
StorageProofOutputID returns the ID of an output created by a file contract, given the status of the storage proof. The ID is calculating by hashing the concatenation of the StorageProofOutput Specifier, the ID of the file contract that the proof is for, a boolean indicating whether the proof was valid (true) or missed (false), and the index of the output within the file contract.
func (FileContractID) String ¶ added in v1.0.0
func (fcid FileContractID) String() string
String prints the id in hex.
func (*FileContractID) UnmarshalJSON ¶ added in v1.0.0
func (fcid *FileContractID) UnmarshalJSON(b []byte) error
UnmarshalJSON decodes the json hex string of the id.
func (*FileContractID) UnmarshalText ¶ added in v1.6.2
func (fcid *FileContractID) UnmarshalText(text []byte) error
UnmarshalText decodes the hex string of the id.
type FileContractRevision ¶
type FileContractRevision struct { ParentID FileContractID `json:"parentid"` UnlockConditions UnlockConditions `json:"unlockconditions"` NewRevisionNumber uint64 `json:"newrevisionnumber"` NewFileSize uint64 `json:"newfilesize"` NewFileMerkleRoot crypto.Hash `json:"newfilemerkleroot"` NewWindowStart BlockHeight `json:"newwindowstart"` NewWindowEnd BlockHeight `json:"newwindowend"` NewValidProofOutputs []SiacoinOutput `json:"newvalidproofoutputs"` NewMissedProofOutputs []SiacoinOutput `json:"newmissedproofoutputs"` NewUnlockHash UnlockHash `json:"newunlockhash"` }
A FileContractRevision revises an existing file contract. The ParentID points to the file contract that is being revised. The UnlockConditions are the conditions under which the revision is valid, and must match the UnlockHash of the parent file contract. The Payout of the file contract cannot be changed, but all other fields are allowed to be changed. The sum of the outputs must match the original payout (taking into account the fee for the proof payouts.) A revision number is included. When getting accepted, the revision number of the revision must be higher than any previously seen revision number for that file contract.
FileContractRevisions enable trust-free modifications to existing file contracts.
func (FileContractRevision) EAFundRevision ¶ added in v1.5.0
func (fcr FileContractRevision) EAFundRevision(amount Currency) (FileContractRevision, error)
EAFundRevision returns a copy of the revision with incremented revision number where the given amount has moved from renter to the host. This is similar to PaymentRevision but instead of moving the missed renter payout to the void it is moved to the host. That's because the money used to fund an EA should always go to the host. A contract might only be used for downloading/uploading so the merkle root might never change. Which means a storage proof can't be submitted by the host. Once the contract is used for uploading using the MDM, a separate revision will be created to move the money from the missed host output to the void.
func (FileContractRevision) EndHeight ¶ added in v1.4.0
func (fcr FileContractRevision) EndHeight() BlockHeight
EndHeight returns the height at which the host is no longer obligated to store the contract data.
func (FileContractRevision) ExecuteProgramRevision ¶ added in v1.5.0
func (fcr FileContractRevision) ExecuteProgramRevision(revisionNumber uint64, transfer Currency, newRoot crypto.Hash, newSize uint64) (FileContractRevision, error)
ExecuteProgramRevision creates a new ExecuteProgramRevision based off of an existing revision. Since the MDM program is already paid for using EAs and EA funded money is moved to the host's valid and missed output but not the void, this revision moves a certain amount of that money from the missed host output to the void for collateral and per-block storage cost in case the host can't provide a storage proof.
func (FileContractRevision) HostPublicKey ¶ added in v1.4.0
func (fcr FileContractRevision) HostPublicKey() SiaPublicKey
HostPublicKey returns the public key of the contract's host. This method will panic if called on an incomplete revision.
func (FileContractRevision) ID ¶ added in v1.4.0
func (fcr FileContractRevision) ID() FileContractID
ID returns the contract's ID.
func (FileContractRevision) MarshalSia ¶ added in v1.3.0
func (fcr FileContractRevision) MarshalSia(w io.Writer) error
MarshalSia implements the encoding.SiaMarshaler interface.
func (FileContractRevision) MarshalSiaSize ¶ added in v1.3.0
func (fcr FileContractRevision) MarshalSiaSize() (size int)
MarshalSiaSize returns the encoded size of fcr.
func (FileContractRevision) MissedHostOutput ¶ added in v1.5.0
func (fcr FileContractRevision) MissedHostOutput() SiacoinOutput
MissedHostOutput gets the host's missed proof output.
func (FileContractRevision) MissedHostPayout ¶ added in v1.5.0
func (fcr FileContractRevision) MissedHostPayout() Currency
MissedHostPayout gets the value of the host's missed proof output.
func (FileContractRevision) MissedRenterOutput ¶ added in v1.5.0
func (fcr FileContractRevision) MissedRenterOutput() SiacoinOutput
MissedRenterOutput gets the renter's missed proof output.
func (FileContractRevision) MissedRenterPayout ¶ added in v1.5.0
func (fcr FileContractRevision) MissedRenterPayout() Currency
MissedRenterPayout gets the value of the renter's missed proof output.
func (FileContractRevision) MissedVoidOutput ¶ added in v1.5.0
func (fcr FileContractRevision) MissedVoidOutput() (SiacoinOutput, error)
MissedVoidOutput gets the void's missed proof output.
func (FileContractRevision) MissedVoidPayout ¶ added in v1.5.0
func (fcr FileContractRevision) MissedVoidPayout() (Currency, error)
MissedVoidPayout gets the void's missed proof output's value.
func (FileContractRevision) PaymentRevision ¶ added in v1.5.0
func (fcr FileContractRevision) PaymentRevision(amount Currency) (FileContractRevision, error)
PaymentRevision returns a copy of the revision with incremented revision number where the given amount has moved from the renter to the host (for valid outputs) and from renter to the void (for missed outputs).
func (FileContractRevision) SetMissedHostPayout ¶ added in v1.5.0
func (fcr FileContractRevision) SetMissedHostPayout(value Currency)
SetMissedHostPayout sets the host's missed proof output.
func (FileContractRevision) SetMissedRenterPayout ¶ added in v1.5.0
func (fcr FileContractRevision) SetMissedRenterPayout(value Currency)
SetMissedRenterPayout sets the renter's missed proof output.
func (FileContractRevision) SetMissedVoidPayout ¶ added in v1.5.0
func (fcr FileContractRevision) SetMissedVoidPayout(value Currency) error
SetMissedVoidPayout sets the void's missed proof output.
func (FileContractRevision) SetValidHostPayout ¶ added in v1.5.0
func (fcr FileContractRevision) SetValidHostPayout(value Currency)
SetValidHostPayout sets the host's valid proof output.
func (FileContractRevision) SetValidRenterPayout ¶ added in v1.5.0
func (fcr FileContractRevision) SetValidRenterPayout(value Currency)
SetValidRenterPayout sets the renter's valid proof output.
func (FileContractRevision) ToTransaction ¶ added in v1.5.0
func (fcr FileContractRevision) ToTransaction() Transaction
ToTransaction wraps the revision in a Transaction. Note that the PublicKeyIndex is hardcoded at 0 as the renter key is always first, see formContract
func (FileContractRevision) TotalPayout ¶ added in v1.5.0
func (fcr FileContractRevision) TotalPayout() (valid, missed Currency)
TotalPayout returns the sum of each the valid and missed payouts.
func (*FileContractRevision) UnmarshalSia ¶ added in v1.3.1
func (fcr *FileContractRevision) UnmarshalSia(r io.Reader) error
UnmarshalSia implements the encoding.SiaUnmarshaler interface.
func (FileContractRevision) ValidHostOutput ¶ added in v1.5.0
func (fcr FileContractRevision) ValidHostOutput() SiacoinOutput
ValidHostOutput sets gets host's missed proof output.
func (FileContractRevision) ValidHostPayout ¶ added in v1.5.0
func (fcr FileContractRevision) ValidHostPayout() Currency
ValidHostPayout gets the value of the host's valid proof output.
func (FileContractRevision) ValidRenterOutput ¶ added in v1.5.0
func (fcr FileContractRevision) ValidRenterOutput() SiacoinOutput
ValidRenterOutput gets the renter's valid proof output.
func (FileContractRevision) ValidRenterPayout ¶ added in v1.5.0
func (fcr FileContractRevision) ValidRenterPayout() Currency
ValidRenterPayout gets the value of the renter's valid proof output.
type OutputID ¶ added in v1.0.0
OutputID uniquely identifies an output
func (OutputID) MarshalJSON ¶ added in v1.0.0
MarshalJSON marshals an id as a hex string.
func (*OutputID) UnmarshalJSON ¶ added in v1.0.0
UnmarshalJSON decodes the json hex string of the id.
type ProofStatus ¶ added in v0.3.3
type ProofStatus bool
ProofStatus indicates whether a StorageProof was valid (true) or missed (false).
type SectorWithToken ¶ added in v1.6.0
SectorWithToken is a combination of sector ID and a token.
type SiaPublicKey ¶
A SiaPublicKey is a public key prefixed by a Specifier. The Specifier indicates the algorithm used for signing and verification. Unrecognized algorithms will always verify, which allows new algorithms to be added to the protocol via a soft-fork.
func Ed25519PublicKey ¶ added in v1.2.0
func Ed25519PublicKey(pk crypto.PublicKey) SiaPublicKey
Ed25519PublicKey returns pk as a SiaPublicKey, denoting its algorithm as Ed25519.
func (SiaPublicKey) Equals ¶ added in v1.5.0
func (x SiaPublicKey) Equals(y SiaPublicKey) bool
Equals compares two SiaPublicKey types for equality
func (*SiaPublicKey) LoadString ¶ added in v1.1.1
func (spk *SiaPublicKey) LoadString(s string) error
LoadString is the inverse of SiaPublicKey.String().
func (SiaPublicKey) MarshalSia ¶ added in v1.2.0
func (spk SiaPublicKey) MarshalSia(w io.Writer) error
MarshalSia implements the encoding.SiaMarshaler interface.
func (SiaPublicKey) String ¶ added in v1.0.3
func (spk SiaPublicKey) String() string
String defines how to print a SiaPublicKey - hex is used to keep things compact during logging. The key type prefix and lack of a checksum help to separate it from a sia address.
func (SiaPublicKey) ToPublicKey ¶ added in v1.5.0
func (x SiaPublicKey) ToPublicKey() (pk crypto.PublicKey)
ToPublicKey converts the SiaPublicKey into a crypto.PublicKey
func (*SiaPublicKey) UnmarshalJSON ¶ added in v1.3.5
func (spk *SiaPublicKey) UnmarshalJSON(b []byte) error
UnmarshalJSON unmarshals a SiaPublicKey as JSON.
func (*SiaPublicKey) UnmarshalSia ¶ added in v1.3.1
func (spk *SiaPublicKey) UnmarshalSia(r io.Reader) error
UnmarshalSia implements the encoding.SiaUnmarshaler interface.
type SiacoinInput ¶
type SiacoinInput struct { ParentID SiacoinOutputID `json:"parentid"` UnlockConditions UnlockConditions `json:"unlockconditions"` }
A SiacoinInput consumes a SiacoinOutput and adds the siacoins to the set of siacoins that can be spent in the transaction. The ParentID points to the output that is getting consumed, and the UnlockConditions contain the rules for spending the output. The UnlockConditions must match the UnlockHash of the output.
func (SiacoinInput) MarshalSia ¶ added in v1.2.0
func (sci SiacoinInput) MarshalSia(w io.Writer) error
MarshalSia implements the encoding.SiaMarshaler interface.
func (*SiacoinInput) UnmarshalSia ¶ added in v1.3.1
func (sci *SiacoinInput) UnmarshalSia(r io.Reader) error
UnmarshalSia implements the encoding.SiaUnmarshaler interface.
type SiacoinOutput ¶
type SiacoinOutput struct { Value Currency `json:"value"` UnlockHash UnlockHash `json:"unlockhash"` }
A SiacoinOutput holds a volume of siacoins. Outputs must be spent atomically; that is, they must all be spent in the same transaction. The UnlockHash is the hash of the UnlockConditions that must be fulfilled in order to spend the output.
func (SiacoinOutput) MarshalSia ¶ added in v1.2.0
func (sco SiacoinOutput) MarshalSia(w io.Writer) error
MarshalSia implements the encoding.SiaMarshaler interface.
func (*SiacoinOutput) UnmarshalSia ¶ added in v1.3.1
func (sco *SiacoinOutput) UnmarshalSia(r io.Reader) error
UnmarshalSia implements the encoding.SiaUnmarshaler interface.
type SiacoinOutputID ¶
SiacoinOutputID uniquely identifies a siacoin output
func (SiacoinOutputID) MarshalJSON ¶ added in v1.0.0
func (scoid SiacoinOutputID) MarshalJSON() ([]byte, error)
MarshalJSON marshals an id as a hex string.
func (SiacoinOutputID) String ¶ added in v1.0.0
func (scoid SiacoinOutputID) String() string
String prints the id in hex.
func (*SiacoinOutputID) UnmarshalJSON ¶ added in v1.0.0
func (scoid *SiacoinOutputID) UnmarshalJSON(b []byte) error
UnmarshalJSON decodes the json hex string of the id.
type SiafundClaim ¶ added in v1.7.0
SiafundClaim describes claim earned by SiafundOutput. `Total` field is cumulative, `ByOwner` is how much goes to SiafundInput's ClaimUnlockHash. For SPF-A, it's always the same thing, for SPF-B the difference goes to DevFund address.
func (*SiafundClaim) Add ¶ added in v1.7.0
func (sfc *SiafundClaim) Add(sfc2 SiafundClaim)
Add adds sfc2 to sfc.
func (*SiafundClaim) MulCurrency ¶ added in v1.7.0
func (sfc *SiafundClaim) MulCurrency(c Currency)
MulCurrency multiplies sfc by c.
type SiafundInput ¶
type SiafundInput struct { ParentID SiafundOutputID `json:"parentid"` UnlockConditions UnlockConditions `json:"unlockconditions"` ClaimUnlockHash UnlockHash `json:"claimunlockhash"` }
A SiafundInput consumes a SiafundOutput and adds the siafunds to the set of siafunds that can be spent in the transaction. The ParentID points to the output that is getting consumed, and the UnlockConditions contain the rules for spending the output. The UnlockConditions must match the UnlockHash of the output.
func (SiafundInput) MarshalSia ¶ added in v1.2.0
func (sfi SiafundInput) MarshalSia(w io.Writer) error
MarshalSia implements the encoding.SiaMarshaler interface.
func (*SiafundInput) UnmarshalSia ¶ added in v1.3.1
func (sfi *SiafundInput) UnmarshalSia(r io.Reader) error
UnmarshalSia implements the encoding.SiaUnmarshaler interface.
type SiafundOutput ¶
type SiafundOutput struct { Value Currency `json:"value"` UnlockHash UnlockHash `json:"unlockhash"` ClaimStart Currency `json:"claimstart"` }
A SiafundOutput holds a volume of siafunds. Outputs must be spent atomically; that is, they must all be spent in the same transaction. The UnlockHash is the hash of a set of UnlockConditions that must be fulfilled in order to spend the output.
When the SiafundOutput is spent, a SiacoinOutput is created, where:
SiacoinOutput.Value := (SiafundPool - ClaimStart) / 10,000 * Value SiacoinOutput.UnlockHash := SiafundInput.ClaimUnlockHash
When a SiafundOutput is put into a transaction, the ClaimStart must always equal zero. While the transaction is being processed, the ClaimStart is set to the value of the SiafundPool.
func (SiafundOutput) MarshalSia ¶ added in v1.2.0
func (sfo SiafundOutput) MarshalSia(w io.Writer) error
MarshalSia implements the encoding.SiaMarshaler interface.
func (*SiafundOutput) UnmarshalSia ¶ added in v1.3.1
func (sfo *SiafundOutput) UnmarshalSia(r io.Reader) error
UnmarshalSia implements the encoding.SiaUnmarshaler interface.
type SiafundOutputID ¶
SiafundOutputID uniquely identifies a siafund output
func (SiafundOutputID) MarshalJSON ¶ added in v1.0.0
func (sfoid SiafundOutputID) MarshalJSON() ([]byte, error)
MarshalJSON marshals an id as a hex string.
func (SiafundOutputID) SiaClaimOutputID ¶
func (id SiafundOutputID) SiaClaimOutputID() SiacoinOutputID
SiaClaimOutputID returns the ID of the SiacoinOutput that is created when the siafund output is spent. The ID is the hash the SiafundOutputID.
func (SiafundOutputID) SiaClaimSecondOutputID ¶ added in v1.7.0
func (id SiafundOutputID) SiaClaimSecondOutputID() SiacoinOutputID
SiaClaimSecondOutputID returns the ID of the second SiacoinOutput that is created for SPF-B when it is spent.
func (SiafundOutputID) String ¶ added in v1.0.0
func (sfoid SiafundOutputID) String() string
String prints the id in hex.
func (*SiafundOutputID) UnmarshalJSON ¶ added in v1.0.0
func (sfoid *SiafundOutputID) UnmarshalJSON(b []byte) error
UnmarshalJSON decodes the json hex string of the id.
type SiafundState ¶ added in v1.7.0
type SiafundState struct { ActivationHeight BlockHeight TotalSupply Currency Mul int64 Div int64 Portion big.Rat }
SiafundState describes total amount of SPF and tax percentage.
func SiafundStateByHeight ¶ added in v1.7.0
func SiafundStateByHeight(height BlockHeight) SiafundState
SiafundStateByHeight returns SPF state by block height.
type SolanaAddress ¶ added in v1.8.5
type SolanaAddress [SolanaAddrLen]byte
SolanaAddress represents address on Solana blockchain (public key).
type SolanaTransport ¶ added in v1.9.2
type SolanaTransport struct { BurnID TransactionID `json:"burn_id"` SolanaTransportRecord }
SolanaTransport is SolanaTransportRecord with its ID.
type SolanaTransportAllowance ¶ added in v1.9.2
type SolanaTransportAllowance struct { MaxAllowed Currency `json:"max_allowed"` // min(PotentialMax, WalletBalance) WaitTime time.Duration `json:"wait_time"` PotentialMax Currency `json:"potential_max"` // Max allowed on transporter side. }
SolanaTransportAllowance contains information about coin amounts allowed to transport + wait estimates for these to complete.
type SolanaTransportRecord ¶ added in v1.9.2
type SolanaTransportRecord struct { Status SolanaTransportStatus `json:"status"` Amount Currency `json:"currency"` Created Timestamp `json:"created"` }
SolanaTransportRecord represents single SCP->Solana transport.
type SolanaTransportStatus ¶ added in v1.9.2
type SolanaTransportStatus int
SolanaTransportStatus introduces enum for SCP->Solana transport states.
const ( BurnCreated SolanaTransportStatus = iota BurnBroadcasted SubmittedToTransporter InTheQueue Completed )
SolanaTransportStatus constants.
func (SolanaTransportStatus) String ¶ added in v1.9.2
func (sts SolanaTransportStatus) String() string
String method converts SolanaTransportStatus to string.
type Specifier ¶
type Specifier [SpecifierLen]byte
A Specifier is a fixed-length byte-array that serves two purposes. In the wire protocol, they are used to identify a particular encoding algorithm, signature algorithm, etc. This allows nodes to communicate on their own terms; for example, to reduce bandwidth costs, a node might only accept compressed messages.
Internally, Specifiers are used to guarantee unique IDs. Various consensus types have an associated ID, calculated by hashing the data contained in the type. By prepending the data with Specifier, we can guarantee that distinct types will never produce the same hash.
func NewSpecifier ¶ added in v1.5.0
NewSpecifier returns a specifier for given name, a specifier can only be 16 bytes so we panic if the given name is too long.
func (Specifier) MarshalJSON ¶ added in v1.0.0
MarshalJSON marshals a specifier as a string.
func (Specifier) MarshalText ¶ added in v1.5.0
MarshalText implements the TextMarshaler interface
func (Specifier) String ¶ added in v1.0.0
String returns the specifier as a string, trimming any trailing zeros.
func (*Specifier) UnmarshalJSON ¶ added in v1.0.0
UnmarshalJSON decodes the json string of the specifier.
func (*Specifier) UnmarshalText ¶ added in v1.5.0
UnmarshalText implements the TextUnmarshaler interface
type SpfTransportAllowance ¶ added in v1.8.5
type SpfTransportAllowance struct { Regular SolanaTransportAllowance `json:"regular"` Premined map[string]SolanaTransportAllowance `json:"premined"` Airdrop *SolanaTransportAllowance `json:"airdrop,omitempty"` }
SpfTransportAllowance contains allowance for all types.
func (*SpfTransportAllowance) ApplyTo ¶ added in v1.8.5
func (spfAllowance *SpfTransportAllowance) ApplyTo(spf SpfAmount, t SpfTransportType, preminedUh *UnlockHash) error
ApplyTo validates SPF amount against allowance.
type SpfTransportType ¶ added in v1.8.5
type SpfTransportType int
SpfTransportType introduces enum for SPF transport types.
const ( Airdrop SpfTransportType = iota Premined Regular )
SpfTransportType constants.
type SpfType ¶ added in v1.8.5
type SpfType int
SpfType enum (A or B).
func SpfTypeFromString ¶ added in v1.8.5
SpfTypeFromString creates SpfType from string.
type StdClock ¶ added in v1.0.0
type StdClock struct{}
StdClock is an implementation of Clock that retrieves the current time using the system time.
type StorageProof ¶
type StorageProof struct { ParentID FileContractID `json:"parentid"` Segment [crypto.SegmentSize]byte `json:"segment"` HashSet []crypto.Hash `json:"hashset"` }
A StorageProof fulfills a FileContract. The proof contains a specific segment of the file, along with a set of hashes from the file's Merkle tree. In combination, these can be used to prove that the segment came from the file. To prevent abuse, the segment must be chosen randomly, so the ID of block 'WindowStart' - 1 is used as a seed value; see StorageProofSegment for the exact implementation.
A transaction with a StorageProof cannot have any SiacoinOutputs, SiafundOutputs, or FileContracts. This is because a mundane reorg can invalidate the proof, and with it the rest of the transaction.
func (*StorageProof) MarshalSia ¶ added in v1.3.0
func (sp *StorageProof) MarshalSia(w io.Writer) error
MarshalSia implements the encoding.SiaMarshaler interface.
func (*StorageProof) UnmarshalSia ¶ added in v1.3.1
func (sp *StorageProof) UnmarshalSia(r io.Reader) error
UnmarshalSia implements the encoding.SiaUnmarshaler interface.
type StratumNotification ¶ added in v1.3.8
type StratumNotification struct { Method string `json:"method"` Params []interface{} `json:"params"` }
StratumNotification is a special kind of Request, it has no ID and is sent from the server to the client
type StratumRequest ¶ added in v1.3.8
type StratumRequest struct { ID uint64 `json:"id"` Method string `json:"method"` Params []interface{} `json:"params"` }
StratumRequest contains stratum request messages received over TCP request : A remote method is invoked by sending a request to the remote stratum service.
type StratumResponse ¶ added in v1.3.8
type StratumResponse struct { ID uint64 `json:"id"` Result interface{} `json:"result"` Error []interface{} `json:"error"` StratumNotification `json:",inline"` }
StratumResponse contains stratum response messages sent over TCP notification is an inline struct to easily decode messages in a response/notification using a json marshaller
type Target ¶
A Target is a hash that a block's ID must be "less than" in order for the block to be considered valid. Miners vary the block's 'Nonce' field in order to brute-force such an ID. The inverse of a Target is called the "difficulty," because it is proportional to the amount of time required to brute-force the Target.
func IntToTarget ¶
IntToTarget converts a big.Int to a Target. Negative inputs trigger a panic.
func RatToTarget ¶
RatToTarget converts a big.Rat to a Target.
func (Target) AddDifficulties ¶ added in v0.3.3
AddDifficulties returns the resulting target with the difficulty of 'x' and 'y' are added together. Note that the difficulty is the inverse of the target. The sum is defined by:
sum(x, y) = 1/(1/x + 1/y)
func (Target) Cmp ¶
Cmp compares the difficulties of two targets. Note that the difficulty is the inverse of the target. The results are as follows:
-1 if x < y 0 if x == y +1 if x > y
func (Target) Difficulty ¶ added in v1.0.0
Difficulty returns the difficulty associated with a given target.
func (Target) MulDifficulty ¶ added in v0.3.3
MulDifficulty multiplies the difficulty of a target by y. The product is defined by: y / x
func (Target) SubtractDifficulties ¶ added in v1.0.0
SubtractDifficulties returns the resulting target with the difficulty of 'x' is subtracted from the target with difficulty 'y'. Note that the difficulty is the inverse of the target. The difference is defined by:
sum(x, y) = 1/(1/x - 1/y)
type Timestamp ¶
type Timestamp uint64
Timestamp is a Unix timestamp, i.e. the number of the seconds since Jan 1 1970.
func CurrentTimestamp ¶
func CurrentTimestamp() Timestamp
CurrentTimestamp returns the current time as a Timestamp.
type TimestampSlice ¶
type TimestampSlice []Timestamp
TimestampSlice is an array of timestamps
func (TimestampSlice) Less ¶
func (ts TimestampSlice) Less(i, j int) bool
Less is part of sort.Interface
type TokenID ¶ added in v1.6.0
type TokenID [tokenNameSize]byte
TokenID represent token type
func ParseToken ¶ added in v1.6.0
ParseToken parse token from string
type Transaction ¶
type Transaction struct { SiacoinInputs []SiacoinInput `json:"siacoininputs"` SiacoinOutputs []SiacoinOutput `json:"siacoinoutputs"` FileContracts []FileContract `json:"filecontracts"` FileContractRevisions []FileContractRevision `json:"filecontractrevisions"` StorageProofs []StorageProof `json:"storageproofs"` SiafundInputs []SiafundInput `json:"siafundinputs"` SiafundOutputs []SiafundOutput `json:"siafundoutputs"` MinerFees []Currency `json:"minerfees"` ArbitraryData [][]byte `json:"arbitrarydata"` TransactionSignatures []TransactionSignature `json:"transactionsignatures"` }
A Transaction is an atomic component of a block. Transactions can contain inputs and outputs, file contracts, storage proofs, and even arbitrary data. They can also contain signatures to prove that a given party has approved the transaction, or at least a particular subset of it.
Transactions can depend on other previous transactions in the same block, but transactions cannot spend outputs that they create or otherwise be self-dependent.
func TransactionGraph ¶ added in v1.3.2
func TransactionGraph(sourceOutput SiacoinOutputID, edges []TransactionGraphEdge) ([]Transaction, error)
TransactionGraph will take a set of edges as input and use those edges to create a transaction graph. The code interprets the edges as going from a source node to a sink node. For all nodes, all of the inputs will be part of the same transaction. And for all nodes, all of the outputs will be part of the same transaction. For nodes that have only outputs (the source node, node 0), these nodes will appear in only one transaction. And for nodes that have only inputs (the sink nodes), these nodes will also only appear in one transaction.
Two nodes will only appear in the same transaction if required to satisfy the above requirements, otherwise the nodes will be created using distinct transactions.
Node zero will use the 'sourceOutput' as its input, and is the only node that is allowed to have no inputs specified.
Example Input:
Sources: [0, 0, 1, 2, 3, 3, 3, 4] Dests: [1, 2, 3, 3, 4, 4, 5, 6]
Resulting Graph:
o / \ o o \ / o /|\ \| \ o o | o
This graph will result in 4 transactions:
t1: [0->1],[0->2] t2: [1->3],[2->3] t3: [3->4],[3->4],[3->5] t4: [4->6]
NOTE: the edges must be specified so that the inputs and outputs of the resulting transaction add up correctly.
func (Transaction) FileContractID ¶
func (t Transaction) FileContractID(i uint64) FileContractID
FileContractID returns the ID of a file contract at the given index, which is calculated by hashing the concatenation of the FileContract Specifier, all of the fields in the transaction (except the signatures), and the contract index.
func (Transaction) HostSignature ¶ added in v1.5.0
func (t Transaction) HostSignature() TransactionSignature
HostSignature returns the host's transaction signature
func (Transaction) ID ¶
func (t Transaction) ID() TransactionID
ID returns the id of a transaction, which is taken by marshalling all of the fields except for the signatures and taking the hash of the result.
func (Transaction) MarshalSia ¶ added in v1.2.0
func (t Transaction) MarshalSia(w io.Writer) error
MarshalSia implements the encoding.SiaMarshaler interface.
func (Transaction) MarshalSiaNoSignatures ¶ added in v1.3.8
func (t Transaction) MarshalSiaNoSignatures(w io.Writer)
MarshalSiaNoSignatures is a helper function for calculating certain hashes that do not include the transaction's signatures.
func (Transaction) MarshalSiaSize ¶ added in v1.3.0
func (t Transaction) MarshalSiaSize() (size int)
MarshalSiaSize returns the encoded size of t.
func (Transaction) RenterSignature ¶ added in v1.5.0
func (t Transaction) RenterSignature() TransactionSignature
RenterSignature returns the host's transaction signature
func (Transaction) SiacoinOutputID ¶
func (t Transaction) SiacoinOutputID(i uint64) SiacoinOutputID
SiacoinOutputID returns the ID of a siacoin output at the given index, which is calculated by hashing the concatenation of the SiacoinOutput Specifier, all of the fields in the transaction (except the signatures), and output index.
func (Transaction) SiacoinOutputSum ¶
func (t Transaction) SiacoinOutputSum() (sum Currency)
SiacoinOutputSum returns the sum of all the siacoin outputs in the transaction, which must match the sum of all the siacoin inputs. Siacoin outputs created by storage proofs and siafund outputs are not considered, as they were considered when the contract responsible for funding them was created.
func (Transaction) SiafundOutputID ¶
func (t Transaction) SiafundOutputID(i uint64) SiafundOutputID
SiafundOutputID returns the ID of a SiafundOutput at the given index, which is calculated by hashing the concatenation of the SiafundOutput Specifier, all of the fields in the transaction (except the signatures), and output index.
func (Transaction) SigHash ¶
func (t Transaction) SigHash(i int, height BlockHeight) (hash crypto.Hash)
SigHash returns the hash of the fields in a transaction covered by a given signature. See CoveredFields for more details.
func (Transaction) SponsorAddresses ¶ added in v1.7.0
func (t Transaction) SponsorAddresses() []UnlockHash
SponsorAddresses returns a list of unique unlock hashes from transaction's inputs.
func (Transaction) StandaloneValid ¶
func (t Transaction) StandaloneValid(currentHeight BlockHeight) (err error)
StandaloneValid returns an error if a transaction is not valid in any context, for example if the same output is spent twice in the same transaction. StandaloneValid will not check that all outputs being spent are legal outputs, as it has no confirmed or unconfirmed set to look at.
func (*Transaction) UnmarshalSia ¶ added in v1.3.1
func (t *Transaction) UnmarshalSia(r io.Reader) error
UnmarshalSia implements the encoding.SiaUnmarshaler interface.
type TransactionGraphEdge ¶ added in v1.3.2
TransactionGraphEdge defines an edge in a TransactionGraph, containing a source transaction, a destination transaction, a value, and a miner fee.
type TransactionID ¶ added in v1.0.0
TransactionID uniquely identifies a transaction
func (TransactionID) MarshalJSON ¶ added in v1.0.0
func (tid TransactionID) MarshalJSON() ([]byte, error)
MarshalJSON marshals an id as a hex string.
func (TransactionID) String ¶ added in v1.0.0
func (tid TransactionID) String() string
String prints the id in hex.
func (*TransactionID) UnmarshalJSON ¶ added in v1.0.0
func (tid *TransactionID) UnmarshalJSON(b []byte) error
UnmarshalJSON decodes the json hex string of the id.
type TransactionSignature ¶
type TransactionSignature struct { ParentID crypto.Hash `json:"parentid"` PublicKeyIndex uint64 `json:"publickeyindex"` Timelock BlockHeight `json:"timelock"` CoveredFields CoveredFields `json:"coveredfields"` Signature []byte `json:"signature"` }
A TransactionSignature is a signature that is included in the transaction. The signature should correspond to a public key in one of the UnlockConditions of the transaction. This key is specified first by 'ParentID', which specifies the UnlockConditions, and then 'PublicKeyIndex', which indicates the key in the UnlockConditions. There are three types that use UnlockConditions: SiacoinInputs, SiafundInputs, and FileContractTerminations. Each of these types also references a ParentID, and this is the hash that 'ParentID' must match. The 'Timelock' prevents the signature from being used until a certain height. 'CoveredFields' indicates which parts of the transaction are being signed; see CoveredFields.
func (TransactionSignature) MarshalSia ¶ added in v1.2.0
func (ts TransactionSignature) MarshalSia(w io.Writer) error
MarshalSia implements the encoding.SiaMarshaler interface.
func (*TransactionSignature) UnmarshalSia ¶ added in v1.3.1
func (ts *TransactionSignature) UnmarshalSia(r io.Reader) error
UnmarshalSia implements the encoding.SiaUnmarshaler interface.
type UnlockConditions ¶
type UnlockConditions struct { Timelock BlockHeight `json:"timelock"` PublicKeys []SiaPublicKey `json:"publickeys"` SignaturesRequired uint64 `json:"signaturesrequired"` }
UnlockConditions are a set of conditions which must be met to execute certain actions, such as spending a SiacoinOutput or terminating a FileContract.
The simplest requirement is that the block containing the UnlockConditions must have a height >= 'Timelock'.
'PublicKeys' specifies the set of keys that can be used to satisfy the UnlockConditions; of these, at least 'SignaturesRequired' unique keys must sign the transaction. The keys that do not need to use the same cryptographic algorithm.
If 'SignaturesRequired' == 0, the UnlockConditions are effectively "anyone can unlock." If 'SignaturesRequired' > len('PublicKeys'), then the UnlockConditions cannot be fulfilled under any circumstances.
func (UnlockConditions) MarshalSia ¶ added in v1.2.0
func (uc UnlockConditions) MarshalSia(w io.Writer) error
MarshalSia implements the encoding.SiaMarshaler interface.
func (UnlockConditions) MarshalSiaSize ¶ added in v1.3.0
func (uc UnlockConditions) MarshalSiaSize() (size int)
MarshalSiaSize returns the encoded size of uc.
func (UnlockConditions) UnlockHash ¶
func (uc UnlockConditions) UnlockHash() UnlockHash
UnlockHash calculates the root hash of a Merkle tree of the UnlockConditions object. The leaves of this tree are formed by taking the hash of the timelock, the hash of the public keys (one leaf each), and the hash of the number of signatures. The keys are put in the middle because Timelock and SignaturesRequired are both low entropy fields; they can be protected by having random public keys next to them.
func (*UnlockConditions) UnmarshalSia ¶ added in v1.3.1
func (uc *UnlockConditions) UnmarshalSia(r io.Reader) error
UnmarshalSia implements the encoding.SiaUnmarshaler interface.
type UnlockHash ¶
An UnlockHash is a specially constructed hash of the UnlockConditions type. "Locked" values can be unlocked by providing the UnlockConditions that hash to a given UnlockHash. See UnlockConditions.UnlockHash for details on how the UnlockHash is constructed.
func MustParseAddress ¶ added in v1.4.0
func MustParseAddress(addrStr string) (addr UnlockHash)
MustParseAddress parses an address string to an UnlockHash, panicking if parsing fails.
MustParseAddress should never be called on untrusted input; it is provided only for convenience when working with address strings that are known to be valid, such as the addresses in GenesisSiafundAllocation. To parse untrusted address strings, use the LoadString method of UnlockHash.
func UnlockHashFromAddrStr ¶ added in v1.3.8
func UnlockHashFromAddrStr(addrStr string) (addr UnlockHash)
UnlockHashFromAddrStr convert string address to UnlockHash
func (*UnlockHash) LoadString ¶ added in v1.0.0
func (uh *UnlockHash) LoadString(strUH string) error
LoadString loads a hex representation (including checksum) of an unlock hash into an unlock hash object. An error is returned if the string is invalid or fails the checksum.
func (UnlockHash) MarshalJSON ¶ added in v0.3.2
func (uh UnlockHash) MarshalJSON() ([]byte, error)
MarshalJSON is implemented on the unlock hash to always produce a hex string upon marshalling.
func (*UnlockHash) Scan ¶ added in v1.3.3
func (uh *UnlockHash) Scan(s fmt.ScanState, ch rune) error
Scan implements the fmt.Scanner interface, allowing UnlockHash values to be scanned from text.
func (UnlockHash) String ¶ added in v1.0.0
func (uh UnlockHash) String() string
String returns the hex representation of the unlock hash as a string - this includes a checksum.
func (*UnlockHash) UnmarshalJSON ¶ added in v0.3.2
func (uh *UnlockHash) UnmarshalJSON(b []byte) error
UnmarshalJSON is implemented on the unlock hash to recover an unlock hash that has been encoded to a hex string.