Skip to content

Commit 96b7ba2

Browse files
committed
tix ticketing file
1 parent 459e9a9 commit 96b7ba2

1 file changed

Lines changed: 22 additions & 2 deletions

File tree

devcon/src/config/ticketing.ts

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,21 @@ const ENV_CONFIG = {
1515
},
1616
checkout: {
1717
pretixRedirectUrl: '',
18-
useDaimoPay: false,
18+
forcePretixRedirect: false,
19+
// Buyer-facing support inbox surfaced as "Need help?" mailto in the
20+
// checkout UI. Empty hides the link.
21+
supportEmail: 'support@devcon.org',
1922
},
2023
payment: {
2124
recipientAddress: '0xA163a78C0b811A984fFe1B98b4b1b95BAb24aAcD',
25+
relayerAddress: '0xA163a78C0b811A984fFe1B98b4b1b95BAb24aAcD',
26+
// Crypto-payment discount percentage. 0 disables the discount entirely
27+
// (no UI, no API field, no math). Set per environment. Default 0 so a
28+
// new environment doesn't accidentally ship with a discount nobody
29+
// signed off on.
2230
cryptoDiscountPercent: 3,
31+
fiatEnabled: true,
32+
enabledTokens: ['ETH', 'USDC', 'USDT0'] as readonly ('ETH' | 'USDC' | 'USDT0')[],
2333
},
2434
tax: {
2535
vatPercent: 18,
@@ -57,11 +67,21 @@ const ENV_CONFIG = {
5767
},
5868
checkout: {
5969
pretixRedirectUrl: '',
60-
useDaimoPay: false,
70+
forcePretixRedirect: false,
71+
// Buyer-facing support inbox surfaced as "Need help?" mailto in the
72+
// checkout UI. Empty hides the link.
73+
supportEmail: 'support@devcon.org',
6174
},
6275
payment: {
6376
recipientAddress: '0x403A3A81abA974dEb4faF20514ae34FAf9268E28',
77+
relayerAddress: '0xA163a78C0b811A984fFe1B98b4b1b95BAb24aAcD',
78+
// Crypto-payment discount percentage. 0 disables the discount entirely
79+
// (no UI, no API field, no math). Set per environment. Default 0 so a
80+
// new environment doesn't accidentally ship with a discount nobody
81+
// signed off on.
6482
cryptoDiscountPercent: 10,
83+
fiatEnabled: true,
84+
enabledTokens: ['ETH', 'USDC', 'USDT0'] as readonly ('ETH' | 'USDC' | 'USDT0')[],
6585
},
6686
tax: {
6787
vatPercent: 18,

0 commit comments

Comments
 (0)