@@ -24,7 +24,7 @@ const (
24
24
FeeCollectorTokenPublicKeyConfigEnvName = envConfigPrefix + "FEE_COLLECTOR_TOKEN_PUBLIC_KEY"
25
25
defaultFeeCollectorPublicKey = "invalid" // Ensure something valid is set
26
26
27
- CreateOnSendUsdWithdrawalFeeConfigEnvName = envConfigPrefix + "WITHDRAWAL_CREATE_ON_SEND_WITHDRAWAL_USD_FEE "
27
+ CreateOnSendWithdrawalUsdFeeConfigEnvName = envConfigPrefix + "CREATE_ON_SEND_WITHDRAWAL_USD_FEE "
28
28
defaultCreateOnSendWithdrawalUsdFee = 0.50
29
29
30
30
EnableAirdropsConfigEnvName = envConfigPrefix + "ENABLE_AIRDROPS"
@@ -66,7 +66,7 @@ func WithEnvConfigs() ConfigProvider {
66
66
submitIntentTimeout : env .NewDurationConfig (SubmitIntentTimeoutConfigEnvName , defaultSubmitIntentTimeout ),
67
67
clientReceiveTimeout : env .NewDurationConfig (ClientReceiveTimeoutConfigEnvName , defaultClientReceiveTimeout ),
68
68
feeCollectorTokenPublicKey : env .NewStringConfig (FeeCollectorTokenPublicKeyConfigEnvName , defaultFeeCollectorPublicKey ),
69
- createOnSendWithdrawalUsdFee : env .NewFloat64Config (CreateOnSendUsdWithdrawalFeeConfigEnvName , defaultCreateOnSendWithdrawalUsdFee ),
69
+ createOnSendWithdrawalUsdFee : env .NewFloat64Config (CreateOnSendWithdrawalUsdFeeConfigEnvName , defaultCreateOnSendWithdrawalUsdFee ),
70
70
enableAirdrops : env .NewBoolConfig (EnableAirdropsConfigEnvName , defaultEnableAirdrops ),
71
71
airdropperOwnerPublicKey : env .NewStringConfig (AirdropperOwnerPublicKeyEnvName , defaultAirdropperOwnerPublicKey ),
72
72
maxAirdropUsdValue : env .NewFloat64Config (MaxAirdropUsdValueEnvName , defaultMaxAirdropUsdValue ),
0 commit comments