Skip to content

Fix typos and formatting in Push documentation #1047

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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.
<!-- shapeshift subscriber count -->
Expand Down
6 changes: 3 additions & 3 deletions docs/chain/01-build/04-Fetch-Transaction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -158,12 +158,12 @@ 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,
account: 'pushconsumer1l8wd6ucrwf43stuavxwfc9jmr5emlkr66guml6',
},
{ filterMode: 'recipient' }
);
```
```