Skip to content

Commit 4a66fc2

Browse files
committed
chore(fast-usdc-deploy): Use esbuilt contract pervasively
1 parent 2d57aa8 commit 4a66fc2

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

Diff for: packages/fast-usdc-deploy/src/fast-usdc-evm-solana.build.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ export const proposalBuilder = async (
2929
options,
3030
installKeys: {
3131
fastUsdc: publishRef(
32-
install('@aglocal/fast-usdc-contract/src/fast-usdc.contract.ts'),
32+
install(
33+
'@aglocal/fast-usdc-deploy/dist/fast-usdc.contract.bundle.js',
34+
),
3335
),
3436
},
3537
},

Diff for: packages/fast-usdc-deploy/src/fast-usdc-fee-config.build.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ export const proposalBuilder = async (
2929
options,
3030
installKeys: {
3131
fastUsdc: publishRef(
32-
install('@aglocal/fast-usdc-contract/src/fast-usdc.contract.ts'),
32+
install(
33+
'@aglocal/fast-usdc-deploy/dist/fast-usdc.contract.bundle.js',
34+
),
3335
),
3436
},
3537
},

Diff for: packages/fast-usdc-deploy/src/fast-usdc-reconfigure.build.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ export const proposalBuilder = async ({ publishRef, install }, options) => {
3131
options,
3232
installKeys: {
3333
fastUsdc: publishRef(
34-
install('@aglocal/fast-usdc-contract/src/fast-usdc.contract.ts'),
34+
install(
35+
'@aglocal/fast-usdc-deploy/dist/fast-usdc.contract.bundle.js',
36+
),
3537
),
3638
},
3739
},

Diff for: packages/fast-usdc-deploy/src/start-fast-usdc.build.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,9 @@ export const defaultProposalBuilder = async (
8484
options: toExternalConfig(config, crossVatContext, FastUSDCConfigShape),
8585
installKeys: {
8686
fastUsdc: publishRef(
87-
install('@aglocal/fast-usdc-contract/src/fast-usdc.contract.ts'),
87+
install(
88+
'@aglocal/fast-usdc-deploy/dist/fast-usdc.contract.bundle.js',
89+
),
8890
),
8991
},
9092
},

0 commit comments

Comments
 (0)