From 797c7ea2ee1d233fceb56808b6a2afc84fe2bfb3 Mon Sep 17 00:00:00 2001 From: RandomApe Date: Wed, 14 Aug 2024 15:30:11 -0300 Subject: [PATCH 1/5] chore: added GPT collection --- src/types/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/types/index.ts b/src/types/index.ts index 9add5c4f..01f9b72f 100644 --- a/src/types/index.ts +++ b/src/types/index.ts @@ -169,6 +169,7 @@ export enum BillArtCollection { ETH_Collection1 = 'ETH_Collection1', inEVM_Collection1 = 'inEVM_Collection1', AITECH_Collection1 = 'AITECH_Collection1', + GPT_Collection1 = 'GPT_Collection1', } export const defaultBillArtCollection = BillArtCollection.ApeSwap_Collection1 From 759f61b1df24c2c7293b7e250b938b48f7b1da6c Mon Sep 17 00:00:00 2001 From: RandomApe Date: Wed, 14 Aug 2024 15:31:16 -0300 Subject: [PATCH 2/5] v2.69.9 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ff00cb23..0257fea8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@ape.swap/apeswap-lists", - "version": "2.69.8", + "version": "2.69.9", "main": "dist/index.js", "typings": "dist/index.d.ts", "publishConfig": { From eb6b2ee387e0e20480e45c1db398f16d51863c06 Mon Sep 17 00:00:00 2001 From: efeDaniels Date: Thu, 15 Aug 2024 16:31:32 +0300 Subject: [PATCH 3/5] chore: Add CamelotV2 as a new liquidityDex --- package.json | 2 +- src/constants/dexDisplayAttributes.ts | 4 ++++ src/constants/dexFactories.ts | 4 ++++ src/constants/dexToZapMapping.ts | 3 +++ src/types/index.ts | 4 +++- 5 files changed, 15 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 0257fea8..c41ad4c4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@ape.swap/apeswap-lists", - "version": "2.69.9", + "version": "2.69.10", "main": "dist/index.js", "typings": "dist/index.d.ts", "publishConfig": { diff --git a/src/constants/dexDisplayAttributes.ts b/src/constants/dexDisplayAttributes.ts index d3b371e9..0a125368 100644 --- a/src/constants/dexDisplayAttributes.ts +++ b/src/constants/dexDisplayAttributes.ts @@ -85,4 +85,8 @@ export const dexDisplayAttributes: Record Date: Thu, 15 Aug 2024 16:40:20 +0300 Subject: [PATCH 4/5] chore: Add BONSAI and LP token --- config/tokens.json | 30 ++++++++++++++++++++++++++++++ src/constants/tokens.ts | 28 ++++++++++++++++++++++++++++ 2 files changed, 58 insertions(+) diff --git a/config/tokens.json b/config/tokens.json index f063ba8a..1e8002d7 100644 --- a/config/tokens.json +++ b/config/tokens.json @@ -2855,6 +2855,19 @@ }, "active": true }, + "bonsai": { + "symbol": "BONSAI", + "address": { + "42161": "0x79EaD7a012D97eD8DeEcE279f9bC39e264d7Eef9" + }, + "decimals": { + "42161": 18 + }, + "liquidityDex": { + "42161": "Camelotv2" + }, + "active": true + }, "xcur": { "symbol": "XCUR", "address": { @@ -5648,6 +5661,23 @@ "42161": "https://app.ichi.org/vault/token/0xC6F780497A95e246EB9449f5e4770916DCd6396A" } }, + "ethBonsai_Camelot": { + "symbol": "ETH-BONSAI", + "address": { + "42161": "0xe4C994f55cAC42830cC6016D18f07744cEd0aa5D" + }, + "decimals": { + "42161": 18 + }, + "liquidityDex": { + "42161": "Camelotv2" + }, + "active": true, + "lpToken": true, + "getLpUrl": { + "42161": "https://app.camelot.exchange/" + } + }, "abondEth_Ichi": { "symbol": "ABOND-ETH", "address": { diff --git a/src/constants/tokens.ts b/src/constants/tokens.ts index a0cf888c..aab0f1dc 100644 --- a/src/constants/tokens.ts +++ b/src/constants/tokens.ts @@ -2864,6 +2864,19 @@ const tokens: Record = { }, active: true, }, + bonsai: { + symbol: 'BONSAI', + address: { + [ChainId.ARBITRUM]: '0x79EaD7a012D97eD8DeEcE279f9bC39e264d7Eef9', + }, + decimals: { + [ChainId.ARBITRUM]: 18, + }, + liquidityDex: { + [ChainId.ARBITRUM]: LiquidityDex.CamelotV2, + }, + active: true, + }, xcur: { symbol: 'XCUR', address: { @@ -5463,6 +5476,21 @@ const tokens: Record = { [ChainId.ARBITRUM]: 'https://app.ichi.org/vault/token/0xC6F780497A95e246EB9449f5e4770916DCd6396A', }, }, + ethBonsai_Camelot: { + symbol: 'ETH-BONSAI', + address: { + [ChainId.ARBITRUM]: '0xe4C994f55cAC42830cC6016D18f07744cEd0aa5D', + }, + decimals: { [ChainId.ARBITRUM]: 18 }, + liquidityDex: { + [ChainId.ARBITRUM]: LiquidityDex.CamelotV2, + }, + active: true, + lpToken: true, + getLpUrl: { + [ChainId.ARBITRUM]: 'https://app.camelot.exchange/', + }, + }, abondEth_Ichi: { symbol: 'ABOND-ETH', address: { From 1a6e1b4438efc28cf17eb1760621eba129688242 Mon Sep 17 00:00:00 2001 From: shivammp Date: Thu, 15 Aug 2024 21:27:38 +0530 Subject: [PATCH 5/5] chore: Update bond description --- config/bills.json | 4 ++-- src/constants/bills.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/config/bills.json b/config/bills.json index e4fd7e4e..7a7d4595 100644 --- a/config/bills.json +++ b/config/bills.json @@ -22463,8 +22463,8 @@ "billArt": { "collection": "ApeBond_Collection1" }, - "shortDescription": "Verida is a layer zero DePIN that secures private data and offers confidential compute for personal AI assistants. It’s a multi-chain protocol for interoperable database storage and messaging, built on decentralized identity, where users control their data. By incentivizing data unlocks from centralized platforms, Verida powers new use cases like trusted storage, decentralized messaging, and smart contract integration. Powered by the VDA utility token.", - "fullDescription": "Verida is a layer zero DePIN that secures private data and provides confidential compute for secure personal AI assistants. It is a multi-chain protocol for interoperable database storage and messaging built on decentralized identity, allowing users to own and control their personal data. By incentivizing users to unlock their data from centralized platforms, Verida enables builders to create innovative use cases such as trusted storage, decentralized messaging, and single sign-on. Users' private data can be integrated into smart contracts, facilitating connectivity to multiple blockchains. The Verida Network, powered by its native utility token VDA, is the first decentralized database network designed for owning, storing, and controlling private data, serving as the foundational storage layer for the self-sovereign data economy.", + "shortDescription": "Verida is a layer zero private self-sovereign database DePIN with confidential compute for AI applications. Verida’s Private Data Bridge enables user data to be unlocked from centralized platforms and used or a new generation of personal AI applications. Verida’s Self-Sovereign Compute Network enables a user’s personal, encrypted data to be integrated with leading AI models, with end-to-end privacy, safeguarding personal data from model owners, and unlocking a new era of hyper-personal and safe AI experiences powered by the VDA utility token.", + "fullDescription": "Verida is a groundbreaking layer zero private self-sovereign database DePIN, specifically designed to offer confidential compute for advanced AI applications. With Verida’s innovative Private Data Bridge, user data can be seamlessly unlocked from centralized platforms, empowering a new generation of personal AI applications that are more intuitive and personalized. Verida’s Self-Sovereign Compute Network takes privacy to the next level by enabling a user’s personal, encrypted data to be securely integrated with leading AI models. This ensures end-to-end privacy, effectively safeguarding personal data from unauthorized access by model owners. By doing so, Verida is pioneering a new era of hyper-personalized and safe AI experiences, all powered by the VDA utility token. This infrastructure not only redefines how AI interacts with personal data but also paves the way for more secure, user-controlled digital ecosystems in the rapidly evolving world of decentralized technology.", "tags": ["AI"] }, { diff --git a/src/constants/bills.ts b/src/constants/bills.ts index 82b0cfdd..2de2d07d 100644 --- a/src/constants/bills.ts +++ b/src/constants/bills.ts @@ -5739,8 +5739,8 @@ const bills: BillsConfig[] = [ collection: BillArtCollection.ApeBond_Collection1, }, shortDescription: - 'Verida is a layer zero DePIN that secures private data and offers confidential compute for personal AI assistants. It’s a multi-chain protocol for interoperable database storage and messaging, built on decentralized identity, where users control their data. By incentivizing data unlocks from centralized platforms, Verida powers new use cases like trusted storage, decentralized messaging, and smart contract integration. Powered by the VDA utility token.', - fullDescription: `Verida is a layer zero DePIN that secures private data and provides confidential compute for secure personal AI assistants. It is a multi-chain protocol for interoperable database storage and messaging built on decentralized identity, allowing users to own and control their personal data. By incentivizing users to unlock their data from centralized platforms, Verida enables builders to create innovative use cases such as trusted storage, decentralized messaging, and single sign-on. Users' private data can be integrated into smart contracts, facilitating connectivity to multiple blockchains. The Verida Network, powered by its native utility token VDA, is the first decentralized database network designed for owning, storing, and controlling private data, serving as the foundational storage layer for the self-sovereign data economy.`, + 'Verida is a layer zero private self-sovereign database DePIN with confidential compute for AI applications. Verida’s Private Data Bridge enables user data to be unlocked from centralized platforms and used or a new generation of personal AI applications. Verida’s Self-Sovereign Compute Network enables a user’s personal, encrypted data to be integrated with leading AI models, with end-to-end privacy, safeguarding personal data from model owners, and unlocking a new era of hyper-personal and safe AI experiences powered by the VDA utility token.', + fullDescription: `Verida is a groundbreaking layer zero private self-sovereign database DePIN, specifically designed to offer confidential compute for advanced AI applications. With Verida’s innovative Private Data Bridge, user data can be seamlessly unlocked from centralized platforms, empowering a new generation of personal AI applications that are more intuitive and personalized. Verida’s Self-Sovereign Compute Network takes privacy to the next level by enabling a user’s personal, encrypted data to be securely integrated with leading AI models. This ensures end-to-end privacy, effectively safeguarding personal data from unauthorized access by model owners. By doing so, Verida is pioneering a new era of hyper-personalized and safe AI experiences, all powered by the VDA utility token. This infrastructure not only redefines how AI interacts with personal data but also paves the way for more secure, user-controlled digital ecosystems in the rapidly evolving world of decentralized technology.`, tags: ['AI'], }, {