Skip to content

Commit

Permalink
feat(gno): move from test4 => test5 (#1415)
Browse files Browse the repository at this point in the history
* feat: remove test4 network config + add test 5 network config

* fix: adjust makefile to deploy teritori pkgs on gno

* fix: use correct profile pkg path

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

---------

Signed-off-by: Norman Meier <[email protected]>
Co-authored-by: Norman Meier <[email protected]>
Co-authored-by: n0izn0iz <[email protected]>
  • Loading branch information
3 people authored Nov 23, 2024
1 parent 13cf4eb commit a3f89ea
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 28 deletions.
8 changes: 4 additions & 4 deletions gno/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
KEY = teritori-test4-seed
KEY = teritori
BASE = teritori
REMOTE = https://rpc.gno.land:443
CHAIN_ID = portal-loop
REMOTE = https://rpc.test5.gno.land
CHAIN_ID = test5

.PHONY: add_social_feeds_realm add_utf16_pkg add_ujson_pkg add_flags_index_pkg add_dao_interfaces_pkg add_social_feed all

Expand All @@ -21,7 +21,7 @@ add_social_feed:
-pkgpath "gno.land/r/${BASE}/social_feeds" \
-func="CreateFeed" \
-gas-fee="1000000ugnot" \
-gas-wanted="3000000" \
-gas-wanted="5000000" \
-remote="${REMOTE}" \
-chainid="${CHAIN_ID}" \
-broadcast \
Expand Down
20 changes: 10 additions & 10 deletions networks.json
Original file line number Diff line number Diff line change
Expand Up @@ -4615,9 +4615,9 @@
"txIndexerURL": "https://indexer.test3.gno.testnet.teritori.com"
},
{
"id": "gno-test4",
"id": "gno-test5",
"kind": "Gno",
"displayName": "Gno Test4",
"displayName": "Gno Test5",
"icon": "gno.svg",
"features": [
"SocialFeed",
Expand Down Expand Up @@ -4645,12 +4645,12 @@
}
],
"stakeCurrency": "ugnot",
"idPrefix": "gnotest4",
"chainId": "test4",
"endpoint": "https://rpc.test4.gno.land:443",
"txExplorer": "https://gnoscan.io/transactions/details?txhash=$hash&chainId=test4",
"accountExplorer": "https://gnoscan.io/accounts/$address?chainId=test4",
"contractExplorer": "https://gnoscan.io/realms/details?path=$address&chainId=test4",
"idPrefix": "gnotest5",
"chainId": "test5",
"endpoint": "https://rpc.test5.gno.land",
"txExplorer": "https://gnoscan.io/transactions/details?txhash=$hash&chainId=test5",
"accountExplorer": "https://gnoscan.io/accounts/$address?chainId=test5",
"contractExplorer": "https://gnoscan.io/realms/details?path=$address&chainId=test5",
"testnet": true,
"backendEndpoint": "https://dapp-backend.testnet.teritori.com",
"gnowebURL": "https://gno.land",
Expand All @@ -4660,8 +4660,8 @@
"socialFeedsPkgPath": "gno.land/r/teritori/social_feeds",
"socialFeedsDAOPkgPath": "gno.land/r/teritori/social_feeds_dao",
"daoInterfacesPkgPath": "gno.land/p/teritori/dao_interfaces",
"profilePkgPath": "gno.land/r/teritori/profile",
"txIndexerURL": "https://indexer.test4.gno.testnet.teritori.com"
"profilePkgPath": "gno.land/r/demo/profile",
"txIndexerURL": "https://indexer.test5.gno.testnet.teritori.com"
},
{
"id": "cosmos-registry:gravitybridge",
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { gnoCurrencies } from "./currencies";
import { GnoNetworkInfo, NetworkFeature, NetworkKind } from "../types";

export const gnoTest4Network: GnoNetworkInfo = {
id: "gno-test4",
export const gnoTest5Network: GnoNetworkInfo = {
id: "gno-test5",
kind: NetworkKind.Gno,
displayName: "Gno Test4",
displayName: "Gno Test5",
icon: "gno.svg",
features: [
NetworkFeature.SocialFeed,
Expand All @@ -21,14 +21,14 @@ export const gnoTest4Network: GnoNetworkInfo = {
],
currencies: gnoCurrencies,
stakeCurrency: "ugnot",
idPrefix: "gnotest4",
chainId: "test4",
endpoint: "https://rpc.test4.gno.land:443",
idPrefix: "gnotest5",
chainId: "test5",
endpoint: "https://rpc.test5.gno.land",
txExplorer:
"https://gnoscan.io/transactions/details?txhash=$hash&chainId=test4",
accountExplorer: "https://gnoscan.io/accounts/$address?chainId=test4",
"https://gnoscan.io/transactions/details?txhash=$hash&chainId=test5",
accountExplorer: "https://gnoscan.io/accounts/$address?chainId=test5",
contractExplorer:
"https://gnoscan.io/realms/details?path=$address&chainId=test4",
"https://gnoscan.io/realms/details?path=$address&chainId=test5",
testnet: true,
backendEndpoint: "https://dapp-backend.testnet.teritori.com",
gnowebURL: "https://gno.land",
Expand All @@ -39,6 +39,6 @@ export const gnoTest4Network: GnoNetworkInfo = {
socialFeedsPkgPath: "gno.land/r/teritori/social_feeds",
socialFeedsDAOPkgPath: "gno.land/r/teritori/social_feeds_dao",
daoInterfacesPkgPath: "gno.land/p/teritori/dao_interfaces",
profilePkgPath: "gno.land/r/teritori/profile",
txIndexerURL: "https://indexer.test4.gno.testnet.teritori.com",
profilePkgPath: "gno.land/r/demo/profile",
txIndexerURL: "https://indexer.test5.gno.testnet.teritori.com",
};
6 changes: 3 additions & 3 deletions packages/networks/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { NetworkFeature, NetworkFeatureObject } from "./features";
import { gnoDevNetwork } from "./gno-dev";
import { gnoPortalNetwork } from "./gno-portal";
import { gnoTest3Network } from "./gno-test3";
import { gnoTest4Network } from "./gno-test4";
import { gnoTest5Network } from "./gno-test5";
import { osmosisNetwork } from "./osmosis";
import { osmosisTestnetNetwork } from "./osmosis-testnet";
// import { solanaNetwork } from "./solana";
Expand Down Expand Up @@ -49,7 +49,7 @@ const packageNetworks = [
osmosisTestnetNetwork,
gnoPortalNetwork,
gnoTest3Network,
gnoTest4Network,
gnoTest5Network,
gnoDevNetwork,
polygonMumbaiNetwork,
polygonNetwork,
Expand All @@ -67,7 +67,7 @@ export const defaultEnabledNetworks = [
"cosmos-hub",
"osmosis",
"gno-portal",
"gno-test4",
"gno-test5",
"cosmos-registry:juno",
"cosmos-registry:kujira",
"cosmos-registry:axelar",
Expand Down

0 comments on commit a3f89ea

Please sign in to comment.