Skip to content

Commit

Permalink
feat: Add Light Bridge release pipeline (#1300)
Browse files Browse the repository at this point in the history
* feat: Light bridge pipeline

* Refactor description

* Remove light bridge pipeline as covered by boba-publish-*
  • Loading branch information
wsdt authored Nov 17, 2023
1 parent b3a9e0b commit b481d84
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions ops/docker-compose-bnb-side.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,10 @@ services:
TELEPORTATION_AWS_KMS_KEY_ID: "${TELEPORTATION_AWS_KMS_KEY_ID:-3}"
TELEPORTATION_AWS_KMS_ENDPOINT: "${TELEPORTATION_AWS_KMS_ENDPOINT:-http://kms:8888/}"
TELEPORTATION_AWS_KMS_REGION: "${TELEPORTATION_AWS_KMS_REGION:-us-east-1}"
# TBD best amount to airdrop
TELEPORTATION_AIRDROP_GAS_AMOUNT_WEI: 500000000000000
TELEPORTATION_AIRDROP_COOLDOWN_SECONDS: 86400 # 86400s = 1 day
TELEPORTATION_AIRDROP_ENABLED: false

teleportation_db:
image: postgres
Expand Down
4 changes: 4 additions & 0 deletions ops/docker-compose-side.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,10 @@ services:
TELEPORTATION_AWS_KMS_KEY_ID: "${TELEPORTATION_AWS_KMS_KEY_ID:-3}"
TELEPORTATION_AWS_KMS_REGION: "${TELEPORTATION_AWS_KMS_REGION:-us-east-1}"
TELEPORTATION_AWS_KMS_ENDPOINT: "${TELEPORTATION_AWS_KMS_ENDPOINT:-http://kms:8888/}"
# TBD best amount to airdrop
TELEPORTATION_AIRDROP_GAS_AMOUNT_WEI: "500000000000000"
TELEPORTATION_AIRDROP_COOLDOWN_SECONDS: "86400" # 86400s = 1 day
TELEPORTATION_AIRDROP_ENABLED: "false"

teleportation_db:
image: postgres
Expand Down
4 changes: 0 additions & 4 deletions packages/boba/teleportation/src/exec/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,6 @@ const main = async () => {
'teleportation-airdrop-gas-amount-wei',
env.TELEPORTATION_AIRDROP_GAS_AMOUNT_WEI || '100000000000000' // 0.0001 eth
)
const TELEPORTATION_AIRDROP_MIN_USD_VALUE = config.str(
'teleportation-airdrop-min-usd-value',
env.TELEPORTATION_AIRDROP_MIN_USD_VALUE || '15'
)
const TELEPORTATION_AIRDROP_COOLDOWN_SECONDS = config.str(
'teleportation-airdrop-cooldown-seconds',
env.TELEPORTATION_AIRDROP_COOLDOWN_SECONDS || '86400'
Expand Down

0 comments on commit b481d84

Please sign in to comment.