eth-address-index

signed metadata declarations for ethereum addresses
Log | Files | Refs

commit c09b43c7623818df7704bb7a1126394617ef60a4
parent 3612c7e680de41274dbaa1e59b89e37dd1f530cf
Author: lash <dev@holbrook.no>
Date:   Sun, 26 Mar 2023 08:18:46 +0100

Clean up makefile

Diffstat:
Mpython/tests/test_addressdeclarator.py | 1-
Msolidity/Makefile | 22----------------------
2 files changed, 0 insertions(+), 23 deletions(-)

diff --git a/python/tests/test_addressdeclarator.py b/python/tests/test_addressdeclarator.py @@ -51,7 +51,6 @@ class TestAddressDeclarator(TestAddressDeclaratorBase): def test_basic(self): - d = add_0x(os.urandom(32).hex()) nonce_oracle = RPCNonceOracle(self.accounts[0], self.rpc) diff --git a/solidity/Makefile b/solidity/Makefile @@ -1,37 +1,15 @@ SOLC = /usr/bin/solc -#all: address_declarator token_index accounts_index all: address_declarator address_declarator: $(SOLC) AddressDeclarator.sol --abi --evm-version byzantium | awk 'NR>3' > AddressDeclarator.json $(SOLC) AddressDeclarator.sol --bin --evm-version byzantium | awk 'NR>3' > AddressDeclarator.bin $(SOLC) AddressDeclarator.sol --metadata --evm-version byzantium | awk 'NR>3' > AddressDeclarator.metadata.json - #$(SOLC) AddressDeclaratorKV.sol --abi --evm-version byzantium | awk 'NR>3' > AddressDeclaratorKV.json - #$(SOLC) AddressDeclaratorKV.sol --bin --evm-version byzantium | awk 'NR>3' > AddressDeclaratorKV.bin - #$(SOLC) AddressDeclaratorKV.sol --metadata --evm-version byzantium | awk 'NR>3' > AddressDeclaratorKV.metadata.json truncate -s -1 AddressDeclarator.bin - #truncate -s -1 AddressDeclaratorKV.bin - -#token_index: -# $(SOLC) TokenUniqueSymbolIndexAddressDeclarator.sol --abi --evm-version byzantium | awk 'NR>3' > TokenUniqueSymbolIndexAddressDeclarator.json -# $(SOLC) TokenUniqueSymbolIndexAddressDeclarator.sol --bin --evm-version byzantium | awk 'NR>3' > TokenUniqueSymbolIndexAddressDeclarator.bin -# truncate -s -1 TokenUniqueSymbolIndexAddressDeclarator.bin -# -# -#accounts_index: -# $(SOLC) AccountsIndexAddressDeclarator.sol --abi --evm-version byzantium | awk 'NR>3' > AccountsIndexAddressDeclarator.json -# $(SOLC) AccountsIndexAddressDeclarator.sol --bin --evm-version byzantium | awk 'NR>3' > AccountsIndexAddressDeclarator.bin -# truncate -s -1 AccountsIndexAddressDeclarator.bin - -#test: all - #python test.py - #python test_tokenindex.py install: all cp -v *.json ../python/eth_address_declarator/data/ cp -v *.bin ../python/eth_address_declarator/data/ - #cp -v TokenUniqueSymbolIndexAddressDeclarator.{json,bin} ../python/eth_address_declarator/data/ - #cp -v AccountsIndexAddressDeclarator.{json,bin} ../python/eth_address_declarator/data/ .PHONY: test install