Skip to content

Commit

Permalink
Added vds config
Browse files Browse the repository at this point in the history
  • Loading branch information
smakhtin committed Oct 22, 2024
1 parent e60f7d9 commit c9e8a3a
Show file tree
Hide file tree
Showing 2 changed files with 85 additions and 2 deletions.
81 changes: 79 additions & 2 deletions apps/api/src/routes/claims/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,20 @@ const mergeMadrid2024Attributes = [
{ trait_type: 'proofOf', value: 'presence' },
];

const vds2024Attributes = [
{ trait_type: 'eventId', value: 'vds2024' },
{
trait_type: 'eventURL',
value: 'https://vds.tech/',
},
{ trait_type: 'country', value: 'Spain' },
{ trait_type: 'city', value: 'Valencia' },
{ trait_type: 'virtualEvent', value: 'false' },
{ trait_type: 'startDate', value: '23-Oct-2024' },
{ trait_type: 'endDate', value: '24-Oct-2024' },
{ trait_type: 'proofOf', value: 'presence' },
];

export const collections: Collections = {
//ENGIE
'5f773e35-d5f2-41dc-ae80-c94e0e8e4821': {
Expand Down Expand Up @@ -549,7 +563,7 @@ export const collections: Collections = {
tokenStandard: 'unique2',
},
'testnet-merge-madrid-2024': {
name: 'dev-merge-madrid-2024',
name: 'testnet-merge-madrid-2024',
externalId: '3551',
metadata: {
description:
Expand All @@ -576,7 +590,7 @@ export const collections: Collections = {
tokenStandard: 'unique2',
},
'merge-madrid-2024': {
name: 'dev-merge-madrid-2024',
name: 'merge-madrid-2024',
externalId: '665',
metadata: {
description:
Expand All @@ -602,4 +616,67 @@ export const collections: Collections = {
network: 'unique',
tokenStandard: 'unique2',
},
'dev-vds2024': {
name: 'dev-vds2024',
externalId: '3030',
metadata: {
description:
'Congratulations on claiming your DOTphin Proof of Presence at VDS Valencia 2024! By claiming it, you’re launching into an exhilarating journey where your presence fuels the evolution of the mysterious DOTphin. Use it to unlock your **Orbo** and evolve your DOTphin. What will it become? Dive in and discover the magic—you’re just one PoP away from greatness!',
image: [
'https://real.myfilebase.com/ipfs/QmUB5YNkqwon84ni9nehEwxEasMfvwehg7nm4AhRVTwCCq/vds2024-air.png',
'https://real.myfilebase.com/ipfs/QmUB5YNkqwon84ni9nehEwxEasMfvwehg7nm4AhRVTwCCq/vds2024-earth.png',
'https://real.myfilebase.com/ipfs/QmUB5YNkqwon84ni9nehEwxEasMfvwehg7nm4AhRVTwCCq/vds2024-water.png',
],
name: 'DOTphin Proof of Presence ‒ VDS 2024',
attributes: [
[{ trait_type: 'element', value: 'air' }, ...vds2024Attributes],
[{ trait_type: 'element', value: 'earth' }, ...vds2024Attributes],
[{ trait_type: 'element', value: 'water' }, ...vds2024Attributes],
],
},
network: 'opal',
tokenStandard: 'unique2',
},
'testnet-vds2024': {
name: 'testnet-vds2024',
externalId: '3551',
metadata: {
description:
'Congratulations on claiming your DOTphin Proof of Presence at VDS Valencia 2024! By claiming it, you’re launching into an exhilarating journey where your presence fuels the evolution of the mysterious DOTphin. Use it to unlock your **Orbo** and evolve your DOTphin. What will it become? Dive in and discover the magic—you’re just one PoP away from greatness!',
image: [
'https://real.myfilebase.com/ipfs/QmUB5YNkqwon84ni9nehEwxEasMfvwehg7nm4AhRVTwCCq/vds2024-air.png',
'https://real.myfilebase.com/ipfs/QmUB5YNkqwon84ni9nehEwxEasMfvwehg7nm4AhRVTwCCq/vds2024-earth.png',
'https://real.myfilebase.com/ipfs/QmUB5YNkqwon84ni9nehEwxEasMfvwehg7nm4AhRVTwCCq/vds2024-water.png',
],
name: 'DOTphin Proof of Presence ‒ VDS 2024',
attributes: [
[{ trait_type: 'element', value: 'air' }, ...vds2024Attributes],
[{ trait_type: 'element', value: 'earth' }, ...vds2024Attributes],
[{ trait_type: 'element', value: 'water' }, ...vds2024Attributes],
],
},
network: 'opal',
tokenStandard: 'unique2',
},
vds2024: {
name: 'vds2024',
externalId: '665',
metadata: {
description:
'Congratulations on claiming your DOTphin Proof of Presence at VDS Valencia 2024! By claiming it, you’re launching into an exhilarating journey where your presence fuels the evolution of the mysterious DOTphin. Use it to unlock your **Orbo** and evolve your DOTphin. What will it become? Dive in and discover the magic—you’re just one PoP away from greatness!',
image: [
'https://real.myfilebase.com/ipfs/QmUB5YNkqwon84ni9nehEwxEasMfvwehg7nm4AhRVTwCCq/vds2024-air.png',
'https://real.myfilebase.com/ipfs/QmUB5YNkqwon84ni9nehEwxEasMfvwehg7nm4AhRVTwCCq/vds2024-earth.png',
'https://real.myfilebase.com/ipfs/QmUB5YNkqwon84ni9nehEwxEasMfvwehg7nm4AhRVTwCCq/vds2024-water.png',
],
name: 'DOTphin Proof of Presence ‒ VDS 2024',
attributes: [
[{ trait_type: 'element', value: 'air' }, ...vds2024Attributes],
[{ trait_type: 'element', value: 'earth' }, ...vds2024Attributes],
[{ trait_type: 'element', value: 'water' }, ...vds2024Attributes],
],
},
network: 'unique',
tokenStandard: 'unique2',
},
};
6 changes: 6 additions & 0 deletions apps/api/src/routes/events/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,10 @@ export const events: Events = {
seed: () => getRandomInt(0, 2),
going: false,
},
vds2024: {
collectionId: 'vds2024',
realCollection: 'dotphin-proofs',
seed: () => getRandomInt(0, 2),
going: true,
},
};

0 comments on commit c9e8a3a

Please sign in to comment.