Skip to content

Commit

Permalink
fix icon (#402)
Browse files Browse the repository at this point in the history
* fix icon

* remove armada
  • Loading branch information
jmzwar authored Aug 15, 2024
1 parent 97104af commit cdb925b
Show file tree
Hide file tree
Showing 59 changed files with 25 additions and 673 deletions.
49 changes: 1 addition & 48 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,28 +78,6 @@ commands:
curl --silent --request POST --user "$IPFS_USER:$IPFS_PASS" "<< parameters.ipfs-cluster-api >>/pin/add?arg=$IPFS_CID" | tee /tmp/pin-add-$IPFS_CID.log
cat /tmp/pin-add-$IPFS_CID.log | jq
armada-deploy:
parameters:
source-dir:
type: string
steps:
- run:
name: 'Build Armada bundle'
command: |
yarn armada:bundle armada-bundle "<< parameters.source-dir >>"
CHECKSUM=$(yarn armada:checksum armada-bundle.tgz)
echo 'export CHECKSUM='${CHECKSUM} >> $BASH_ENV
- store_artifacts:
path: 'armada-bundle.tgz'

- run:
name: 'Push to Armada'
command: |
# https://support.circleci.com/hc/en-us/articles/5034956515355-How-to-Programmatically-Construct-the-URLs-for-Artifacts
BUNDLE_URL=https://output.circle-artifacts.com/output/job/${CIRCLE_WORKFLOW_JOB_ID}/artifacts/${CIRCLE_NODE_INDEX}/armada-bundle.tgz
yarn armada:publish $ARMADA_PROJECT_ID $BUNDLE_URL $CHECKSUM --key=$ARMADA_PRIVATE_KEY
jobs:
checks:
working_directory: /tmp/app
Expand Down Expand Up @@ -318,18 +296,6 @@ jobs:
ipfs-cluster-api: 'https://ipfs.synthetix.io/api/v0'
ipns-key: 'v3.synthetix.eth'

liquidity-armada:
working_directory: /tmp/app
docker:
- image: cimg/node:<< pipeline.parameters.node-version >>
resource_class: large
steps:
- checkout
- yarn-install
- run: yarn workspace @snx-v3/liquidity build
- armada-deploy:
source-dir: './liquidity/ui/dist'

workflows:
ui:
unless:
Expand Down Expand Up @@ -361,20 +327,7 @@ workflows:
liquidity-e2e-base-mainnet,
#liquidity-e2e-sepolia,
]
- liquidity-armada:
requires:
- checks
- typecheck
- tests
- liquidity-cy
- liquidity-e2e-base-mainnet
#- liquidity-e2e-sepolia
filters:
branches:
only:
- release
- master
- armada

- liquidity-ipfs:
requires:
- checks
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed .yarn/cache/bl-npm-4.1.0-7f94cdcf3f-b7904e66ed.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed .yarn/cache/rc-npm-1.2.8-d6768ac936-5c4d72ae7e.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed .yarn/cache/tmp-npm-0.0.33-bcbf65df2a-09c0abfd16.zip
Binary file not shown.
Binary file removed .yarn/cache/usb-npm-2.9.0-679ef52942-ab68d4247a.zip
Binary file not shown.
Binary file not shown.
2 changes: 2 additions & 0 deletions liquidity/ui/src/pages/Manage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ export function useCollateralDisplayName(collateralSymbol?: string) {
if (collateralSymbol?.toLowerCase() === 'sstatausdc') {
return 'sStataUSDC';
}

return collateralSymbol;
}, [network?.id, network?.preset, collateralSymbol]);
}

Expand Down
6 changes: 1 addition & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,7 @@
"upgrade-contracts": "yarn up @synthetixio/v3-contracts --recursive",
"svg": "svgo --config svgo.config.js --recursive ./",
"svg:check": "yarn svg && git diff --exit-code **/*.svg",
"download-cci-coverage": "download-cci-coverage",
"armada:bundle": "armada bundle create",
"armada:checksum": "armada bundle checksum",
"armada:publish": "armada project publish --network testnet-sepolia"
"download-cci-coverage": "download-cci-coverage"
},
"devDependencies": {
"@babel/core": "^7.24.6",
Expand All @@ -40,7 +37,6 @@
"@types/jest": "^29.5.8",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"armada-cli": "^0.4.0",
"babel-jest": "^29.7.0",
"babel-plugin-module-resolver": "^5.0.0",
"eslint": "^8.53.0",
Expand Down
Loading

0 comments on commit cdb925b

Please sign in to comment.