@liquidium/client 0.1.0 → 0.1.1
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/LICENSE +21 -0
- package/README.md +2 -2
- package/dist/index.cjs +5 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +5 -4
- package/dist/index.js.map +1 -1
- package/package.json +8 -11
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Liquidium
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|

|
|
2
|
-

|
|
3
3
|
|
|
4
4
|
<p align="center">
|
|
5
|
-
<img src="
|
|
5
|
+
<img src="https://raw.githubusercontent.com/Liquidium-Inc/liquidium-sdk/main/borrow.svg" alt="Liquidium borrow illustration" width="700" />
|
|
6
6
|
</p>
|
|
7
7
|
|
|
8
8
|
<h1 align="center">Liquidium SDK</h1>
|
package/dist/index.cjs
CHANGED
|
@@ -2,9 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
var viem = require('viem');
|
|
4
4
|
var chains = require('viem/chains');
|
|
5
|
-
var agent = require('@
|
|
6
|
-
var principal = require('@
|
|
5
|
+
var agent = require('@icp-sdk/core/agent');
|
|
6
|
+
var principal = require('@icp-sdk/core/principal');
|
|
7
7
|
var ledgerIcrc = require('@dfinity/ledger-icrc');
|
|
8
|
+
var principal$1 = require('@dfinity/principal');
|
|
8
9
|
|
|
9
10
|
// src/client.ts
|
|
10
11
|
|
|
@@ -3054,7 +3055,7 @@ function getIcrcAccountSupplyTarget(profileId, request) {
|
|
|
3054
3055
|
owner: poolPrincipal.toText(),
|
|
3055
3056
|
subaccount,
|
|
3056
3057
|
account: ledgerIcrc.encodeIcrcAccount({
|
|
3057
|
-
owner: principal.Principal.fromText(poolPrincipal.toText()),
|
|
3058
|
+
owner: principal$1.Principal.fromText(poolPrincipal.toText()),
|
|
3058
3059
|
subaccount
|
|
3059
3060
|
})
|
|
3060
3061
|
};
|
|
@@ -4209,7 +4210,7 @@ function createTransferErc20Transaction(params) {
|
|
|
4209
4210
|
}
|
|
4210
4211
|
function createDepositErc20Transaction(params) {
|
|
4211
4212
|
const expectedDestinationAccount = ledgerIcrc.encodeIcrcAccount({
|
|
4212
|
-
owner: principal.Principal.fromText(params.poolId),
|
|
4213
|
+
owner: principal$1.Principal.fromText(params.poolId),
|
|
4213
4214
|
subaccount: encodeInflowSubaccount({
|
|
4214
4215
|
action: params.action,
|
|
4215
4216
|
principal: principal.Principal.fromText(params.profileId)
|