Skip to content

Commit e6e4e86

Browse files
authored
feat: add ambire, daimo pay and cypherock wallet icons (0xa3k5#156)
1 parent 38db0b3 commit e6e4e86

File tree

19 files changed

+264
-1
lines changed

19 files changed

+264
-1
lines changed

.changeset/blue-jokes-share.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
'@web3icons/common': patch
3+
'@web3icons/react': patch
4+
'@web3icons/core': patch
5+
---
6+
7+
wallet: add `Cypherock` (background, branded, mono)
8+
wallet: add `Daimo Pay` (background, branded, mono)
9+
wallet: add `Ambire` (background, branded, mono)

docs/icons.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
jump to section:
22

3-
- [wallets (48)](#wallets)
3+
- [wallets (51)](#wallets)
44
- [networks (236)](#networks)
55
- [exchanges (28)](#exchanges)
66
- [tokens (1838)](#tokens)
@@ -57,6 +57,9 @@ jump to section:
5757
| solflare | Solflare ||||
5858
| temple | Temple ||||
5959
| pecunity-wallet | Pecunity ||||
60+
| ambire | Ambire ||||
61+
| cypherock | Cypherock ||||
62+
| daimo | Daimo Pay ||||
6063

6164
### Networks
6265

packages/common/src/metadata/wallets.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -286,5 +286,23 @@
286286
"filePath": "token:PEC",
287287
"name": "Pecunity",
288288
"variants": ["background", "branded", "mono"]
289+
},
290+
{
291+
"id": "ambire",
292+
"filePath": "token:WALLET",
293+
"name": "Ambire",
294+
"variants": ["branded", "mono", "background"]
295+
},
296+
{
297+
"id": "cypherock",
298+
"filePath": "wallet:cypherock",
299+
"name": "Cypherock",
300+
"variants": ["background", "branded", "mono"]
301+
},
302+
{
303+
"id": "daimo",
304+
"filePath": "wallet:daimo",
305+
"name": "Daimo Pay",
306+
"variants": ["background", "branded", "mono"]
289307
}
290308
]

packages/common/src/metadata/wallets.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -289,4 +289,22 @@ export const wallets: IWalletMetadata[] = [
289289
name: 'Pecunity',
290290
variants: ['background', 'branded', 'mono'],
291291
},
292+
{
293+
id: 'ambire',
294+
name: 'Ambire',
295+
variants: ['branded', 'mono', 'background'],
296+
filePath: 'token:WALLET',
297+
},
298+
{
299+
id: 'cypherock',
300+
name: 'Cypherock',
301+
variants: ['background', 'branded', 'mono'],
302+
filePath: 'wallet:cypherock',
303+
},
304+
{
305+
id: 'daimo',
306+
name: 'Daimo Pay',
307+
variants: ['background', 'branded', 'mono'],
308+
filePath: 'wallet:daimo',
309+
},
292310
]

packages/core/src/svg-module.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5972,6 +5972,15 @@ import * as WBackgroundTemple from './svgs/wallets/background/temple.svg'
59725972
import * as WBrandedPecunityWallet from './svgs/tokens/branded/PEC.svg'
59735973
import * as WMonoPecunityWallet from './svgs/tokens/mono/PEC.svg'
59745974
import * as WBackgroundPecunityWallet from './svgs/tokens/background/PEC.svg'
5975+
import * as WBrandedAmbire from './svgs/tokens/branded/WALLET.svg'
5976+
import * as WMonoAmbire from './svgs/tokens/mono/WALLET.svg'
5977+
import * as WBackgroundAmbire from './svgs/tokens/background/WALLET.svg'
5978+
import * as WBrandedCypherock from './svgs/wallets/branded/cypherock.svg'
5979+
import * as WMonoCypherock from './svgs/wallets/mono/cypherock.svg'
5980+
import * as WBackgroundCypherock from './svgs/wallets/background/cypherock.svg'
5981+
import * as WBrandedDaimo from './svgs/wallets/branded/daimo.svg'
5982+
import * as WMonoDaimo from './svgs/wallets/mono/daimo.svg'
5983+
import * as WBackgroundDaimo from './svgs/wallets/background/daimo.svg'
59755984
import * as EBranded1inch from './svgs/exchanges/branded/1inch.svg'
59765985
import * as EMono1inch from './svgs/exchanges/mono/1inch.svg'
59775986
import * as EBackground1inch from './svgs/exchanges/background/1inch.svg'
@@ -11957,6 +11966,9 @@ export const svgs = {
1195711966
solflare: WBrandedSolflare,
1195811967
temple: WBrandedTemple,
1195911968
'pecunity-wallet': WBrandedPecunityWallet,
11969+
ambire: WBrandedAmbire,
11970+
cypherock: WBrandedCypherock,
11971+
daimo: WBrandedDaimo,
1196011972
},
1196111973
mono: {
1196211974
alfa1: WMonoAlfa1,
@@ -12003,6 +12015,9 @@ export const svgs = {
1200312015
kukai: WMonoKukai,
1200412016
solflare: WMonoSolflare,
1200512017
'pecunity-wallet': WMonoPecunityWallet,
12018+
ambire: WMonoAmbire,
12019+
cypherock: WMonoCypherock,
12020+
daimo: WMonoDaimo,
1200612021
},
1200712022
background: {
1200812023
alfa1: WBackgroundAlfa1,
@@ -12053,6 +12068,9 @@ export const svgs = {
1205312068
solflare: WBackgroundSolflare,
1205412069
temple: WBackgroundTemple,
1205512070
'pecunity-wallet': WBackgroundPecunityWallet,
12071+
ambire: WBackgroundAmbire,
12072+
cypherock: WBackgroundCypherock,
12073+
daimo: WBackgroundDaimo,
1205612074
},
1205712075
},
1205812076
exchanges: {

packages/core/src/svgs/index.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5971,6 +5971,15 @@ export * as WalletBackgroundTemple from './wallets/background/temple.svg'
59715971
export * as WalletBrandedPecunityWallet from './tokens/branded/PEC.svg'
59725972
export * as WalletMonoPecunityWallet from './tokens/mono/PEC.svg'
59735973
export * as WalletBackgroundPecunityWallet from './tokens/background/PEC.svg'
5974+
export * as WalletBrandedAmbire from './tokens/branded/WALLET.svg'
5975+
export * as WalletMonoAmbire from './tokens/mono/WALLET.svg'
5976+
export * as WalletBackgroundAmbire from './tokens/background/WALLET.svg'
5977+
export * as WalletBrandedCypherock from './wallets/branded/cypherock.svg'
5978+
export * as WalletMonoCypherock from './wallets/mono/cypherock.svg'
5979+
export * as WalletBackgroundCypherock from './wallets/background/cypherock.svg'
5980+
export * as WalletBrandedDaimo from './wallets/branded/daimo.svg'
5981+
export * as WalletMonoDaimo from './wallets/mono/daimo.svg'
5982+
export * as WalletBackgroundDaimo from './wallets/background/daimo.svg'
59745983
export * as ExchangeBranded1inch from './exchanges/branded/1inch.svg'
59755984
export * as ExchangeMono1inch from './exchanges/mono/1inch.svg'
59765985
export * as ExchangeBackground1inch from './exchanges/background/1inch.svg'
Lines changed: 36 additions & 0 deletions
Loading
Lines changed: 11 additions & 0 deletions
Loading
Lines changed: 30 additions & 0 deletions
Loading
Lines changed: 9 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)