GUI packages, examples, and documentation for building desktop applications with Go and web technologies. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
15 lines
522 B
Go
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")
|
|
}
|