Skip to content

Commit

Permalink
feat: deploy social feed on portal-loop (#1298)
Browse files Browse the repository at this point in the history
* feat: deploy social feed on portal-loop

Signed-off-by: Norman Meier <[email protected]>

* feat: configure portal-loop indexer

Signed-off-by: Norman Meier <[email protected]>

---------

Signed-off-by: Norman Meier <[email protected]>
  • Loading branch information
n0izn0iz authored Oct 10, 2024
1 parent 4e7a64d commit 79c5253
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 9 deletions.
22 changes: 14 additions & 8 deletions gno/Makefile
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
KEY = teritori-test4-seed
BASE = teritori
REMOTE = https://rpc.test4.gno.land:443
CHAIN_ID = test4
REMOTE = https://rpc.gno.land:443
CHAIN_ID = portal-loop

.PHONY: add_social_feeds_realm add_utf16_pkg add_ujson_pkg add_flags_index_pkg add_dao_interfaces_pkg add_social_feed all

add_social_feeds_realm:
gnokey maketx addpkg \
-deposit="1ugnot" \
-gas-fee="1ugnot" \
-gas-wanted="50000000" \
-broadcast="true" \
Expand All @@ -31,7 +30,6 @@ add_social_feed:

add_utf16_pkg:
gnokey maketx addpkg \
-deposit="1ugnot" \
-gas-fee="1ugnot" \
-gas-wanted="50000000" \
-broadcast="true" \
Expand All @@ -43,7 +41,6 @@ add_utf16_pkg:

add_ujson_pkg:
gnokey maketx addpkg \
-deposit="1ugnot" \
-gas-fee="1ugnot" \
-gas-wanted="50000000" \
-broadcast="true" \
Expand All @@ -55,7 +52,6 @@ add_ujson_pkg:

add_flags_index_pkg:
gnokey maketx addpkg \
-deposit="1ugnot" \
-gas-fee="1ugnot" \
-gas-wanted="50000000" \
-broadcast="true" \
Expand All @@ -67,7 +63,6 @@ add_flags_index_pkg:

add_dao_interfaces_pkg:
gnokey maketx addpkg \
-deposit="1ugnot" \
-gas-fee="1ugnot" \
-gas-wanted="50000000" \
-broadcast="true" \
Expand All @@ -77,4 +72,15 @@ add_dao_interfaces_pkg:
-pkgpath="gno.land/p/${BASE}/dao_interfaces" \
${KEY}

all: add_utf16_pkg add_ujson_pkg add_flags_index_pkg add_dao_interfaces_pkg add_social_feeds_realm add_social_feed
add_jsonutil_pkg:
gnokey maketx addpkg \
-gas-fee="1ugnot" \
-gas-wanted="50000000" \
-broadcast="true" \
-chainid="${CHAIN_ID}" \
-remote="${REMOTE}" \
-pkgdir="./p/jsonutil" \
-pkgpath="gno.land/p/${BASE}/jsonutil" \
${KEY}

all: add_utf16_pkg add_ujson_pkg add_jsonutil_pkg add_flags_index_pkg add_dao_interfaces_pkg add_social_feeds_realm add_social_feed
3 changes: 2 additions & 1 deletion networks.json
Original file line number Diff line number Diff line change
Expand Up @@ -4574,7 +4574,8 @@
"daoProposalSinglePkgPath": "gno.land/p/teritori/dao_proposal_single",
"daoInterfacesPkgPath": "gno.land/p/teritori/dao_interfaces",
"daoCorePkgPath": "gno.land/p/teritori/dao_core",
"profilePkgPath": "gno.land/r/demo/profile"
"profilePkgPath": "gno.land/r/demo/profile",
"txIndexerURL": "https://indexer.portal-loop.gno.testnet.teritori.com"
},
{
"id": "gno-teritori",
Expand Down
1 change: 1 addition & 0 deletions packages/networks/gno-portal/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,5 @@ export const gnoPortalNetwork: GnoNetworkInfo = {
daoInterfacesPkgPath: "gno.land/p/teritori/dao_interfaces",
daoCorePkgPath: "gno.land/p/teritori/dao_core",
profilePkgPath: "gno.land/r/demo/profile",
txIndexerURL: "https://indexer.portal-loop.gno.testnet.teritori.com",
};

0 comments on commit 79c5253

Please sign in to comment.