-
Notifications
You must be signed in to change notification settings - Fork 27
feat: upgrade gno feed #1522
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: upgrade gno feed #1522
Changes from 9 commits
754f97e
3775d3c
890cc09
ef5b716
82d8e0f
65caba5
03bd062
e51987f
a48cb39
a89ca9b
f4efd68
e189a8c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,7 +5,7 @@ import AppRoot from "@/dapp-root/App"; | |
| const config: AppConfig = { | ||
| disableBuyTokensButton: true, | ||
| disableDAppStore: true, | ||
| forceNetworkList: ["gno-test5", "gno-zenao"], | ||
| forceNetworkList: ["gno-test5", "gno-zenao", "gno-zenao-staging"], | ||
| forceDAppsList: ["feed", "organizations"], | ||
| defaultNetworkId: "gno-test5", | ||
|
||
| homeScreen: "Feed", | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,5 @@ | ||
| const { getDefaultConfig } = require("expo/metro-config"); | ||
| const path = require("path"); | ||
| module.exports = (() => { | ||
| const config = getDefaultConfig(__dirname); | ||
|
|
||
|
|
@@ -15,6 +16,10 @@ module.exports = (() => { | |
| extraNodeModules: { | ||
| crypto: require.resolve("crypto-browserify"), | ||
| stream: require.resolve("stream-browserify"), | ||
| "@bufbuild/protobuf/codegenv2": path.resolve( | ||
| __dirname, | ||
| "node_modules/@bufbuild/protobuf/dist/cjs/codegenv2/index.js", | ||
| ), | ||
|
||
| }, | ||
| }; | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -4516,6 +4516,7 @@ | |||||
| "backendEndpoint": "http://localhost:9090", | ||||||
| "vaultContractAddress": "", | ||||||
| "daoRegistryPkgPath": "gno.land/r/teritori/dao_registry", | ||||||
| "socialFeedsFeedId": "1", | ||||||
| "socialFeedsPkgPath": "gno.land/r/teritori/social_feeds", | ||||||
| "socialFeedsDAOPkgPath": "gno.land/r/teritori/social_feeds_dao", | ||||||
| "nameServiceContractAddress": "gno.land/r/demo/users", | ||||||
|
|
@@ -4571,6 +4572,7 @@ | |||||
| "nameServiceContractAddress": "gno.land/r/demo/users", | ||||||
| "nameServiceDefaultImage": "ipfs://bafkreigqm3i4urywxohvpkbz5sgxosiogwn433ufmzz7eqldjxoi6xmwma", | ||||||
| "daoRegistryPkgPath": "gno.land/r/teritori/dao_registry", | ||||||
| "socialFeedsFeedId": "1", | ||||||
|
||||||
| "socialFeedsFeedId": "1", | |
| "globalFeedId": "1", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done in commit a89ca9b
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -23,6 +23,7 @@ | |
| "engineStrict": true, | ||
| "dependencies": { | ||
| "@axelar-network/axelarjs-sdk": "^0.13.6", | ||
| "@bufbuild/protobuf": "^2.6.0", | ||
| "@chain-registry/types": "^0.17.1", | ||
| "@chain-registry/utils": "1.18.0", | ||
| "@cosmjs/amino": "0.32.2", | ||
|
|
@@ -82,6 +83,7 @@ | |
| "@types/markdown-it-footnote": "^3.0.4", | ||
| "@types/papaparse": "^5.3.14", | ||
| "@types/pluralize": "^0.0.33", | ||
| "@yornaath/batshit": "^0.10.1", | ||
|
||
| "assert": "^2.1.0", | ||
| "axios": "^1.6.2", | ||
| "bech32": "^2.0.0", | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we can remove test5
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done in commit a89ca9b