//! Authentication and signing utilities for Polymarket APIs.
//!
//! This module provides:
//! - EIP-712 typed data signing for wallet authentication
//! - HMAC-SHA256 signing for API key authentication
//! - Builder API authentication (derived from polymarket-rs-sdk)
//!
//! # Authentication Levels
//!
//! | Level | Method | Use Case |
//! |-------|--------|----------|
//! | L1 | EIP-712 wallet signature | Create API credentials |
//! | L2 | HMAC-SHA256 with API key | Daily API operations |
//! | Builder | HMAC with Builder credentials | Relayer operations |
//!
//! # Attribution
//!
//! The Builder API signing code is derived from
//! [`polymarket-rs-sdk`](https://github.com/polymarket/polymarket-rs-sdk).
// Builder API (from polymarket-rs-sdk)
pub use ;
// EIP-712 and HMAC signing
pub use ;