49 lines
1.5 KiB
Go
49 lines
1.5 KiB
Go
package stickers
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
|
)
|
|
|
|
var errorNotAvailableOnChainID = errors.New("not available for chainID")
|
|
|
|
var stickerTypeByChainID = map[uint64]common.Address{
|
|
1: common.HexToAddress("0x0577215622f43a39f4bc9640806dfea9b10d2a36"), // mainnet
|
|
5: common.HexToAddress("0x07f7CB0C0a4ab3e0999AfE8b3997Da34880f05d0"), // goerli testnet
|
|
}
|
|
|
|
var stickerMarketByChainID = map[uint64]common.Address{
|
|
1: common.HexToAddress("0x12824271339304d3a9f7e096e62a2a7e73b4a7e7"), // mainnet
|
|
5: common.HexToAddress("0xf1E149A7DF70D5Ff1E265daAa738d785D3274717"), // goerli testnet
|
|
}
|
|
|
|
var stickerPackByChainID = map[uint64]common.Address{
|
|
1: common.HexToAddress("0x110101156e8F0743948B2A61aFcf3994A8Fb172e"), // mainnet
|
|
5: common.HexToAddress("0x8D3fD2EA24bD53a8Bd2b1026727db8bbe9A8C8Af"), // goerli testnet
|
|
}
|
|
|
|
func StickerTypeContractAddress(chainID uint64) (common.Address, error) {
|
|
addr, exists := stickerTypeByChainID[chainID]
|
|
if !exists {
|
|
return *new(common.Address), errorNotAvailableOnChainID
|
|
}
|
|
return addr, nil
|
|
}
|
|
|
|
func StickerMarketContractAddress(chainID uint64) (common.Address, error) {
|
|
addr, exists := stickerMarketByChainID[chainID]
|
|
if !exists {
|
|
return *new(common.Address), errorNotAvailableOnChainID
|
|
}
|
|
return addr, nil
|
|
}
|
|
|
|
func StickerPackContractAddress(chainID uint64) (common.Address, error) {
|
|
addr, exists := stickerPackByChainID[chainID]
|
|
if !exists {
|
|
return *new(common.Address), errorNotAvailableOnChainID
|
|
}
|
|
return addr, nil
|
|
}
|