@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.
- package/VERSION +2 -2
- package/dist/billing.cjs +4 -273
- package/dist/billing.cjs.map +1 -1
- package/dist/billing.d.cts +1 -1
- package/dist/billing.d.ts +1 -1
- package/dist/billing.js +4 -275
- package/dist/billing.js.map +1 -1
- package/dist/browser.cjs +173 -569
- package/dist/browser.cjs.map +1 -1
- package/dist/browser.d.cts +12 -53
- package/dist/browser.d.ts +12 -53
- package/dist/browser.js +173 -569
- package/dist/browser.js.map +1 -1
- package/dist/{compute-BcJuIxc1.d.ts → compute-BYhSs8en.d.ts} +1 -1
- package/dist/{compute-oD9uqLtr.d.cts → compute-Bpjb3hYD.d.cts} +1 -1
- package/dist/compute.cjs +154 -240
- package/dist/compute.cjs.map +1 -1
- package/dist/compute.d.cts +2 -2
- package/dist/compute.d.ts +2 -2
- package/dist/compute.js +154 -242
- package/dist/compute.js.map +1 -1
- package/dist/{helpers-Cp8qGRTb.d.ts → helpers-CEvhJz7f.d.cts} +5 -249
- package/dist/{helpers-BNGcO-VX.d.cts → helpers-CQuBwQnu.d.ts} +5 -249
- package/dist/{index-5y9NG_Id.d.cts → index-DeQzn_yM.d.cts} +1 -9
- package/dist/{index-5y9NG_Id.d.ts → index-DeQzn_yM.d.ts} +1 -9
- package/dist/index.cjs +229 -646
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +6 -6
- package/dist/index.d.ts +6 -6
- package/dist/index.js +228 -647
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { PublicClient, Address, Hex, WalletClient
|
|
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;
|