From 8df661e92f455067d10fd54116b224433f3c6d25 Mon Sep 17 00:00:00 2001 From: bobinstein Date: Mon, 6 May 2024 10:47:14 -0400 Subject: [PATCH 1/2] chore: updated ar-io to ar.io in sdk installation --- docs/src/guides/sdk.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/src/guides/sdk.md b/docs/src/guides/sdk.md index e9f10dd5..6d14ff5b 100644 --- a/docs/src/guides/sdk.md +++ b/docs/src/guides/sdk.md @@ -17,19 +17,19 @@ The ar.io SDK provides functionality for interacting with the ar.io ecosystem of ## Installation ```shell -npm install @ar-io/sdk +npm install @ar.io/sdk ``` or ```shell -yarn add @ar-io/sdk +yarn add @ar.io/sdk ``` ## Quick Start ```typescript -import { ArIO } from '@ar-io/sdk'; +import { ArIO } from '@ar.io/sdk'; const arIO = new ArIO(); const gateways = arIO.getGateways(); @@ -89,7 +89,7 @@ The SDK is provided in both CommonJS and ESM formats and is compatible with bund #### Bundlers (Webpack, Rollup, ESbuild, etc.) ```javascript -import { ArIO } from '@ar-io/sdk'; +import { ArIO } from '@ar.io/sdk'; // set up client const arIO = ArIO.init(); @@ -101,7 +101,7 @@ const gateways = arIO.getGateways(); ```html