@ar.io/sdk 3.13.0 → 3.14.0-alpha.2
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 +1 -1
- package/bundles/web.bundle.min.js +110 -110
- package/lib/cjs/cli/cli.js +8 -0
- package/lib/cjs/common/ant.js +102 -1
- package/lib/cjs/utils/ant.js +32 -1
- package/lib/cjs/version.js +1 -1
- package/lib/esm/cli/cli.js +8 -0
- package/lib/esm/common/ant.js +103 -2
- package/lib/esm/utils/ant.js +30 -0
- package/lib/esm/version.js +1 -1
- package/lib/types/common/ant.d.ts +9 -1
- package/lib/types/types/ant.d.ts +17 -0
- package/lib/types/utils/ant.d.ts +7 -1
- package/lib/types/version.d.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2442,7 +2442,7 @@ ANT clients can be configured to use custom AO process. Refer to [AO Connect] fo
|
|
|
2442
2442
|
```typescript
|
|
2443
2443
|
|
|
2444
2444
|
const ant = ANT.init({
|
|
2445
|
-
process: new
|
|
2445
|
+
process: new AOProcess({
|
|
2446
2446
|
processId: 'ANT_PROCESS_ID'
|
|
2447
2447
|
ao: connect({
|
|
2448
2448
|
MODE: 'legacy',
|