Skip to content

Commit

Permalink
chore: rename social_feeds_v5
Browse files Browse the repository at this point in the history
  • Loading branch information
hthieu1110 committed Aug 22, 2023
1 parent ea6a39b commit 95285aa
Show file tree
Hide file tree
Showing 14 changed files with 24 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"gno.land/p/demo/jsonutil_v2"
"gno.land/r/demo/dao_registry_v5"
"gno.land/r/demo/groups_v6"
social_feeds "gno.land/r/demo/social_feeds"
social_feeds "gno.land/r/demo/social_feeds_v5"
)

var (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ GNOKEY = gnokey maketx call \
-send "" \
-broadcast

ADDPKG = gnokey maketx addpkg \
-deposit="1ugnot" \
-gas-fee="1ugnot" \
-gas-wanted="5000000" \
-chainid="teritori-1" \
-remote="https://testnet.gno.teritori.com:26657" \
-broadcast="true" \

.PHONY: create_feed
create_feed:
${GNOKEY} \
Expand Down Expand Up @@ -87,5 +95,19 @@ add_member:
-args "" \
${KEY}

.PHONY: add_pkg_social_feeds
add_pkg_social_feeds:
${ADDPKG} \
-pkgdir="." \
-pkgpath="gno.land/r/demo/social_feeds_v5" \
${KEY}

.PHONY: add_pkg_social_feeds_dao
add_pkg_social_feeds_dao:
${ADDPKG} \
-pkgdir="../social_feeds_dao" \
-pkgpath="gno.land/r/demo/social_feeds_dao" \
${KEY}

.PHONY: init
init: create_feed create_post create_post tip_post flag_post
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module gno.land/r/demo/social_feeds
module gno.land/r/demo/social_feeds_v5

require (
"gno.land/p/demo/ufmt" v0.0.0-latest
Expand Down

0 comments on commit 95285aa

Please sign in to comment.