@gvnrdao/dh-sdk 0.0.312 → 0.0.313

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -35,6 +35,10 @@ export interface DeploymentContracts {
35
35
  BitcoinWithdrawalAddressRegistry?: string;
36
36
  /** CarryAgentRegistry — on-chain attestation / kill-switch for the Carry product: per-position agent registration with permitted-asset allow-list. */
37
37
  CarryAgentRegistry?: string;
38
+ /** AgentDelegationRegistry — protocol agent-delegation policy layer (MVP: auto-renew). Per-user agent identity + position-keyed grants. */
39
+ AgentDelegationRegistry?: string;
40
+ /** DHAgentDelegate — EIP-7702 execution adapter (Gate 2): lets the renewal agent call extendPosition as the borrower. Stateless; reads AgentDelegationRegistry.canRenew. */
41
+ DHAgentDelegate?: string;
38
42
  PriceFeedConsumer?: string;
39
43
  OperationAuthorizationRegistry?: string;
40
44
  PKPValidation?: string;
@@ -36,6 +36,8 @@ export interface NetworkConfig {
36
36
  bitcoinWithdrawalAddressRegistry?: string;
37
37
  /** CarryAgentRegistry proxy; on-chain attestation / kill-switch for the Carry product (per-position agent registration + permitted-asset allow-list). */
38
38
  carryAgentRegistry?: string;
39
+ agentDelegationRegistry?: string;
40
+ dhAgentDelegate?: string;
39
41
  mockUsdcToken?: string;
40
42
  mockUsdtToken?: string;
41
43
  mockUsdcOwner?: string;