@layr-labs/ecloud-sdk 0.3.0-dev.0 → 0.3.1-dev

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.
@@ -1,4 +1,4 @@
1
- import { PublicClient, Address, Hex, WalletClient, SignAuthorizationReturnType } from 'viem';
1
+ import { PublicClient, Address, Hex, WalletClient } from 'viem';
2
2
 
3
3
  /**
4
4
  * Contract interactions
@@ -503,8 +503,6 @@ interface PreparedDeployData {
503
503
  value: bigint;
504
504
  callData: Hex;
505
505
  }>;
506
- /** Pre-created authorization list for gas estimation accuracy (optional) */
507
- authorizationList?: SignAuthorizationReturnType[];
508
506
  }
509
507
  /** Data-only batch for upgrade (clients provided by module) */
510
508
  interface PreparedUpgradeData {
@@ -516,8 +514,6 @@ interface PreparedUpgradeData {
516
514
  value: bigint;
517
515
  callData: Hex;
518
516
  }>;
519
- /** Pre-created authorization list for gas estimation accuracy (optional) */
520
- authorizationList?: SignAuthorizationReturnType[];
521
517
  }
522
518
  /** Prepared deployment ready for execution */
523
519
  interface PreparedDeploy {
@@ -712,10 +708,6 @@ interface ProductSubscriptionResponse {
712
708
  }
713
709
  interface SubscriptionOpts {
714
710
  productId?: ProductID;
715
- /** URL to redirect to after successful checkout */
716
- successUrl?: string;
717
- /** URL to redirect to if checkout is canceled */
718
- cancelUrl?: string;
719
711
  }
720
712
  interface BillingEnvironmentConfig {
721
713
  billingApiServerURL: string;