decentralized

package
v0.6.7 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 29, 2024 License: MIT Imports: 6 Imported by: 1

Documentation

Index

Constants

This section is empty.

Variables

View Source
var ToIconURLMap = map[Worker]string{
	Aave:       "https://unpkg.com/@rss3/web3-icons-svg@latest/icons/aave.svg",
	Aavegotchi: "https://unpkg.com/@rss3/web3-icons-svg@latest/icons/aavegotchi.svg",
	Core:       "",
	Crossbell:  "https://unpkg.com/@rss3/web3-icons-svg@latest/icons/crossbell.svg",
	Curve:      "https://unpkg.com/@rss3/web3-icons-svg@latest/icons/curve.svg",
	ENS:        "https://unpkg.com/@rss3/web3-icons-svg@latest/icons/ens.svg",
	Highlight:  "https://unpkg.com/@rss3/web3-icons-svg@latest/icons/highlight.svg",
	IQWiki:     "https://unpkg.com/@rss3/web3-icons-svg@latest/icons/iqwiki.svg",
	KiwiStand:  "https://storage.googleapis.com/rss3-icon/kiwistand.png",
	Lens:       "https://unpkg.com/@rss3/web3-icons-svg@latest/icons/lens.svg",
	Lido:       "https://unpkg.com/@rss3/web3-icons-svg@latest/icons/lido.svg",
	Looksrare:  "https://unpkg.com/@rss3/web3-icons-svg@latest/icons/looks-rare.svg",
	Matters:    "https://storage.googleapis.com/rss3-icon/matters.jpg",
	Mirror:     "https://unpkg.com/@rss3/web3-icons-svg@latest/icons/mirror.svg",
	Momoka:     "https://storage.googleapis.com/rss3-icon/momoka.png",
	Oneinch:    "https://unpkg.com/@rss3/web3-icons-svg@latest/icons/1inch.svg",
	OpenSea:    "https://unpkg.com/@rss3/web3-icons-svg@latest/icons/opensea.svg",
	Optimism:   "https://unpkg.com/@rss3/web3-icons-svg@latest/icons/optimism.svg",
	Paragraph:  "https://storage.googleapis.com/rss3-icon/paragraph.png",
	RSS3:       "https://unpkg.com/@rss3/web3-icons-svg@latest/icons/rss3.svg",
	SAVM:       "",
	Stargate:   "https://unpkg.com/@rss3/web3-icons-svg@latest/icons/stargate.svg",
	Uniswap:    "https://unpkg.com/@rss3/web3-icons-svg@latest/icons/uniswap.svg",
	VSL:        "https://unpkg.com/@rss3/web3-icons-svg@latest/icons/rss3-vsl.svg",
}
View Source
var ToPlatformMap = map[Worker]Platform{
	Aave:       PlatformAAVE,
	Aavegotchi: PlatformAavegotchi,
	Crossbell:  PlatformCrossbell,
	Curve:      PlatformCurve,
	ENS:        PlatformENS,
	Highlight:  PlatformHighlight,
	IQWiki:     PlatformIQWiki,
	KiwiStand:  PlatformKiwiStand,
	Lens:       PlatformLens,
	Lido:       PlatformLido,
	Looksrare:  PlatformLooksRare,
	Matters:    PlatformMatters,
	Mirror:     PlatformMirror,
	Momoka:     PlatformLens,
	Oneinch:    Platform1Inch,
	OpenSea:    PlatformOpenSea,
	Optimism:   PlatformOptimism,
	Paragraph:  PlatformParagraph,
	RSS3:       PlatformRSS3,
	SAVM:       PlatformSAVM,
	Stargate:   PlatformStargate,
	Uniswap:    PlatformUniswap,
	VSL:        PlatformVSL,
}

ToPlatformMap is a map of worker to platform

ToTagsMap is a map of worker to tags

Functions

func PlatformStrings

func PlatformStrings() []string

PlatformStrings returns a slice of all String values of the enum

func WorkerStrings

func WorkerStrings() []string

WorkerStrings returns a slice of all String values of the enum

Types

type Platform

type Platform uint64
const (
	PlatformUnknown    Platform = iota // Unknown
	Platform1Inch                      // 1inch
	PlatformAAVE                       // AAVE
	PlatformAavegotchi                 // Aavegotchi
	PlatformCrossbell                  // Crossbell
	PlatformCurve                      // Curve
	PlatformENS                        // ENS
	PlatformFarcaster                  // Farcaster
	PlatformHighlight                  // Highlight
	PlatformIQWiki                     // IQWiki
	PlatformKiwiStand                  // KiwiStand
	PlatformLens                       // Lens
	PlatformLido                       // Lido
	PlatformLooksRare                  // LooksRare
	PlatformMatters                    // Matters
	PlatformMirror                     // Mirror
	PlatformOpenSea                    // OpenSea
	PlatformOptimism                   // Optimism
	PlatformParagraph                  // Paragraph
	PlatformRSS3                       // RSS3
	PlatformSAVM                       // SAVM
	PlatformStargate                   // Stargate
	PlatformUniswap                    // Uniswap
	PlatformVSL                        // VSL
)

func PlatformString

func PlatformString(s string) (Platform, error)

PlatformString retrieves an enum value from the enum constants string name. Throws an error if the param is not part of the enum.

func PlatformValues

func PlatformValues() []Platform

PlatformValues returns all values of the enum

func (Platform) IsAPlatform

func (i Platform) IsAPlatform() bool

IsAPlatform returns "true" if the value is listed in the enum definition. "false" otherwise

func (Platform) MarshalJSON

func (i Platform) MarshalJSON() ([]byte, error)

MarshalJSON implements the json.Marshaler interface for Platform

func (Platform) MarshalYAML

func (i Platform) MarshalYAML() (interface{}, error)

MarshalYAML implements a YAML Marshaler for Platform

func (*Platform) Scan

func (i *Platform) Scan(value interface{}) error

func (Platform) String

func (i Platform) String() string

func (*Platform) UnmarshalJSON

func (i *Platform) UnmarshalJSON(data []byte) error

UnmarshalJSON implements the json.Unmarshaler interface for Platform

func (*Platform) UnmarshalParam

func (p *Platform) UnmarshalParam(param string) error

func (*Platform) UnmarshalYAML

func (i *Platform) UnmarshalYAML(unmarshal func(interface{}) error) error

UnmarshalYAML implements a YAML Unmarshaler for Platform

func (Platform) Value

func (i Platform) Value() (driver.Value, error)

func (Platform) Values

func (Platform) Values() []string

type Worker

type Worker int
const (
	Aave       Worker = iota + 1 // aave
	Aavegotchi                   // aavegotchi
	Core                         // core
	Crossbell                    // crossbell
	Curve                        // curve
	ENS                          // ens
	Highlight                    // highlight
	IQWiki                       // iqwiki
	KiwiStand                    // kiwistand
	Lens                         // lens
	Lido                         // lido
	Looksrare                    // looksrare
	Matters                      // matters
	Mirror                       // mirror
	Momoka                       // momoka
	Oneinch                      // 1inch
	OpenSea                      // opensea
	Optimism                     // optimism
	Paragraph                    // paragraph
	RSS3                         // rss3
	SAVM                         // savm
	Stargate                     // stargate
	Uniswap                      // uniswap
	VSL                          // vsl
)

func GetValueByWorkerStr

func GetValueByWorkerStr(workerStr string) Worker

func WorkerString

func WorkerString(s string) (Worker, error)

WorkerString retrieves an enum value from the enum constants string name. Throws an error if the param is not part of the enum.

func WorkerValues

func WorkerValues() []Worker

WorkerValues returns all values of the enum

func (Worker) Component

func (w Worker) Component() string

func (Worker) IsAWorker

func (i Worker) IsAWorker() bool

IsAWorker returns "true" if the value is listed in the enum definition. "false" otherwise

func (Worker) MarshalJSON

func (i Worker) MarshalJSON() ([]byte, error)

MarshalJSON implements the json.Marshaler interface for Worker

func (Worker) MarshalYAML

func (i Worker) MarshalYAML() (interface{}, error)

MarshalYAML implements a YAML Marshaler for Worker

func (Worker) Name

func (w Worker) Name() string

func (*Worker) Scan

func (i *Worker) Scan(value interface{}) error

func (Worker) String

func (i Worker) String() string

func (*Worker) UnmarshalJSON

func (i *Worker) UnmarshalJSON(data []byte) error

UnmarshalJSON implements the json.Unmarshaler interface for Worker

func (*Worker) UnmarshalParam

func (w *Worker) UnmarshalParam(param string) error

func (*Worker) UnmarshalYAML

func (i *Worker) UnmarshalYAML(unmarshal func(interface{}) error) error

UnmarshalYAML implements a YAML Unmarshaler for Worker

func (Worker) Value

func (i Worker) Value() (driver.Value, error)

func (Worker) Values

func (Worker) Values() []string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL