Skip to content

Commit

Permalink
fix(hubble): complete abis
Browse files Browse the repository at this point in the history
  • Loading branch information
cor committed May 20, 2024
1 parent 0b7c142 commit 09a5d7f
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions evm/evm.nix
Original file line number Diff line number Diff line change
Expand Up @@ -328,8 +328,16 @@
${contracts}/out/OwnableIBCHandler.sol/OwnableIBCHandler.json \
${contracts}/out/IBCChannelHandshake.sol/IBCChannelHandshake.json > ibc-handler.json
cat ${contracts}/out/Relay.sol/UCS01Relay.json | jq --compact-output '.abi' > ucs-01.json
cat ${contracts}/out/NFT.sol/UCS02NFT.json | jq --compact-output '.abi' > ucs-02.json
jq --compact-output --slurp 'map(.abi) | add' \
${contracts}/out/Relay.sol/IRelay.json \
${contracts}/out/Relay.sol/UCS01Relay.json \
${contracts}/out/Relay.sol/RelayLib.json \
${contracts}/out/Relay.sol/RelayPacketLib.json > ucs-01.json
jq --compact-output --slurp 'map(.abi) | add' \
${contracts}/out/NFT.sol/NFTLib.json \
${contracts}/out/NFT.sol/NFTPacketLib.json \
${contracts}/out/NFT.sol/UCS02NFT.json > ucs-02.json
'';


Expand Down

0 comments on commit 09a5d7f

Please sign in to comment.