Skip to content

Commit

Permalink
misc
Browse files Browse the repository at this point in the history
  • Loading branch information
x24870 committed Mar 19, 2023
1 parent d66de72 commit ae95806
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
.aptos/
build/
config.yaml
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ fund:
--profile user --account user --amount 999999999

compile:
aptos move compile --skip-fetch-latest-git-deps --bytecode-version 6 --named-addresses owner=owner
aptos move compile --bytecode-version 6 --named-addresses owner=${profile}

compile_testnet:
aptos move compile --named-addresses owner=testnet

publish:
aptos move publish --named-addresses owner=owner \
--bytecode-version 6 \
--sender-account owner --profile owner
aptos move publish --named-addresses owner=${profile} \
--bytecode-version=6 --included-artifacts=none \
--sender-account ${profile} --profile ${profile}

publish_testnet:
aptos move publish --named-addresses owner=testnet \
Expand Down
1 change: 0 additions & 1 deletion scripts/add_collection.move
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
script {
use std::string;
use std::vector;

fun add_collection(sender: &signer){
let collection = string::utf8(b"BAYC");
Expand Down

0 comments on commit ae95806

Please sign in to comment.