Skip to content

Commit

Permalink
feat: add support for BASE chain (#103)
Browse files Browse the repository at this point in the history
* deps: upgrade core + sdk

* feat: support base for payg

* refactor: use BASE as default chain for PAYG

---------

Co-authored-by: philogicae <[email protected]>
  • Loading branch information
gmolki and philogicae authored Sep 26, 2024
1 parent 198252c commit 962c54b
Show file tree
Hide file tree
Showing 20 changed files with 468 additions and 202 deletions.
178 changes: 104 additions & 74 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "front-aleph-cloud",
"version": "0.15.2",
"version": "0.16.0",
"private": true,
"scripts": {
"dev": "next dev",
Expand All @@ -11,16 +11,16 @@
"lint:fix": "next lint --fix"
},
"dependencies": {
"@aleph-front/core": "^1.23.0",
"@aleph-sdk/account": "^1.0.3",
"@aleph-sdk/avalanche": "^1.0.3",
"@aleph-sdk/client": "^1.0.6",
"@aleph-sdk/core": "^1.0.3",
"@aleph-sdk/ethereum": "^1.0.3",
"@aleph-sdk/evm": "^1.0.3",
"@aleph-sdk/message": "^1.0.9",
"@aleph-sdk/solana": "^1.0.3",
"@aleph-sdk/superfluid": "^1.0.6",
"@aleph-front/core": "^1.23.1",
"@aleph-sdk/account": "^1.2.0",
"@aleph-sdk/avalanche": "^1.2.0",
"@aleph-sdk/client": "^1.2.0",
"@aleph-sdk/core": "^1.2.0",
"@aleph-sdk/ethereum": "^1.2.0",
"@aleph-sdk/evm": "^1.2.0",
"@aleph-sdk/message": "^1.2.0",
"@aleph-sdk/solana": "^1.2.0",
"@aleph-sdk/superfluid": "^1.2.0",
"@fortawesome/fontawesome-svg-core": "^6.3.0",
"@hookform/resolvers": "^3.1.1",
"@superfluid-finance/sdk-core": "^0.6.12",
Expand Down
9 changes: 9 additions & 0 deletions src/components/common/CRNList/cmp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,15 @@ export default function CRNList(props: CRNListProps) {
is necessary for operation.
</li>
)}
{node.issue ===
StreamNotSupportedIssue.MismatchRewardAddress && (
<li>
<strong>Stream Reward Address Mismatch:</strong> The
stream reward address registered by the node
operator and the one specified in the target CRN
configuration do not match.
</li>
)}
</ul>
<div>
Please select from the available nodes that meet all the
Expand Down
Loading

0 comments on commit 962c54b

Please sign in to comment.