Merge pull request 'fixed chain arb rpc url' (#380) from chain-378 into main
Some checks failed
ci/woodpecker/push/gateway_tron Pipeline is pending
ci/woodpecker/push/ledger Pipeline is pending
ci/woodpecker/push/nats Pipeline is pending
ci/woodpecker/push/notification Pipeline is pending
ci/woodpecker/push/payments_orchestrator Pipeline is pending
ci/woodpecker/push/billing_documents Pipeline was successful
ci/woodpecker/push/bff Pipeline was successful
ci/woodpecker/push/db Pipeline was successful
ci/woodpecker/push/billing_fees Pipeline was successful
ci/woodpecker/push/discovery Pipeline was successful
ci/woodpecker/push/fx_ingestor Pipeline was successful
ci/woodpecker/push/fx_oracle Pipeline was successful
ci/woodpecker/push/frontend Pipeline was successful
ci/woodpecker/push/gateway_chain Pipeline was successful
ci/woodpecker/push/gateway_mntx Pipeline failed
ci/woodpecker/push/gateway_tgsettle Pipeline failed

Reviewed-on: #380
This commit was merged in pull request #380.
This commit is contained in:
2026-01-30 17:12:20 +00:00
8 changed files with 15 additions and 14 deletions

2
.dockerignore Normal file
View File

@@ -0,0 +1,2 @@
ci/dev/mongo.key*

View File

@@ -52,11 +52,10 @@ help:
# First-time initialization
init:
@echo "$(GREEN)Initializing development environment...$(NC)"
@if [ ! -f ci/dev/mongo.key ]; then \
@if [ ! -f ci/dev/mongo-key/mongo.key ]; then \
echo "$(YELLOW)Generating MongoDB keyfile...$(NC)"; \
openssl rand -base64 756 | tr -d '\n' > ci/dev/mongo.key; \
chown 999:999 ci/dev/mongo.key; \
chmod 400 ci/dev/mongo.key; \
openssl rand -base64 756 | tr -d '\n' > ci/dev/mongo-key/mongo.key; \
chmod 400 ci/dev/mongo-key/mongo.key; \
fi
@if [ ! -f .env.dev ]; then \
echo "$(YELLOW)Creating .env.dev with default values...$(NC)"; \

View File

@@ -56,7 +56,7 @@ CHAIN_GATEWAY_VAULT_SECRET_PATH="${CHAIN_GATEWAY_VAULT_SECRET_PATH:?missing CHAI
export CHAIN_GATEWAY_MONGO_USER="$(./ci/vlt kv_get kv "${CHAIN_GATEWAY_MONGO_SECRET_PATH}" user)"
export CHAIN_GATEWAY_MONGO_PASSWORD="$(./ci/vlt kv_get kv "${CHAIN_GATEWAY_MONGO_SECRET_PATH}" password)"
export CHAIN_GATEWAY_RPC_URL="$(./ci/vlt kv_get kv "${CHAIN_GATEWAY_RPC_SECRET_PATH}" tron_rpc_url)"
export CHAIN_GATEWAY_RPC_URL="$(./ci/vlt kv_get kv "${CHAIN_GATEWAY_RPC_SECRET_PATH}" arbitrum_rpc_url)"
export CHAIN_GATEWAY_SERVICE_WALLET_KEY="$(./ci/vlt kv_get kv "${CHAIN_GATEWAY_WALLET_SECRET_PATH}" private_key)"
export CHAIN_GATEWAY_SERVICE_WALLET_ADDRESS="$(./ci/vlt kv_get kv "${CHAIN_GATEWAY_WALLET_SECRET_PATH}" address || true)"

View File

@@ -73,13 +73,13 @@ services:
restart: unless-stopped
command: >
mongod --replSet dev-rs --bind_ip_all --auth
--keyFile /data/mongo.key --port 27017
--keyFile /etc/mongo/mongo.key --port 27017
environment:
MONGO_INITDB_ROOT_USERNAME: ${MONGO_USER}
MONGO_INITDB_ROOT_PASSWORD: ${MONGO_PASSWORD}
volumes:
- dev-mongo1-data:/data/db
- ./ci/dev/mongo.key:/data/mongo.key:ro
- ./ci/dev/mongo-key:/etc/mongo
ports:
- "27017:27017"
networks:
@@ -98,13 +98,13 @@ services:
restart: unless-stopped
command: >
mongod --replSet dev-rs --bind_ip_all --auth
--keyFile /data/mongo.key --port 27017
--keyFile /etc/mongo/mongo.key --port 27017
environment:
MONGO_INITDB_ROOT_USERNAME: ${MONGO_USER}
MONGO_INITDB_ROOT_PASSWORD: ${MONGO_PASSWORD}
volumes:
- dev-mongo2-data:/data/db
- ./ci/dev/mongo.key:/data/mongo.key:ro
- ./ci/dev/mongo-key:/etc/mongo
networks:
- sendico-dev
healthcheck:
@@ -121,13 +121,13 @@ services:
restart: unless-stopped
command: >
mongod --replSet dev-rs --bind_ip_all --auth
--keyFile /data/mongo.key --port 27017
--keyFile /etc/mongo/mongo.key --port 27017
environment:
MONGO_INITDB_ROOT_USERNAME: ${MONGO_USER}
MONGO_INITDB_ROOT_PASSWORD: ${MONGO_PASSWORD}
volumes:
- dev-mongo3-data:/data/db
- ./ci/dev/mongo.key:/data/mongo.key:ro
- ./ci/dev/mongo-key:/etc/mongo
networks:
- sendico-dev
healthcheck:

View File

@@ -60,7 +60,7 @@ class PaymentInfoSection extends StatelessWidget {
SizedBox(height: dimensions.paddingMedium),
if (hasRecipient && methodsForSelectedType.length > 1)
DropdownButtonFormField<PaymentMethod>(
value: selectedMethod,
initialValue: selectedMethod,
dropdownColor: Theme.of(context).colorScheme.onSecondary,
decoration: InputDecoration(
labelText: loc.paymentMethodDetails,

View File

@@ -16,7 +16,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
# In Windows, build-name is used as the major, minor, and patch parts
# of the product and file versions while build-number is used as the build suffix.
version: 2.3.1+408
version: 2.4.0+488
environment:
sdk: ^3.8.1

View File

@@ -1 +1 @@
2.3.1
2.4.0