diff --git a/docs/_config.yml b/docs/_config.yml index b86baf5..eabc0bd 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -23,7 +23,7 @@ v2_nav_data: cTokens: /v2/ctokens/ Comptroller: /v2/comptroller/ Governance: /v2/governance/ - Open Price Feed: /v2/prices/ + Price Feed: /v2/prices/ Security: /v2/security/ compound_js_nav_data: diff --git a/docs/pages/compound-js/price-feed.md b/docs/pages/compound-js/price-feed.md index 1ee5389..054936e 100644 --- a/docs/pages/compound-js/price-feed.md +++ b/docs/pages/compound-js/price-feed.md @@ -13,11 +13,11 @@ sidebar_nav_data: ## Price Feed Methods -These methods facilitate interactions with the Open Price Feed smart contracts. For Compound III price feed methods, see the Comet section. +These methods facilitate interactions with the v2 Price Feed smart contracts. For Compound III price feed methods, see the Comet section. ## Compound v2 Get Price -Gets an asset's price from the Compound Protocol open price feed. The price +Gets an asset's price from the Compound v2 Protocol price feed. The price of the asset can be returned in any other supported asset value, including all cTokens and underlyings. @@ -32,7 +32,7 @@ let price; (async function () { price = await compound.getPrice(Compound.WBTC); - console.log('WBTC in USD', price); // 6 decimals, see Open Price Feed docs + console.log('WBTC in USD', price); // 6 decimals, see Price Feed docs price = await compound.getPrice(Compound.BAT, Compound.USDC); // supports cTokens too console.log('BAT in USDC', price); diff --git a/docs/pages/v2/prices.md b/docs/pages/v2/prices.md index fbc7254..fae7469 100644 --- a/docs/pages/v2/prices.md +++ b/docs/pages/v2/prices.md @@ -1,6 +1,6 @@ --- layout: docs-content -title: Compound v2 Docs | Open Price Feed +title: Compound v2 Docs | Price Feed permalink: /v2/prices/ docs_namespace: v2