diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy-devnet.yml
similarity index 85%
rename from .github/workflows/deploy.yml
rename to .github/workflows/deploy-devnet.yml
index 0c681334..e1f6dfef 100644
--- a/.github/workflows/deploy.yml
+++ b/.github/workflows/deploy-devnet.yml
@@ -1,10 +1,10 @@
-name: deploy
+name: deploy-devnet
on:
push:
branches: [main]
repository_dispatch:
- types: deploy
+ types: deploy-devnet
workflow_dispatch:
jobs:
@@ -32,13 +32,13 @@ jobs:
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: 'us-east-1'
- name: Deploy to S3 bucket
- run: aws s3 sync ./build/ s3://${{ secrets.AWS_S3_BUCKET }} --delete
+ run: aws s3 sync ./build/ s3://${{ secrets.AWS_S3_BUCKET_DEVNET }} --delete
- name: Slack Notification
uses: rtCamp/action-slack-notify@master
env:
SLACK_ICON_EMOJI: ':nerd_face:'
- SLACK_USERNAME: ${{ secrets.AWS_S3_BUCKET }}
- SLACK_MESSAGE: ${{ secrets.AWS_S3_BUCKET }}
+ SLACK_USERNAME: ${{ secrets.AWS_S3_BUCKET_DEVNET }}
+ SLACK_MESSAGE: ${{ secrets.AWS_S3_BUCKET_DEVNET }}
SLACK_FOOTER: ''
MSG_MINIMAL: true
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
diff --git a/.github/workflows/deploy-mainnet.yml b/.github/workflows/deploy-mainnet.yml
new file mode 100644
index 00000000..688c6f8f
--- /dev/null
+++ b/.github/workflows/deploy-mainnet.yml
@@ -0,0 +1,44 @@
+name: deploy-mainnet
+
+on:
+ push:
+ branches: [main]
+ repository_dispatch:
+ types: deploy-mainnet
+ workflow_dispatch:
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v2
+ with:
+ ref: main
+ - name: Use Node.js
+ uses: actions/setup-node@v1
+ with:
+ node-version: '16.x'
+ - name: Setup yarn
+ run: npm install -g yarn
+ - run: yarn install
+ - run: yarn build:mainnet
+ env:
+ CI: false
+ - name: Configure AWS Credentials
+ uses: aws-actions/configure-aws-credentials@v1
+ with:
+ aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
+ aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
+ aws-region: 'us-east-1'
+ - name: Deploy to S3 bucket
+ run: aws s3 sync ./build/ s3://${{ secrets.AWS_S3_BUCKET_MAINNET }} --delete
+ - name: Slack Notification
+ uses: rtCamp/action-slack-notify@master
+ env:
+ SLACK_ICON_EMOJI: ':nerd_face:'
+ SLACK_USERNAME: ${{ secrets.AWS_S3_BUCKET_MAINNET }}
+ SLACK_MESSAGE: ${{ secrets.AWS_S3_BUCKET_MAINNET }}
+ SLACK_FOOTER: ''
+ MSG_MINIMAL: true
+ SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
diff --git a/.github/workflows/deploy-testnet.yml b/.github/workflows/deploy-testnet.yml
new file mode 100644
index 00000000..986fd63b
--- /dev/null
+++ b/.github/workflows/deploy-testnet.yml
@@ -0,0 +1,44 @@
+name: deploy-testnet
+
+on:
+ push:
+ branches: [main]
+ repository_dispatch:
+ types: deploy-testnet
+ workflow_dispatch:
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v2
+ with:
+ ref: main
+ - name: Use Node.js
+ uses: actions/setup-node@v1
+ with:
+ node-version: '16.x'
+ - name: Setup yarn
+ run: npm install -g yarn
+ - run: yarn install
+ - run: yarn build:testnet
+ env:
+ CI: false
+ - name: Configure AWS Credentials
+ uses: aws-actions/configure-aws-credentials@v1
+ with:
+ aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
+ aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
+ aws-region: 'us-east-1'
+ - name: Deploy to S3 bucket
+ run: aws s3 sync ./build/ s3://${{ secrets.AWS_S3_BUCKET_TESTNET }} --delete
+ - name: Slack Notification
+ uses: rtCamp/action-slack-notify@master
+ env:
+ SLACK_ICON_EMOJI: ':nerd_face:'
+ SLACK_USERNAME: ${{ secrets.AWS_S3_BUCKET_TESTNET }}
+ SLACK_MESSAGE: ${{ secrets.AWS_S3_BUCKET_TESTNET }}
+ SLACK_FOOTER: ''
+ MSG_MINIMAL: true
+ SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
diff --git a/src/pages/Dashboard/widgets/Transactions/Transactions.tsx b/src/pages/Dashboard/widgets/Transactions/Transactions.tsx
index 36a02f1d..bde355e2 100644
--- a/src/pages/Dashboard/widgets/Transactions/Transactions.tsx
+++ b/src/pages/Dashboard/widgets/Transactions/Transactions.tsx
@@ -22,10 +22,10 @@ export const Transactions = (payload: TransactionsPropsType) => {
getTransactions();
}, []);
- if (!isLoading && !transactions) {
+ if (!isLoading && transactions.length === 0) {
return (
No transactions found No transactions found