@eulerxyz/euler-v2-sdk 0.1.0-beta → 0.1.1-beta
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 +3 -3
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -5,13 +5,13 @@
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npm install euler-v2-sdk
|
|
8
|
+
npm install @eulerxyz/euler-v2-sdk
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
## Example Usage (Multiply + Simulation)
|
|
12
12
|
|
|
13
13
|
```typescript
|
|
14
|
-
import { buildEulerSDK, getSubAccountAddress } from "euler-v2-sdk";
|
|
14
|
+
import { buildEulerSDK, getSubAccountAddress } from "@eulerxyz/euler-v2-sdk";
|
|
15
15
|
import { mainnet } from "viem/chains";
|
|
16
16
|
import { parseUnits } from "viem";
|
|
17
17
|
|
|
@@ -63,7 +63,7 @@ const simulation = await sdk.simulationService.simulateTransactionPlan(
|
|
|
63
63
|
|
|
64
64
|
## What This SDK Is For
|
|
65
65
|
|
|
66
|
-
|
|
66
|
+
`@eulerxyz/euler-v2-sdk` provides everything needed to interact with Euler V2 lending contracts:
|
|
67
67
|
|
|
68
68
|
- fetching account, vault, wallet, and market data
|
|
69
69
|
- planning and composing EVC transaction batches
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eulerxyz/euler-v2-sdk",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1-beta",
|
|
4
4
|
"description": "SDK for interacting with Euler V2 Lending Platform",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
},
|
|
56
56
|
"publishConfig": {
|
|
57
57
|
"access": "public",
|
|
58
|
-
"provenance":
|
|
58
|
+
"provenance": true
|
|
59
59
|
},
|
|
60
60
|
"dependencies": {
|
|
61
61
|
"viem": "2.43.3"
|