feat: update opensea testnet to use goerli (#2894)
This commit is contained in:
parent
3364c159f4
commit
d9b44777c9
|
@ -9,7 +9,8 @@ import (
|
||||||
var errorNotAvailableOnChainID = errors.New("not available for chainID")
|
var errorNotAvailableOnChainID = errors.New("not available for chainID")
|
||||||
|
|
||||||
var contractAddressByChainID = map[uint64]common.Address{
|
var contractAddressByChainID = map[uint64]common.Address{
|
||||||
69: common.HexToAddress("0x4BbCCa869E9931280Cb46AE0DfF18881Be581a4d"), // optimism kovan testnet
|
69: common.HexToAddress("0x4BbCCa869E9931280Cb46AE0DfF18881Be581a4d"), // optimism kovan testnet
|
||||||
|
420: common.HexToAddress("0xecc8e76abc781c411f7bf79f3b1254b66afe3b75"), // optimism goerli testnet
|
||||||
}
|
}
|
||||||
|
|
||||||
func ContractAddress(chainID uint64) (common.Address, error) {
|
func ContractAddress(chainID uint64) (common.Address, error) {
|
||||||
|
|
|
@ -216,7 +216,7 @@ func (m *Messenger) SpectatedCommunities() ([]*communities.Community, error) {
|
||||||
func (m *Messenger) CuratedCommunities() (*communities.KnownCommunitiesResponse, error) {
|
func (m *Messenger) CuratedCommunities() (*communities.KnownCommunitiesResponse, error) {
|
||||||
// Revert code to https://github.com/status-im/status-go/blob/e6a3f63ec7f2fa691878ed35f921413dc8acfc66/protocol/messenger_communities.go#L211-L226 once the curated communities contract is deployed to mainnet
|
// Revert code to https://github.com/status-im/status-go/blob/e6a3f63ec7f2fa691878ed35f921413dc8acfc66/protocol/messenger_communities.go#L211-L226 once the curated communities contract is deployed to mainnet
|
||||||
|
|
||||||
chainID := uint64(69) // Optimism Kovan
|
chainID := uint64(420) // Optimism Goerli
|
||||||
sDB, err := accounts.NewDB(m.database)
|
sDB, err := accounts.NewDB(m.database)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
|
|
|
@ -20,6 +20,7 @@ const CollectionLimit = 300
|
||||||
var BaseURLs = map[uint64]string{
|
var BaseURLs = map[uint64]string{
|
||||||
1: "https://api.opensea.io/api/v1",
|
1: "https://api.opensea.io/api/v1",
|
||||||
4: "https://rinkeby-api.opensea.io/api/v1",
|
4: "https://rinkeby-api.opensea.io/api/v1",
|
||||||
|
5: "https://testnets-api.opensea.io/api/v1",
|
||||||
}
|
}
|
||||||
|
|
||||||
type TraitValue string
|
type TraitValue string
|
||||||
|
|
Loading…
Reference in New Issue