Documentation
¶
Index ¶
- Constants
- Variables
- func GetRecentRequest() []string
- type ActivitiesResponse
- type ActivityResponse
- type Component
- func (c *Component) AddTransactionChainURL(_ context.Context, n network.Network, platform string, id string) []string
- func (c *Component) BatchGetAccountsActivities(ctx echo.Context) (err error)
- func (c *Component) BatchGetMetadataActivities(ctx echo.Context) (err error)
- func (c *Component) CollectMetric(ctx context.Context, path, value string)
- func (c *Component) CollectTrace(ctx context.Context, path, value string)
- func (c *Component) GetAccountActivities(ctx echo.Context, account string, request docs.GetDecentralizedAccountParams) (err error)
- func (c *Component) GetActivity(ctx echo.Context, id string, request docs.GetDecentralizedTxIDParams) error
- func (c *Component) GetNetworkActivities(ctx echo.Context, net network.Network, ...) (err error)
- func (c *Component) GetPlatformActivities(ctx echo.Context, plat decentralized.Platform, ...) (err error)
- func (c *Component) InitMeter() (err error)
- func (c *Component) Name() string
- func (c *Component) TransformActivities(ctx context.Context, activities []*activityx.Activity) []*activityx.Activity
- func (c *Component) TransformActivity(ctx context.Context, activity *activityx.Activity) (*activityx.Activity, error)
- func (c *Component) TransformCollectibleType(ctx context.Context, n network.Network, action activity.Action) (activity.Action, error)
- func (c *Component) TransformSocialPost(ctx context.Context, network network.Network, platform string, ...) (activity.Action, error)
- func (c *Component) TransformSocialProfile(ctx context.Context, platform string, action activity.Action) (activity.Action, error)
- func (c *Component) TransformSocialProxy(ctx context.Context, platform string, action activity.Action) (activity.Action, error)
- func (c *Component) TransformSocialType(ctx context.Context, network network.Network, platform string, ...) (activity.Action, error)
- type MetaCursor
- type MetaTotalPages
- type PlatformActivitiesRequest
Constants ¶
View Source
const MaxRecentRequests = 10
View Source
const Name = "decentralized"
Variables ¶
View Source
var (
RecentRequests *cb.Queue
)
Functions ¶
func GetRecentRequest ¶
func GetRecentRequest() []string
GetRecentRequest returns the filtered recent requests.
Types ¶
type ActivitiesResponse ¶
type ActivitiesResponse struct {
Data []*activityx.Activity `json:"data"`
Meta *MetaCursor `json:"meta,omitempty"`
}
type ActivityResponse ¶
type ActivityResponse struct {
Data *activityx.Activity `json:"data"`
Meta *MetaTotalPages `json:"meta"`
}
type Component ¶
type Component struct {
// contains filtered or unexported fields
}
func NewComponent ¶
func (*Component) AddTransactionChainURL ¶
func (*Component) BatchGetAccountsActivities ¶
BatchGetAccountsActivities returns the activities of multiple accounts in a single request
func (*Component) BatchGetMetadataActivities ¶
BatchGetMetadataActivities returns the activities of specified decentralized metadata
func (*Component) CollectMetric ¶
func (*Component) CollectTrace ¶
func (*Component) GetAccountActivities ¶
func (*Component) GetActivity ¶
func (*Component) GetNetworkActivities ¶
func (*Component) GetPlatformActivities ¶
func (c *Component) GetPlatformActivities(ctx echo.Context, plat decentralized.Platform, request docs.GetDecentralizedPlatformParams) (err error)
func (*Component) TransformActivities ¶
func (*Component) TransformActivity ¶
func (c *Component) TransformActivity(ctx context.Context, activity *activityx.Activity) (*activityx.Activity, error)
TransformActivity should add related URLs to the activity based on action tag, network and platform
func (*Component) TransformCollectibleType ¶
func (c *Component) TransformCollectibleType(ctx context.Context, n network.Network, action activity.Action) (activity.Action, error)
TransformCollectibleType adds collectible token URLs in opensea, looksrare and other platforms
func (*Component) TransformSocialPost ¶
func (c *Component) TransformSocialPost(ctx context.Context, network network.Network, platform string, action activity.Action) (activity.Action, error)
TransformSocialPost adds author url and note url to social post action
func (*Component) TransformSocialProfile ¶
func (c *Component) TransformSocialProfile(ctx context.Context, platform string, action activity.Action) (activity.Action, error)
TransformSocialProfile adds author url to social profile action
type MetaCursor ¶
type MetaCursor struct {
Cursor string `json:"cursor"`
}
type MetaTotalPages ¶
type MetaTotalPages struct {
TotalPages int `json:"totalPages"`
}
type PlatformActivitiesRequest ¶
type PlatformActivitiesRequest struct {
Platform decentralized.Platform `param:"platform" validate:"required"`
Limit int `query:"limit" validate:"min=1,max=100" default:"100"`
ActionLimit int `query:"action_limit" validate:"min=1,max=20" default:"10"`
Cursor *string `query:"cursor"`
SinceTimestamp *uint64 `query:"since_timestamp"`
UntilTimestamp *uint64 `query:"until_timestamp"`
Status *bool `query:"success"`
Direction *activityx.Direction `query:"direction"`
Tag []tag.Tag `query:"tag"`
Type []schema.Type `query:"-"`
Network []network.Network `query:"network"`
}
Click to show internal directories.
Click to hide internal directories.