Move solidity source to subfolder

This commit is contained in:
nolash
2021-04-29 08:37:41 +02:00
parent 08040874ef
commit d15dabb4b5
10 changed files with 9 additions and 71 deletions

View File

@@ -1,17 +0,0 @@
import sys
import web3
f = open(sys.argv[1], 'r')
z = b''
for i in range(32):
z += b'\x00'
while True:
l = f.readline()
if l == '':
break
#print('line {}'.format(l))
h = web3.Web3.keccak(text=l)
z = bytes([a ^ b for a, b in zip(h, z)])
#print(h.hex(), z.hex())
f.close()
print(h[:4].hex())