diff --git a/CHANGELOG.md b/CHANGELOG.md index 34acf325..d19316a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,20 @@ # Changelog for GoldRush Kit -## 1.0.3 +## 1.0.5 + +**Fixes** + +- `GasCard` units precision +- Actionables types +- Use `latest` for `LatestBlocks` + +**Features** + +- Added `TransactionRawLogs` component +- Added `on_page_change` function to `BlocksList` +- `ChainSelector` now bifurcates between the chains priority + +## 1.0.4 **Fixes** @@ -15,6 +29,18 @@ - Added `in/out`s for all list of transactions +## 1.0.3 + +**Fixes** + +- Use `latest` for `LatestTransactions` +- `timestampParser` now comes from the SDK + +**Features** + +- Added actionables for `LatestBlocks` and `LatestTransactions` +- Added prop `changeSelectedChain` in `AddressActivityList` to optionally change the selected chain on clicking + ## 1.0.2 **Fixes** diff --git a/package-lock.json b/package-lock.json index fba1c4a3..b286d670 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@covalenthq/goldrush-kit", - "version": "1.0.4", + "version": "1.0.5", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@covalenthq/goldrush-kit", - "version": "1.0.4", + "version": "1.0.5", "license": "Apache-2.0", "dependencies": { "@covalenthq/client-sdk": "^2.2.1", diff --git a/package.json b/package.json index a2fa9095..30e206e0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@covalenthq/goldrush-kit", - "version": "1.0.4", + "version": "1.0.5", "description": "Beautifully designed React components for web3 dApp frontend. Easily fetch data from 200+ blockchains. Open-source. Customizable.", "exports": { ".": { diff --git a/src/components/Molecules/index.ts b/src/components/Molecules/index.ts index cf324e23..20052e4a 100644 --- a/src/components/Molecules/index.ts +++ b/src/components/Molecules/index.ts @@ -18,5 +18,6 @@ export { TokenBalancesList } from "./Token/TokenBalancesList/TokenBalancesList"; export { TokenTransfersList } from "./Token/TokenTransfersList/TokenTransfersList"; export { LatestTransactions } from "./Transaction/LatestTransactions/LatestTransactions"; export { TransactionDetails } from "./Transaction/TransactionDetails/TransactionDetails"; +export { TransactionRawLogs } from "./Transaction/TransactionRawLogs/TransactionRawLogs"; export { TransactionReceipt } from "./Transaction/TransactionReceipt/TransactionReceipt"; export { TransactionsList } from "./Transaction/TransactionsList/TransactionsList";