diff --git a/src/core/adapter/devhub-contract.jsx b/src/core/adapter/devhub-contract.jsx index 1e38772c8..d006b9331 100644 --- a/src/core/adapter/devhub-contract.jsx +++ b/src/core/adapter/devhub-contract.jsx @@ -14,7 +14,13 @@ function hasModerator({ account_id }) { } function createCommunity({ inputs }) { - return Near.call("${REPL_DEVHUB_CONTRACT}", "create_community", { inputs }); + return Near.call( + "${REPL_DEVHUB_CONTRACT}", + "create_community", + { inputs }, + Big(10).pow(14), // gas + Big(2) * Big(10).pow(24) // deposit (2N) + ); } function getCommunity({ handle }) {