diff --git a/concepts/create-your-notif-channel/README.md b/concepts/create-your-notif-channel/README.md index 5574768..a993be3 100644 --- a/concepts/create-your-notif-channel/README.md +++ b/concepts/create-your-notif-channel/README.md @@ -23,7 +23,7 @@ Once opted in, the subscriber shall receive notifications from that channel dire {% hint style="info" %} _**Opting In or Opting out of a Channel is a completely gasless transaction and requires no fees.**_ -How to Opt-In to a Channel? 👉 [**Opting-Into a Channel**](https://docs.epns.io/users/epns-dapp/opting-in-to-a-channel)**** +How to Opt-In to a Channel? 👉 [**Opting-Into a Channel**](https://docs.push.org/users/basics/how-to-start-using-push-notifications)**** {% endhint %} Moreover, the owner of a channel can also choose to _**delegate his/her notification sending power to any other wallet address**_. This enables the selected wallet address to send notifications on behalf of the channel. The channel owner, however, can choose to remove the delegate at any given time. diff --git a/developer-guides/examples/notification-via-smart-contract-examples/token-transfer-notification-via-smart-contract-example.md b/developer-guides/examples/notification-via-smart-contract-examples/token-transfer-notification-via-smart-contract-example.md index 6e73b94..ac48056 100644 --- a/developer-guides/examples/notification-via-smart-contract-examples/token-transfer-notification-via-smart-contract-example.md +++ b/developer-guides/examples/notification-via-smart-contract-examples/token-transfer-notification-via-smart-contract-example.md @@ -55,11 +55,11 @@ contract Push is ERC20 { to, // to recipient, put address(this) in case you want Broadcast or Subset. For Targetted put the address to which you want to send bytes( string( - // We are passing identity here: https://docs.epns.io/developers/developer-guides/sending-notifications/advanced/notification-payload-types/identity/payload-identity-implementations + // We are passing identity here: https://docs.push.org/developers/developer-guides/sending-notifications/notification-payload-types/notification-standard-advanced/notification-identity abi.encodePacked( - "0", // this is notification identity: https://docs.epns.io/developers/developer-guides/sending-notifications/advanced/notification-payload-types/identity/payload-identity-implementations + "0", // this is notification identity: https://docs.push.org/developers/developer-guides/sending-notifications/notification-payload-types/notification-standard-advanced/notification-identity "+", // segregator - "3", // this is payload type: https://docs.epns.io/developers/developer-guides/sending-notifications/advanced/notification-payload-types/payload (1, 3 or 4) = (Broadcast, targetted or subset) + "3", // this is payload type: https://docs.push.org/developers/developer-guides/sending-notifications/notification-payload-types/notification-standard-advanced/notification-payload (1, 3 or 4) = (Broadcast, targetted or subset) "+", // segregator "Tranfer Alert", // this is notificaiton title "+", // segregator diff --git a/developer-guides/examples/showrunners-examples/defi-based-notification-via-showrunner-example.md b/developer-guides/examples/showrunners-examples/defi-based-notification-via-showrunner-example.md index cf9c3cb..6a5ed62 100644 --- a/developer-guides/examples/showrunners-examples/defi-based-notification-via-showrunner-example.md +++ b/developer-guides/examples/showrunners-examples/defi-based-notification-via-showrunner-example.md @@ -14,7 +14,7 @@ We will walk through coding and interacting with the [aave ](https://aave.com/)s \ And don’t worry if you don’t understand what any these words mean yet, I'll explain everything! -You can access the [code ](https://github.com/ethereum-push-notification-service/epns-showrunners-framework-staging/tree/main/src/sample\_showrunners/aave)for the channel and get some vibe for how the code is looking !! +You can access the [code ](https://github.com/ethereum-push-notification-service/epns-showrunners-framework-staging/tree/main/src/sample_showrunners/aave)for the channel and get some vibe for how the code is looking !! #### Here are the list of things you will require to make the channel up into the showrunners diff --git a/developer-guides/sending-notifications/notification-payload-types/notification-standard-basics.md b/developer-guides/sending-notifications/notification-payload-types/notification-standard-basics.md index 1c91673..185fced 100644 --- a/developer-guides/sending-notifications/notification-payload-types/notification-standard-basics.md +++ b/developer-guides/sending-notifications/notification-payload-types/notification-standard-basics.md @@ -116,11 +116,11 @@ IPUSHCommInterface(EPNS_COMM_CONTRACT_ADDRESS_FOR_SPECIFIC_BLOCKCHAIN).sendNotif to, // to recipient, put address(this) in case you want Broadcast or Subset. For Targetted put the address to which you want to send bytes( string( - // We are passing identity here: https://docs.epns.io/developers/developer-guides/sending-notifications/advanced/notification-payload-types/identity/payload-identity-implementations + // We are passing identity here: https://docs.push.org/developers/developer-guides/sending-notifications/notification-payload-types/notification-standard-advanced/notification-identity abi.encodePacked( - "0", // this is notification identity: https://docs.epns.io/developers/developer-guides/sending-notifications/advanced/notification-payload-types/identity/payload-identity-implementations + "0", // this is notification identity: https://docs.push.org/developers/developer-guides/sending-notifications/notification-payload-types/notification-standard-advanced/notification-identity "+", // segregator - "3", // this is payload type: https://docs.epns.io/developers/developer-guides/sending-notifications/advanced/notification-payload-types/payload (1, 3 or 4) = (Broadcast, targetted or subset) + "3", // this is payload type: https://docs.push.org/developers/developer-guides/sending-notifications/notification-payload-types/notification-standard-advanced/notification-payload (1, 3 or 4) = (Broadcast, targetted or subset) "+", // segregator "Title", // this is notificaiton title "+", // segregator diff --git a/developer-guides/sending-notifications/using-smart-contract.md b/developer-guides/sending-notifications/using-smart-contract.md index 0e67449..64046a3 100644 --- a/developer-guides/sending-notifications/using-smart-contract.md +++ b/developer-guides/sending-notifications/using-smart-contract.md @@ -26,13 +26,13 @@ Next call the function `sendNotification(address _channel, address _recipient, b to, // to recipient, put address(this) in case you want Broadcast or Subset. For Targetted put the address to which you want to send bytes( string( - // We are passing identity here: https://docs.epns.io/developers/developer-guides/sending-notifications/advanced/notification-payload-types/identity/payload-identity-implementations + // We are passing identity here: https://docs.push.org/developers/developer-guides/sending-notifications/notification-payload-types/notification-standard-advanced/notification-identity abi.encodePacked( - "0", // this is notification identity: https://docs.epns.io/developers/developer-guides/sending-notifications/advanced/notification-payload-types/identity/payload-identity-implementations + "0", // this is notification identity: https://docs.push.org/developers/developer-guides/sending-notifications/notification-payload-types/notification-standard-advanced/notification-identity "+", // segregator - "3", // this is payload type: https://docs.epns.io/developers/developer-guides/sending-notifications/advanced/notification-payload-types/payload (1, 3 or 4) = (Broadcast, targetted or subset) + "3", // this is payload type: https://docs.push.org/developers/developer-guides/sending-notifications/notification-payload-types/notification-standard-advanced/notification-payload (1, 3 or 4) = (Broadcast, targetted or subset) "+", // segregator - "Title", // this is notificaiton title + "Title", // this is notification title "+", // segregator "Body" // notification body )