gui/pkg/electron-compat/claim.go
Snider 032c426ac3 feat: initial Wails v3 desktop framework
GUI packages, examples, and documentation for building
desktop applications with Go and web technologies.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-30 08:44:23 +00:00

15 lines
522 B
Go

package electroncompat
// ClaimService provides airdrop and claim proof operations.
// This corresponds to the Claim IPC service from the Electron app.
type ClaimService struct{}
// NewClaimService creates a new ClaimService instance.
func NewClaimService() *ClaimService {
return &ClaimService{}
}
// AirdropGenerateProofs generates airdrop proofs for an address.
func (s *ClaimService) AirdropGenerateProofs(address string) ([]map[string]any, error) {
return nil, notImplemented("Claim", "airdropGenerateProofs")
}