Merge pull request #2535 from filecoin-project/drand/loe-mainnet
Add multiple drand configs
This commit is contained in:
commit
526a981911
@ -38,12 +38,3 @@ func BuiltinBootstrap() ([]peer.AddrInfo, error) {
|
|||||||
})
|
})
|
||||||
return out, err
|
return out, err
|
||||||
}
|
}
|
||||||
|
|
||||||
func DrandBootstrap() ([]peer.AddrInfo, error) {
|
|
||||||
addrs := []string{
|
|
||||||
"/dnsaddr/pl-eu.testnet.drand.sh/",
|
|
||||||
"/dnsaddr/pl-us.testnet.drand.sh/",
|
|
||||||
"/dnsaddr/pl-sin.testnet.drand.sh/",
|
|
||||||
}
|
|
||||||
return addrutil.ParseAddresses(context.TODO(), addrs)
|
|
||||||
}
|
|
||||||
|
58
build/drand.go
Normal file
58
build/drand.go
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
package build
|
||||||
|
|
||||||
|
import "github.com/filecoin-project/lotus/node/modules/dtypes"
|
||||||
|
|
||||||
|
var DrandNetwork = DrandTestnet
|
||||||
|
|
||||||
|
func DrandConfig() dtypes.DrandConfig {
|
||||||
|
return DrandConfigs[DrandNetwork]
|
||||||
|
}
|
||||||
|
|
||||||
|
type DrandEnum int
|
||||||
|
|
||||||
|
const (
|
||||||
|
DrandMainnet DrandEnum = iota + 1
|
||||||
|
DrandTestnet
|
||||||
|
DrandDevnet
|
||||||
|
DrandLocalnet
|
||||||
|
)
|
||||||
|
|
||||||
|
var DrandConfigs = map[DrandEnum]dtypes.DrandConfig{
|
||||||
|
DrandMainnet: {
|
||||||
|
Servers: []string{
|
||||||
|
"https://api.drand.sh",
|
||||||
|
"https://api2.drand.sh",
|
||||||
|
"https://api3.drand.sh",
|
||||||
|
},
|
||||||
|
Relays: []string{
|
||||||
|
"/dnsaddr/api.drand.sh/",
|
||||||
|
"/dnsaddr/api2.drand.sh/",
|
||||||
|
"/dnsaddr/api3.drand.sh/",
|
||||||
|
},
|
||||||
|
ChainInfoJSON: `{"public_key":"868f005eb8e6e4ca0a47c8a77ceaa5309a47978a7c71bc5cce96366b5d7a569937c529eeda66c7293784a9402801af31","period":30,"genesis_time":1595431050,"hash":"8990e7a9aaed2ffed73dbd7092123d6f289930540d7651336225dc172e51b2ce","groupHash":"176f93498eac9ca337150b46d21dd58673ea4e3581185f869672e59fa4cb390a"}`,
|
||||||
|
},
|
||||||
|
DrandTestnet: {
|
||||||
|
Servers: []string{
|
||||||
|
"https://pl-eu.testnet.drand.sh",
|
||||||
|
"https://pl-us.testnet.drand.sh",
|
||||||
|
"https://pl-sin.testnet.drand.sh",
|
||||||
|
},
|
||||||
|
Relays: []string{
|
||||||
|
"/dnsaddr/pl-eu.testnet.drand.sh/",
|
||||||
|
"/dnsaddr/pl-us.testnet.drand.sh/",
|
||||||
|
"/dnsaddr/pl-sin.testnet.drand.sh/",
|
||||||
|
},
|
||||||
|
ChainInfoJSON: `{"public_key":"922a2e93828ff83345bae533f5172669a26c02dc76d6bf59c80892e12ab1455c229211886f35bb56af6d5bea981024df","period":25,"genesis_time":1590445175,"hash":"84b2234fb34e835dccd048255d7ad3194b81af7d978c3bf157e3469592ae4e02","groupHash":"4dd408e5fdff9323c76a9b6f087ba8fdc5a6da907bd9217d9d10f2287d081957"}`,
|
||||||
|
},
|
||||||
|
DrandDevnet: {
|
||||||
|
Servers: []string{
|
||||||
|
"https://dev1.drand.sh",
|
||||||
|
"https://dev2.drand.sh",
|
||||||
|
},
|
||||||
|
Relays: []string{
|
||||||
|
"/dnsaddr/dev1.drand.sh/",
|
||||||
|
"/dnsaddr/dev2.drand.sh/",
|
||||||
|
},
|
||||||
|
ChainInfoJSON: `{"public_key":"8cda589f88914aa728fd183f383980b35789ce81b274e5daee1f338b77d02566ef4d3fb0098af1f844f10f9c803c1827","period":25,"genesis_time":1595348225,"hash":"e73b7dc3c4f6a236378220c0dd6aa110eb16eed26c11259606e07ee122838d4f","groupHash":"567d4785122a5a3e75a9bc9911d7ea807dd85ff76b78dc4ff06b075712898607"}`,
|
||||||
|
},
|
||||||
|
}
|
@ -8,8 +8,6 @@ import (
|
|||||||
"github.com/filecoin-project/specs-actors/actors/abi"
|
"github.com/filecoin-project/specs-actors/actors/abi"
|
||||||
"github.com/filecoin-project/specs-actors/actors/builtin"
|
"github.com/filecoin-project/specs-actors/actors/builtin"
|
||||||
"github.com/filecoin-project/specs-actors/actors/builtin/miner"
|
"github.com/filecoin-project/specs-actors/actors/builtin/miner"
|
||||||
|
|
||||||
"github.com/filecoin-project/lotus/node/modules/dtypes"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
// /////
|
// /////
|
||||||
@ -92,12 +90,3 @@ const VerifSigCacheSize = 32000
|
|||||||
// TODO: If this is gonna stay, it should move to specs-actors
|
// TODO: If this is gonna stay, it should move to specs-actors
|
||||||
const BlockMessageLimit = 512
|
const BlockMessageLimit = 512
|
||||||
const BlockGasLimit = 7_500_000_000
|
const BlockGasLimit = 7_500_000_000
|
||||||
|
|
||||||
var DrandConfig = dtypes.DrandConfig{
|
|
||||||
Servers: []string{
|
|
||||||
"https://pl-eu.testnet.drand.sh",
|
|
||||||
"https://pl-us.testnet.drand.sh",
|
|
||||||
"https://pl-sin.testnet.drand.sh",
|
|
||||||
},
|
|
||||||
ChainInfoJSON: `{"public_key":"922a2e93828ff83345bae533f5172669a26c02dc76d6bf59c80892e12ab1455c229211886f35bb56af6d5bea981024df","period":25,"genesis_time":1590445175,"hash":"84b2234fb34e835dccd048255d7ad3194b81af7d978c3bf157e3469592ae4e02","groupHash":"4dd408e5fdff9323c76a9b6f087ba8fdc5a6da907bd9217d9d10f2287d081957"}`,
|
|
||||||
}
|
|
||||||
|
@ -10,8 +10,6 @@ package build
|
|||||||
import (
|
import (
|
||||||
"math/big"
|
"math/big"
|
||||||
|
|
||||||
"github.com/filecoin-project/lotus/node/modules/dtypes"
|
|
||||||
|
|
||||||
"github.com/filecoin-project/specs-actors/actors/abi"
|
"github.com/filecoin-project/specs-actors/actors/abi"
|
||||||
"github.com/filecoin-project/specs-actors/actors/builtin"
|
"github.com/filecoin-project/specs-actors/actors/builtin"
|
||||||
"github.com/filecoin-project/specs-actors/actors/builtin/miner"
|
"github.com/filecoin-project/specs-actors/actors/builtin/miner"
|
||||||
@ -61,13 +59,4 @@ var (
|
|||||||
v = v.Mul(v, big.NewInt(int64(FilecoinPrecision)))
|
v = v.Mul(v, big.NewInt(int64(FilecoinPrecision)))
|
||||||
return v
|
return v
|
||||||
}()
|
}()
|
||||||
|
|
||||||
DrandConfig = dtypes.DrandConfig{
|
|
||||||
Servers: []string{
|
|
||||||
"https://pl-eu.testnet.drand.sh",
|
|
||||||
"https://pl-us.testnet.drand.sh",
|
|
||||||
"https://pl-sin.testnet.drand.sh",
|
|
||||||
},
|
|
||||||
ChainInfoJSON: `{"public_key":"922a2e93828ff83345bae533f5172669a26c02dc76d6bf59c80892e12ab1455c229211886f35bb56af6d5bea981024df","period":25,"genesis_time":1590445175,"hash":"138a324aa6540f93d0dad002aa89454b1bec2b6e948682cde6bd4db40f4b7c9b"}`,
|
|
||||||
}
|
|
||||||
)
|
)
|
||||||
|
@ -12,7 +12,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
func TestPrintGroupInfo(t *testing.T) {
|
func TestPrintGroupInfo(t *testing.T) {
|
||||||
server := build.DrandConfig.Servers[0]
|
server := build.DrandConfig().Servers[0]
|
||||||
c, err := hclient.New(server, nil, nil)
|
c, err := hclient.New(server, nil, nil)
|
||||||
assert.NoError(t, err)
|
assert.NoError(t, err)
|
||||||
cg := c.(interface {
|
cg := c.(interface {
|
||||||
|
@ -92,8 +92,8 @@ func BuiltinBootstrap() (dtypes.BootstrapPeers, error) {
|
|||||||
return build.BuiltinBootstrap()
|
return build.BuiltinBootstrap()
|
||||||
}
|
}
|
||||||
|
|
||||||
func DrandBootstrap() (dtypes.DrandBootstrap, error) {
|
func DrandBootstrap(d dtypes.DrandConfig) (dtypes.DrandBootstrap, error) {
|
||||||
return build.DrandBootstrap()
|
return addrutil.ParseAddresses(context.TODO(), d.Relays)
|
||||||
}
|
}
|
||||||
|
|
||||||
func SetupJournal(lr repo.LockedRepo) error {
|
func SetupJournal(lr repo.LockedRepo) error {
|
||||||
|
@ -2,5 +2,6 @@ package dtypes
|
|||||||
|
|
||||||
type DrandConfig struct {
|
type DrandConfig struct {
|
||||||
Servers []string
|
Servers []string
|
||||||
|
Relays []string
|
||||||
ChainInfoJSON string
|
ChainInfoJSON string
|
||||||
}
|
}
|
||||||
|
@ -114,7 +114,7 @@ type RandomBeaconParams struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func BuiltinDrandConfig() dtypes.DrandConfig {
|
func BuiltinDrandConfig() dtypes.DrandConfig {
|
||||||
return build.DrandConfig
|
return build.DrandConfig()
|
||||||
}
|
}
|
||||||
|
|
||||||
func RandomBeacon(p RandomBeaconParams, _ dtypes.AfterGenesisSet) (beacon.RandomBeacon, error) {
|
func RandomBeacon(p RandomBeaconParams, _ dtypes.AfterGenesisSet) (beacon.RandomBeacon, error) {
|
||||||
|
Loading…
Reference in New Issue
Block a user