Makefile 425 B

1234567891011121314
  1. .PHONY: artifacts
  2. artifacts: build
  3. .PHONY: build
  4. build:
  5. aptos move compile --save-metadata --named-addresses wormhole=0x251011524cd0f76881f16e7c2d822f0c1c9510bfd2430ba24e1b3d52796df204,deployer=0x277fa055b6a73c42c0662d5236c65c864ccbf2d4abd21f174a30c8b786eab84b,pyth=0x277fa055b6a73c42c0662d5236c65c864ccbf2d4abd21f174a30c8b786eab84b
  6. .PHONY: clean
  7. clean:
  8. aptos move clean --assume-yes
  9. .PHONY: test
  10. test:
  11. aptos move test