From e05009df95d543c194d3124f41988b2c476a104c Mon Sep 17 00:00:00 2001 From: Lorimer Jenkins Date: Tue, 26 Aug 2025 19:23:16 +0200 Subject: [PATCH 1/6] feat: misc info --- src/ao/utils/tokenAddressData.ts | 37 ++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/src/ao/utils/tokenAddressData.ts b/src/ao/utils/tokenAddressData.ts index ddaee38..dc50329 100644 --- a/src/ao/utils/tokenAddressData.ts +++ b/src/ao/utils/tokenAddressData.ts @@ -125,6 +125,40 @@ export const tokenData: Record = { borrowingDisabled: false, borrowingDisabledReason: "", }, + VAR: { + name: "Vento Arweave", + icon: "", // + ticker: "VAR", + address: "", // + oTicker: "oVAR", + oAddress: "", // + controllerAddress, + cleanTicker: "vAR", + denomination: BigInt(12), + collateralEnabled: false, + baseDenomination: BigInt(12), + deprecated: false, + oIcon: "", // + borrowingDisabled: false, + borrowingDisabledReason: "", + }, + VUSDC: { + name: "Vento USD Circle", + icon: "", // + ticker: "VUSDC", + address: "", // + oTicker: "oVUSDC", + oAddress: "", // + controllerAddress, + cleanTicker: "vUSDC", + denomination: BigInt(12), + collateralEnabled: false, + baseDenomination: BigInt(12), + deprecated: false, + oIcon: "", // + borrowingDisabled: false, + borrowingDisabledReason: "", + }, }; export function convertTicker(ticker: string): string { @@ -134,6 +168,9 @@ export function convertTicker(ticker: string): string { if (ticker === "WAR") return "AR"; if (ticker === "WUSDT") return "USDT"; if (ticker === "WETH") return "ETH"; + if (ticker === "USDA") return "USDC"; + if (ticker === "VAR") return "AR"; + if (ticker === "VUSDC") return "USDC"; return ticker; } From 6f80368717b92d7ddf92791988eaec1945dad80e Mon Sep 17 00:00:00 2001 From: Lorimer Jenkins Date: Tue, 26 Aug 2025 19:24:05 +0200 Subject: [PATCH 2/6] - --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f825703..dbd0d28 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "liquidops", - "version": "1.2.18", + "version": "1.2.19", "author": "Lorimer Jenkins , Marton Lederer ", "repository": { "type": "git", From 681e19ff5dbb468c56ea1021ad2d9f3d18df85d1 Mon Sep 17 00:00:00 2001 From: Lorimer Jenkins Date: Tue, 26 Aug 2025 19:42:52 +0200 Subject: [PATCH 3/6] chore: add misc details --- src/ao/utils/tokenAddressData.ts | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/ao/utils/tokenAddressData.ts b/src/ao/utils/tokenAddressData.ts index dc50329..ed672d8 100644 --- a/src/ao/utils/tokenAddressData.ts +++ b/src/ao/utils/tokenAddressData.ts @@ -127,16 +127,16 @@ export const tokenData: Record = { }, VAR: { name: "Vento Arweave", - icon: "", // + icon: "XQKXtuxDGDn13z0JBqYvbkNXPu3Y3aE1WaK2XftQ3cA", ticker: "VAR", - address: "", // + address: "y-p7CPhs6JMUStAuE4KeTnMXN7qYBvEi2hiBFk8ZhjM", oTicker: "oVAR", oAddress: "", // controllerAddress, cleanTicker: "vAR", - denomination: BigInt(12), + denomination: BigInt(12), // collateralEnabled: false, - baseDenomination: BigInt(12), + baseDenomination: BigInt(12), // deprecated: false, oIcon: "", // borrowingDisabled: false, @@ -144,16 +144,16 @@ export const tokenData: Record = { }, VUSDC: { name: "Vento USD Circle", - icon: "", // + icon: "DbT_EMed2vx4MR7N03YJYLSNeNBvuSgIzjybw8TOqMg", ticker: "VUSDC", - address: "", // + address: "cxkFiGP89fEKOvbvl9SLs1lEaw0L-DWJiqQOuDPeDG8", oTicker: "oVUSDC", oAddress: "", // controllerAddress, cleanTicker: "vUSDC", - denomination: BigInt(12), + denomination: BigInt(12), // collateralEnabled: false, - baseDenomination: BigInt(12), + baseDenomination: BigInt(12), // deprecated: false, oIcon: "", // borrowingDisabled: false, From f70a6b2b372a8c0d19063618a71650830b5b0cc2 Mon Sep 17 00:00:00 2001 From: Lorimer Jenkins Date: Tue, 26 Aug 2025 19:45:51 +0200 Subject: [PATCH 4/6] - --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index dbd0d28..97a3cf2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "liquidops", - "version": "1.2.19", + "version": "1.2.20", "author": "Lorimer Jenkins , Marton Lederer ", "repository": { "type": "git", From acb1fa523078690064d6e2bdce4bcb144614f62a Mon Sep 17 00:00:00 2001 From: Lorimer Jenkins Date: Wed, 27 Aug 2025 13:19:01 +0200 Subject: [PATCH 5/6] feat: new CU URL --- tests.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests.ts b/tests.ts index 6421d6c..d254251 100644 --- a/tests.ts +++ b/tests.ts @@ -9,7 +9,10 @@ if (!process.env.JWK) { const JWK: any = JSON.parse(process.env.JWK); const signer = createDataItemSigner(JWK); -const client = new LiquidOps(signer); +const client = new LiquidOps(signer, { + CU_URL: "https://cu.liquidops.io/", +}); + const walletAddress = await ownerToAddress(JWK.n); //--------------------------------------------------------------------------------------------------------------- borrow From fe92ab20018399a39a26e3a2dfd6486015000113 Mon Sep 17 00:00:00 2001 From: Lorimer Jenkins Date: Wed, 27 Aug 2025 14:30:23 +0200 Subject: [PATCH 6/6] feat: vUSDC/vAR info --- src/ao/utils/tokenAddressData.ts | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/ao/utils/tokenAddressData.ts b/src/ao/utils/tokenAddressData.ts index ed672d8..d50c7e3 100644 --- a/src/ao/utils/tokenAddressData.ts +++ b/src/ao/utils/tokenAddressData.ts @@ -131,14 +131,14 @@ export const tokenData: Record = { ticker: "VAR", address: "y-p7CPhs6JMUStAuE4KeTnMXN7qYBvEi2hiBFk8ZhjM", oTicker: "oVAR", - oAddress: "", // + oAddress: "TYaFOOJUwUjSCTi_CFNZXYAEt4SYTx-HNjrV-cCmwNQ", controllerAddress, cleanTicker: "vAR", - denomination: BigInt(12), // + denomination: BigInt(12), collateralEnabled: false, - baseDenomination: BigInt(12), // + baseDenomination: BigInt(12), deprecated: false, - oIcon: "", // + oIcon: "kjybk2--iRY9vxo2eQtVu52vbT8iWJzwBslhGPtTMeM", borrowingDisabled: false, borrowingDisabledReason: "", }, @@ -148,14 +148,14 @@ export const tokenData: Record = { ticker: "VUSDC", address: "cxkFiGP89fEKOvbvl9SLs1lEaw0L-DWJiqQOuDPeDG8", oTicker: "oVUSDC", - oAddress: "", // + oAddress: "aKt8ZDDT43-3vwgqSEKx6aWd_3GA1paePP9EAOf3zcc", controllerAddress, cleanTicker: "vUSDC", - denomination: BigInt(12), // + denomination: BigInt(6), collateralEnabled: false, - baseDenomination: BigInt(12), // + baseDenomination: BigInt(6), deprecated: false, - oIcon: "", // + oIcon: "7EEISJIzxC-3RPhgvRc-lAZnP7st1b79_ER4Sc5P_MU", borrowingDisabled: false, borrowingDisabledReason: "", },