@ar.io/sdk 2.6.0-alpha.2 → 2.6.0-alpha.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/bundles/web.bundle.min.js +60 -60
- package/lib/cjs/common/io.js +5 -0
- package/lib/cjs/constants.js +1 -1
- package/lib/cjs/version.js +1 -1
- package/lib/esm/common/io.js +5 -0
- package/lib/esm/constants.js +1 -1
- package/lib/esm/version.js +1 -1
- package/lib/types/common/io.d.ts +2 -1
- package/lib/types/constants.d.ts +1 -1
- package/lib/types/types/io.d.ts +12 -0
- package/lib/types/version.d.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -73,7 +73,7 @@ This is the home of [ar.io] SDK. This SDK provides functionality for interacting
|
|
|
73
73
|
- [Primary Names](#primary-names)
|
|
74
74
|
- [`getPrimaryNames({ cursor, limit, sortBy, sortOrder })`](#getprimarynames-cursor-limit-sortby-sortorder-)
|
|
75
75
|
- [`getPrimaryName({ name, address })`](#getprimaryname-name-address-)
|
|
76
|
-
- [`requestPrimaryName({ name
|
|
76
|
+
- [`requestPrimaryName({ name })`](#requestprimaryname-name-)
|
|
77
77
|
- [`getPrimaryNameRequest({ initiator })`](#getprimarynamerequest-initiator-)
|
|
78
78
|
- [Configuration](#configuration)
|
|
79
79
|
- [Arweave Name Tokens (ANT's)](#arweave-name-tokens-ants)
|
|
@@ -1688,7 +1688,7 @@ const name = await io.getPrimaryName({
|
|
|
1688
1688
|
|
|
1689
1689
|
</details>
|
|
1690
1690
|
|
|
1691
|
-
#### `requestPrimaryName({ name
|
|
1691
|
+
#### `requestPrimaryName({ name })`
|
|
1692
1692
|
|
|
1693
1693
|
Requests a primary name for the caller's address. The request must be approved by the new owner of the requested name via the `approvePrimaryNameRequest`[#approveprimarynamerequest-name-address-] API.
|
|
1694
1694
|
|