diff --git a/blog/2024-07-01-case-study-how-wallets-use-push-to-become-super-app/index.md b/blog/2024-07-01-case-study-how-wallets-use-push-to-become-super-app/index.md index 070fba87151..e8ec95e5532 100644 --- a/blog/2024-07-01-case-study-how-wallets-use-push-to-become-super-app/index.md +++ b/blog/2024-07-01-case-study-how-wallets-use-push-to-become-super-app/index.md @@ -137,7 +137,7 @@ Push powers the communication middleware for enabling Push notifications for pro Push powers the necessary middleware and infrastructure for [Wherever](https://www.wherever.im/), a third-party communications service to show notifications in wallet and platform frontend as well as share with the user’s telegram and email. -On a parallel front, As users continue to become mature and conscious about on-chain security, the demand for hardware wallets will be ever-increasing. Push can also be integrated with companion Apps of Hardware Wallets like [KeepKay](https://www.keepkey.com/), ensuring user’s with mission critical application updates independant of any wallet type. +On a parallel front, As users continue to become mature and conscious about on-chain security, the demand for hardware wallets will be ever-increasing. Push can also be integrated with companion Apps of Hardware Wallets like [KeepKay](https://www.keepkey.com/), ensuring user’s with mission critical application updates independent of any wallet type. ShapeShift has remained the second most subscribed channel for over a year, with a total subscriber count of more than **28,000** with a growth of more than **306%** as compared to previous year. diff --git a/docs/chain/01-build/04-Fetch-Transaction.mdx b/docs/chain/01-build/04-Fetch-Transaction.mdx index 29845bdfd39..4885f5bde33 100644 --- a/docs/chain/01-build/04-Fetch-Transaction.mdx +++ b/docs/chain/01-build/04-Fetch-Transaction.mdx @@ -143,7 +143,7 @@ const transactionByCategory = await pushChain.tx.get('*', { We will fetch transactions sent by this CAIP-10 address: `push:devnet:pushconsumer1l8wd6ucrwf43stuavxwfc9jmr5emlkr66guml6`. ```typescript -const transctionBySender = await pushChain.tx.get( +const transactionBySender = await pushChain.tx.get( { chain: CONSTANTS.Chain.Push.devnet.name, chainId: CONSTANTS.Chain.Push.devnet.chainId, @@ -158,7 +158,7 @@ const transctionBySender = await pushChain.tx.get( We will fetch transactions received by this CAIP-10 address: `push:devnet:pushconsumer1l8wd6ucrwf43stuavxwfc9jmr5emlkr66guml6`. ```typescript -const transctionBySender = await pushChain.tx.get( +const transactionBySender = await pushChain.tx.get( { chain: CONSTANTS.Chain.Push.devnet.name, chainId: CONSTANTS.Chain.Push.devnet.chainId, @@ -166,4 +166,4 @@ const transctionBySender = await pushChain.tx.get( }, { filterMode: 'recipient' } ); -``` \ No newline at end of file +```