Skip to content

Commit

Permalink
Merge pull request #77 from CudoVentures/cudos-dev
Browse files Browse the repository at this point in the history
Release v1.2.3.3
  • Loading branch information
maptuhec authored Dec 13, 2022
2 parents 6897c7e + f43447a commit 5c576e5
Show file tree
Hide file tree
Showing 48 changed files with 4,319 additions and 770 deletions.
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@
**/cypress/fixtures/*
**/src/graphql/types.tsx
**/src/graphql/desmos_profile.ts
**/src/pages/_document.tsx
20 changes: 13 additions & 7 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,9 @@
}
],
"rules": {
"max-len": "off",
"no-console": "off",
"camelcase": "off",
"react/destructuring-assignment": "off",
"no-bitwise": "off",
"@typescript-eslint/ban-types": "warn",
Expand All @@ -73,12 +76,15 @@
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": ["error", {
"ignoreRestSiblings": true,
"varsIgnorePattern": "^_",
"argsIgnorePattern": "^_"
}],
"no-param-reassign": "warn",
"@typescript-eslint/no-unused-vars": [
"error",
{
"ignoreRestSiblings": true,
"varsIgnorePattern": "^_",
"argsIgnorePattern": "^_"
}
],
"no-param-reassign": "off",
"no-restricted-globals": "warn",
"react/prop-types": "off",
"jsx-a11y/interactive-supports-focus": "off",
Expand Down Expand Up @@ -138,4 +144,4 @@
}
]
}
}
}
90 changes: 0 additions & 90 deletions .github/workflows/docker_production.yml

This file was deleted.

69 changes: 0 additions & 69 deletions .github/workflows/docker_staging.yml

This file was deleted.

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,4 @@ yarn-error.log*


test.js
/.project
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Big Dipper 2.0 ✨ (Cosmos Based Chains)
Big Dipper is an open-source block explorer and token management tool serving over 10 proof-of-stake blockchains. It has been forked more than 100 times on GitHub and has served audiences from 140 countries and regions.
The CUDOS explorer allows you to visualise blocks, network statistics & transaction history for the CUDOS network | Powering the Metaverse, NFTs, Web3, & gaming

**This repo contains the UI of big dipper 2.0 only**

Expand Down
5 changes: 4 additions & 1 deletion public/locales/en/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,10 @@
"nothingToShow": "Nothing to show",
"notFound": "Not Found",
"useValidatorAddress": "Please use a validator address instead",
"description": "Big Dipper is an open-source block explorer and token management tool serving over 10 proof-of-stake blockchains. It has been forked more than 100 times on GitHub and has served audiences from 140 countries and regions.",
"description": "The CUDOS explorer allows you to visualise blocks, network statistics & transaction history for the CUDOS network | Powering the Metaverse, NFTs, Web3, & gaming.",
"homeTitleDescription": "Visualise blocks, transactions & network metrics",
"transactionsTitle": "CUDOS Blockchain transactions | View & search transactions",
"transactionsDescription": "Use the CUDOS blockchain explorer to search for transactions on the network via tx hash, block height / address",
"supply": "Supply",
"blockTimeAgo": "Latest block displayed was {{time}}",
"settings": "Settings",
Expand Down
2 changes: 1 addition & 1 deletion public/locales/en/message_contents.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"MsgCreateVestingAccount": "Vesting account created for <0>{{toAddress}}</0>",
"MsgCreatePeriodicVestingAccount": "Periodic vesting account created for <0>{{toAddress}}</0>",
"txStoreCode": "<0>{{sender}}</0> stored code",
"txInstantiateContract": "<0>{{sender}}</0> initiated contract with code ID <1>{{codeId}}</1>",
"txInstantiateContract": "<0>{{sender}}</0> instantiated <1>{{contractType}}</1>contract <2>{{contractAddress}}</2> with code ID <3>{{codeId}}</3>",
"txExecuteContract": "<0>{{user}}</0> executed <1>{{method}}</1> on <2>{{address}}</2>",
"txMigrateContract": "<0>{{admin}}</0> migrated contract <1>{{contract}}</1> to <1>{{newCodeId}}</1>",
"txUpdateContractAdmin": "<0>{{admin}}</0> updated contract <1>{{contract}}</1> admin to <2>{{newAdmin}}</2>",
Expand Down
Loading

0 comments on commit 5c576e5

Please sign in to comment.