Skip to content

Commit

Permalink
update registry deposit amount
Browse files Browse the repository at this point in the history
  • Loading branch information
lachlanglen committed Oct 31, 2023
1 parent ac2dc22 commit e13dd52
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/potlock/widget/Project/CreateForm.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ const handleCreateProject = (e) => {
{
contractName: registryId,
methodName: "register",
deposit: Big(JSON.stringify(potlockRegistryArgs).length * 0.00003).mul(Big(10).pow(24)),
deposit: Big(0.05).mul(Big(10).pow(24)),
args: potlockRegistryArgs,
}
);
Expand Down
2 changes: 1 addition & 1 deletion build/potlock/src/Project/CreateForm.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ const handleCreateProject = (e) => {
{
contractName: registryId,
methodName: "register",
deposit: Big(JSON.stringify(potlockRegistryArgs).length * 0.00003).mul(Big(10).pow(24)),
deposit: Big(0.05).mul(Big(10).pow(24)),
args: potlockRegistryArgs,
}
);
Expand Down

0 comments on commit e13dd52

Please sign in to comment.