Skip to content
This repository was archived by the owner on Dec 5, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
98a78d1
Added readme. Added error notifications for no detected contract
janbro Aug 14, 2019
607c6d6
Fixed source code element from stealing pointer events in padding
janbro Aug 14, 2019
5d5b26a
Updated challenge links to be dynamic. Moved challenge definitions to…
janbro Aug 14, 2019
ee2cc81
Added timeout to post deploy state update. Added ropsten to truffle c…
janbro Aug 14, 2019
c7696b8
Added heroku build files
janbro Aug 14, 2019
a04e281
Update procfile
janbro Aug 14, 2019
b41c2bb
Updated build files
janbro Aug 15, 2019
a2a95e3
Bump eslint-utils from 1.3.1 to 1.4.2 in /solidity-ctf
dependabot[bot] Sep 21, 2019
eb15038
Bump lodash.template from 4.4.0 to 4.5.0 in /solidity-ctf
dependabot[bot] Sep 21, 2019
fdda8c6
Bump mixin-deep from 1.3.1 to 1.3.2 in /solidity-ctf
dependabot[bot] Sep 21, 2019
0e2c0fe
Create LICENSE
janbro Sep 21, 2019
5e2b8c0
Bump acorn from 5.7.3 to 5.7.4 in /solidity-ctf
dependabot[bot] Apr 9, 2020
6252e8f
Bump handlebars from 4.1.2 to 4.7.6 in /solidity-ctf
dependabot[bot] Apr 9, 2020
6d7503b
Bump websocket-extensions from 0.1.3 to 0.1.4 in /solidity-ctf
dependabot[bot] Jun 7, 2020
b1ac474
Bump http-proxy from 1.17.0 to 1.18.1 in /solidity-ctf
dependabot[bot] Sep 10, 2020
fd3149b
Bump decompress from 4.2.0 to 4.2.1 in /solidity-ctf
dependabot[bot] Sep 4, 2020
08467e8
Bump decompress from 4.2.0 to 4.2.1 in /ChallengeContracts
dependabot[bot] Sep 4, 2020
601c776
Bump lodash from 4.17.15 to 4.17.19 in /ChallengeContracts
dependabot[bot] Jul 18, 2020
ad73251
Bump postcss from 7.0.16 to 7.0.36 in /solidity-ctf
dependabot[bot] Jun 16, 2021
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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@
ChallengeContracts/build
solidity-ctf/build

# secret
*.secret

# misc
.DS_Store
.env.local
Expand Down
2 changes: 0 additions & 2 deletions ChallengeContracts/contracts/Deployer.sol
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,6 @@ contract Deployer is Ownable {
public
payable
{
require(msg.value == 0.5 ether, "Must send 0.5 ether");

require(isContract(address(challenges[index])), "Challenge has not been created yet");

playersToContracts[msg.sender][index] = (new Proxy)(challenges[index]);
Expand Down
Loading