Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions examples/default/anvil.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
FROM --platform=linux/amd64 ghcr.io/foundry-rs/foundry:latest

USER root

RUN apt-get update && \
apt-get install -y curl && \
rm -rf /var/lib/apt/lists/*
Expand Down
4 changes: 2 additions & 2 deletions examples/demo-canvas/tasks/enable-bubble-minting.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ export async function enableBubbleMintTask({ deployConfig, deployedContracts }:
const shouldEnable = await askQuestion('\nDo you want to enable minting for bubbles? (y/n): ');

if (shouldEnable.toLowerCase() === 'y') {
enableMint(publicClient, deployConfig.patchworkProtocol as `0x${string}`, bubbleContractAddress, account, walletClient);
await enableMint(publicClient, deployConfig.patchworkProtocol as `0x${string}`, bubbleContractAddress, account, walletClient);
}
}
} catch (error) {
Expand All @@ -153,7 +153,7 @@ export async function enableBubbleMintTask({ deployConfig, deployedContracts }:

//add bubble as operator of scope
try {
addOperator(deployConfig.patchworkProtocol as `0x${string}`, 'canvas-demo', bubbleContractAddress, publicClient, account, walletClient);
await addOperator(deployConfig.patchworkProtocol as `0x${string}`, 'canvas-demo', bubbleContractAddress, publicClient, account, walletClient);
} catch (error) {
console.error('Error adding bubble as operator of scope:', error);
throw error;
Expand Down
2 changes: 1 addition & 1 deletion packages/create-patchwork/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-patchwork",
"version": "0.4.2",
"version": "0.4.3",
"description": "",
"type": "module",
"main": "dist/index.js",
Expand Down