Documentation ¶
Index ¶
- Variables
- type Provider
- func (p *Provider) Create(ctx context.Context, i *identity.SIWE) error
- func (p *Provider) Delete(ctx context.Context, i *identity.SIWE) error
- func (p *Provider) Get(ctx context.Context, userID, id string) (*identity.SIWE, error)
- func (p *Provider) GetByMessage(ctx context.Context, msg string, signature string) (*identity.SIWE, error)
- func (p *Provider) GetMany(ctx context.Context, ids []string) ([]*identity.SIWE, error)
- func (p *Provider) List(ctx context.Context, userID string) ([]*identity.SIWE, error)
- func (p *Provider) New(ctx context.Context, userID string, msg string, signature string) (*identity.SIWE, error)
- type SIWEService
- type Store
- func (s *Store) Create(ctx context.Context, i *identity.SIWE) error
- func (s *Store) Delete(ctx context.Context, i *identity.SIWE) error
- func (s *Store) Get(ctx context.Context, userID, id string) (*identity.SIWE, error)
- func (s *Store) GetByAddress(ctx context.Context, chainID int, address web3.EIP55) (*identity.SIWE, error)
- func (s *Store) GetMany(ctx context.Context, ids []string) ([]*identity.SIWE, error)
- func (s *Store) List(ctx context.Context, userID string) ([]*identity.SIWE, error)
Constants ¶
This section is empty.
Variables ¶
Functions ¶
This section is empty.
Types ¶
type Provider ¶
type Provider struct { Store *Store Clock clock.Clock SIWE SIWEService }
func (*Provider) GetByMessage ¶
type SIWEService ¶
type SIWEService interface {
VerifyMessage(ctx context.Context, msg string, signature string) (*model.SIWEWallet, *ecdsa.PublicKey, error)
}
nolint: golint
type Store ¶
type Store struct { SQLBuilder *appdb.SQLBuilderApp SQLExecutor *appdb.SQLExecutor }
func (*Store) GetByAddress ¶
Click to show internal directories.
Click to hide internal directories.