File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed
packages/thirdweb/src/extensions/prebuilts Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,11 @@ type ComputeRefDeploymentsOptions = {
1010 paramValue : string | ImplementationConstructorParam ;
1111} ;
1212
13+ /**
14+ * Computes addresses for published contract references in constructor params.
15+ * @returns Param value after processing references.
16+ * @internal
17+ */
1318export async function computeRefDeployments (
1419 options : ComputeRefDeploymentsOptions ,
1520) : Promise < string | string [ ] > {
Original file line number Diff line number Diff line change @@ -17,6 +17,11 @@ type ProcessRefDeploymentsOptions = {
1717 paramValue : string | ImplementationConstructorParam ;
1818} ;
1919
20+ /**
21+ * Processes published contract references in constructor params. Deploys recursively if needed.
22+ * @returns Param value after processing references.
23+ * @internal
24+ */
2025export async function processRefDeployments (
2126 options : ProcessRefDeploymentsOptions ,
2227) : Promise < string | string [ ] > {
You can’t perform that action at this time.
0 commit comments