@thalalabs/surf 1.9.7 → 1.10.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.
- package/CHANGELOG.md +6 -0
- package/README.md +4 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -232,6 +232,10 @@ Compared to [Viem](https://viem.sh/), Surf is still in its infancy. Any contribu
|
|
|
232
232
|
- [ ] Accept `Uint8Array` and `string` for `vector<u8>` input. Currently users can pass these values to `createEntryPayload`, and Surf will correctly encode it. But the type system will complain. So users need to use `as any` to pass `Uint8Array` or `string` for `vector<u8>`. The type system only accept `number[]` for `vector<u8>` now.
|
|
233
233
|
- [ ] Add the functionality available in AptosClient to Surf, such as `estimateGasPrice`.
|
|
234
234
|
|
|
235
|
+
## Showcase
|
|
236
|
+
|
|
237
|
+

|
|
238
|
+
|
|
235
239
|
## License
|
|
236
240
|
|
|
237
241
|
Released under [MIT](/LICENSE) by [@ThalaLabs](https://github.com/ThalaLabs).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thalalabs/surf",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.10.0",
|
|
4
4
|
"description": "TypeScript Interfaces & React Hooks for interacting with Aptos Smart Contracts with type safety.",
|
|
5
5
|
"main": "./build/cjs/index.js",
|
|
6
6
|
"module": "./build/esm/index.js",
|
|
@@ -43,8 +43,8 @@
|
|
|
43
43
|
}
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@aptos-labs/ts-sdk": "^
|
|
47
|
-
"@aptos-labs/wallet-adapter-react": "^
|
|
46
|
+
"@aptos-labs/ts-sdk": "^6.0.0",
|
|
47
|
+
"@aptos-labs/wallet-adapter-react": "^8.2.1",
|
|
48
48
|
"@changesets/cli": "^2.26.1",
|
|
49
49
|
"@types/jest": "~29.5",
|
|
50
50
|
"@types/node": "~18",
|
|
@@ -67,8 +67,8 @@
|
|
|
67
67
|
"typescript": "~5.1"
|
|
68
68
|
},
|
|
69
69
|
"peerDependencies": {
|
|
70
|
-
"@aptos-labs/ts-sdk": "^
|
|
71
|
-
"@aptos-labs/wallet-adapter-react": "^
|
|
70
|
+
"@aptos-labs/ts-sdk": "^6.0.0",
|
|
71
|
+
"@aptos-labs/wallet-adapter-react": "^8.2.1",
|
|
72
72
|
"react": "^18.2.0",
|
|
73
73
|
"@initia/react-wallet-widget": "^1.9.8"
|
|
74
74
|
},
|