@aptos-labs/aptos-client 1.0.0 → 1.1.0

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.
Files changed (2) hide show
  1. package/README.md +11 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,3 +1,9 @@
1
+ ![License][github-license]
2
+ [![NPM Package Version][npm-image-version]][npm-url]
3
+ ![Node Version](https://img.shields.io/node/v/%40aptos-labs%2Faptos-client)
4
+ ![NPM bundle size](https://img.shields.io/bundlephobia/min/%40aptos-labs/aptos-client)
5
+ [![NPM Package Downloads][npm-image-downloads]][npm-url]
6
+
1
7
  # @aptos-labs/aptos-client
2
8
 
3
9
  This package implements a client with which you can interact with the Aptos network. It can be used standalone, and it is the client package used by the Aptos TypeScript SDK.
@@ -55,3 +61,8 @@ const response = await aptosClient<Res>({
55
61
  });
56
62
  return response;
57
63
  ```
64
+
65
+ [npm-image-version]: https://img.shields.io/npm/v/%40aptos-labs%2Faptos-client.svg
66
+ [npm-image-downloads]: https://img.shields.io/npm/dm/%40aptos-labs%2Faptos-client.svg
67
+ [npm-url]: https://npmjs.org/package/@aptos-labs/aptos-client
68
+ [github-license]: https://img.shields.io/github/license/aptos-labs/aptos-client
package/package.json CHANGED
@@ -53,7 +53,7 @@
53
53
  "Aptos SDK"
54
54
  ],
55
55
  "peerDependencies": {
56
- "axios": "^1.7.7",
56
+ "axios": "^1.8.0",
57
57
  "got": "^11.8.6"
58
58
  },
59
59
  "devDependencies": {
@@ -71,5 +71,5 @@
71
71
  "tsup": "8.3.5",
72
72
  "typescript": "5.6.3"
73
73
  },
74
- "version": "1.0.0"
74
+ "version": "1.1.0"
75
75
  }