diff --git a/pages/price-feeds/index.mdx b/pages/price-feeds/index.mdx index 34696c9a..bbadf3b7 100644 --- a/pages/price-feeds/index.mdx +++ b/pages/price-feeds/index.mdx @@ -37,7 +37,7 @@ Pyth offers two main versions of price feeds, each optimized for different use c ]} quickActions={[ { icon: , title: "Available Price Feeds", href: "./price-feeds/pro/price-feed-ids" }, - { icon: , title: "Get an access token", href: "https://tally.so/r/3xG8E5" }, + { icon: , title: "Request Access Token", href: "https://tally.so/r/3xG8E5" }, { icon: , title: "Pricing", href: "https://www.pyth.network/pricing" }, ]} ctaText="Explore Pro Documentation" diff --git a/pages/price-feeds/pro/acquire-access-token.mdx b/pages/price-feeds/pro/acquire-access-token.mdx index 83e8b152..a87266b7 100644 --- a/pages/price-feeds/pro/acquire-access-token.mdx +++ b/pages/price-feeds/pro/acquire-access-token.mdx @@ -6,7 +6,7 @@ This guide explains how to acquire an access token for Pyth Pro, which is requir ## Request Access Token -Please fill out [this form](https://tally.so/r/3xG8E5) to contact the Pyth team and get the access token. +Please fill out [this form](https://tally.so/r/3xG8E5) to get in touch with our authorized distribution partners (Pyth Data Distributors) and obtain an access token. Access tokens are required for all Pyth Pro websocket connections. Make sure diff --git a/pages/price-feeds/pro/subscribe-price-updates.mdx b/pages/price-feeds/pro/subscribe-price-updates.mdx index b8026706..ca3c0b88 100644 --- a/pages/price-feeds/pro/subscribe-price-updates.mdx +++ b/pages/price-feeds/pro/subscribe-price-updates.mdx @@ -18,7 +18,7 @@ The websocket server is available at `wss://pyth-lazer.dourolabs.app/v1/stream{: ### 1. Acquire an access token -Please fill out [this form](https://tally.so/r/3xG8E5) to contact the Pyth team and get the access token. +Please fill out [this form](https://tally.so/r/3xG8E5) to get in touch with our authorized distribution partners (Pyth Data Distributors) and obtain an access token. Use the access token to authenticate the websocket connection by passing it as an `Authorization{:bash}` header with the value `Bearer {token}{:bash}`. @@ -68,7 +68,7 @@ To subscribe to the prices, send a request to the websocket server. The server w npm install --save @pythnetwork/pyth-lazer-sdk ``` -2. Then create a [`PythLazerClient`](https://github.com/pyth-network/pyth-crosschain/blob/main/lazer/sdk/js/src/client.ts#L32) object using the URL and the access token requested from the Pyth team in the first step: +2. Then create a [`PythLazerClient`](https://github.com/pyth-network/pyth-crosschain/blob/main/lazer/sdk/js/src/client.ts#L32) object using the URL and the access token requested from our authorized distribution partners (Pyth Data Distributors) in the first step: ```js copy import { PythLazerClient } from "@pythnetwork/pyth-lazer-sdk";