2022-11-27 20:10:21 +00:00
|
|
|
name: PR Test Build
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
2023-10-03 14:56:10 +00:00
|
|
|
branches: [main]
|
2023-12-06 13:53:26 +00:00
|
|
|
workflow_dispatch:
|
|
|
|
inputs:
|
|
|
|
branch:
|
CW-555-Add-Solana-Wallet (#1272)
* chore: Create cw_solana package and clean up files
* feat: Add Solana Wallet - Create, Restore form seed, restore from Key, Restore from QR, Send, Receive, transaction history, spl tokens
* fix: Make transactions file specific to solana only for solana transactions
* chore: Revert inject app details script
* fix: Fix issue with node and switch current node to main beta instead of testnet
* fix: Fix merge conflicts and adjust migration version
* fix: Fetch spl token error
Signed-off-by: Blazebrain <davidadegoke16@gmail.com>
* fix: Diplay and activate spl tokens bug
* fix: Review and fixes
* fix: reverted formatting for cryptocurrency class
* fix: Review comments, split sending flow into signing and sending separately, fix issues
* fix: Revert throwing unimplenented error
* chore: Fix comment
* chore: Fix comment
* fix: Errors in flow
* Update provider_types.dart [skip ci]
* fix: Issues with solana wallet
* Update solana_wallet.dart [skip ci]
* fix: Review comments
* fix: Date time config
* fix: Revert bash script for app details
* fix: Error with balance, displaying fees, fixing sent or received identifier bug, displaying token symbol with token transaction item in transactions list
* fix: Issues with address validation when sending spl tokens and walletconnect initial setup
* fix: Issues with sending, fetching transactions history, almost wrapping up walletconnect
* fix: Adjust imports that would affect monerocom building successfully
* fix: Refine transaction direction and continue work on walletconnect
* feat: Display SPL token transfers in the transaction history and finally settle the transaction direction
* fix: Delay in transactions history dispaly, show native token transactions first, then process spl token transactions
* feat: Switch node and revert solana chain id to previous id
* fix: Remove print statement
* fix: Remove await for transactions, fetch all transaction histories instantly and adjust solana send success message
* chore: Code refactoring and streamlined wallet type check for solana send success message
* fix: Make timeout error for node silent and add spl token images
---------
Signed-off-by: Blazebrain <davidadegoke16@gmail.com>
Co-authored-by: Omar Hatem <omarh.ismail1@gmail.com>
2024-02-23 13:39:19 +00:00
|
|
|
description: "Branch name to build"
|
2023-12-06 13:53:26 +00:00
|
|
|
required: true
|
CW-555-Add-Solana-Wallet (#1272)
* chore: Create cw_solana package and clean up files
* feat: Add Solana Wallet - Create, Restore form seed, restore from Key, Restore from QR, Send, Receive, transaction history, spl tokens
* fix: Make transactions file specific to solana only for solana transactions
* chore: Revert inject app details script
* fix: Fix issue with node and switch current node to main beta instead of testnet
* fix: Fix merge conflicts and adjust migration version
* fix: Fetch spl token error
Signed-off-by: Blazebrain <davidadegoke16@gmail.com>
* fix: Diplay and activate spl tokens bug
* fix: Review and fixes
* fix: reverted formatting for cryptocurrency class
* fix: Review comments, split sending flow into signing and sending separately, fix issues
* fix: Revert throwing unimplenented error
* chore: Fix comment
* chore: Fix comment
* fix: Errors in flow
* Update provider_types.dart [skip ci]
* fix: Issues with solana wallet
* Update solana_wallet.dart [skip ci]
* fix: Review comments
* fix: Date time config
* fix: Revert bash script for app details
* fix: Error with balance, displaying fees, fixing sent or received identifier bug, displaying token symbol with token transaction item in transactions list
* fix: Issues with address validation when sending spl tokens and walletconnect initial setup
* fix: Issues with sending, fetching transactions history, almost wrapping up walletconnect
* fix: Adjust imports that would affect monerocom building successfully
* fix: Refine transaction direction and continue work on walletconnect
* feat: Display SPL token transfers in the transaction history and finally settle the transaction direction
* fix: Delay in transactions history dispaly, show native token transactions first, then process spl token transactions
* feat: Switch node and revert solana chain id to previous id
* fix: Remove print statement
* fix: Remove await for transactions, fetch all transaction histories instantly and adjust solana send success message
* chore: Code refactoring and streamlined wallet type check for solana send success message
* fix: Make timeout error for node silent and add spl token images
---------
Signed-off-by: Blazebrain <davidadegoke16@gmail.com>
Co-authored-by: Omar Hatem <omarh.ismail1@gmail.com>
2024-02-23 13:39:19 +00:00
|
|
|
default: "main"
|
2022-11-27 20:10:21 +00:00
|
|
|
|
|
|
|
jobs:
|
2023-03-01 03:12:36 +00:00
|
|
|
PR_test_build:
|
2023-01-05 13:54:48 +00:00
|
|
|
runs-on: ubuntu-20.04
|
2022-12-28 20:20:37 +00:00
|
|
|
env:
|
|
|
|
STORE_PASS: test@cake_wallet
|
|
|
|
KEY_PASS: test@cake_wallet
|
2024-03-10 02:02:30 +00:00
|
|
|
PR_NUMBER: ${{ github.event.number }}
|
2022-11-27 20:10:21 +00:00
|
|
|
|
|
|
|
steps:
|
2023-12-06 13:53:26 +00:00
|
|
|
- name: is pr
|
|
|
|
if: github.event_name == 'pull_request'
|
|
|
|
run: echo "BRANCH_NAME=${GITHUB_HEAD_REF}" >> $GITHUB_ENV
|
|
|
|
|
|
|
|
- name: is not pr
|
|
|
|
if: github.event_name != 'pull_request'
|
|
|
|
run: echo "BRANCH_NAME=${{ github.event.inputs.branch }}" >> $GITHUB_ENV
|
|
|
|
|
2023-07-21 14:21:37 +00:00
|
|
|
- name: Free Up GitHub Actions Ubuntu Runner Disk Space
|
|
|
|
run: |
|
|
|
|
sudo rm -rf /usr/share/dotnet
|
|
|
|
sudo rm -rf /opt/ghc
|
|
|
|
sudo rm -rf "/usr/local/share/boost"
|
|
|
|
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
|
|
|
|
|
2022-11-27 20:10:21 +00:00
|
|
|
- uses: actions/checkout@v2
|
2022-11-29 13:19:51 +00:00
|
|
|
- uses: actions/setup-java@v1
|
|
|
|
with:
|
2023-11-17 22:15:15 +00:00
|
|
|
java-version: "11.x"
|
2022-11-29 13:19:51 +00:00
|
|
|
|
|
|
|
- name: Flutter action
|
|
|
|
uses: subosito/flutter-action@v1
|
|
|
|
with:
|
2024-04-05 18:07:26 +00:00
|
|
|
flutter-version: "3.13.9"
|
2022-11-29 13:19:51 +00:00
|
|
|
channel: stable
|
|
|
|
|
|
|
|
- name: Install package dependencies
|
|
|
|
run: sudo apt-get install -y curl unzip automake build-essential file pkg-config git python libtool libtinfo5 cmake clang
|
|
|
|
|
|
|
|
- name: Execute Build and Setup Commands
|
|
|
|
run: |
|
|
|
|
sudo mkdir -p /opt/android
|
|
|
|
sudo chown $USER /opt/android
|
|
|
|
cd /opt/android
|
2023-11-18 13:43:15 +00:00
|
|
|
-y curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
|
|
|
|
cargo install cargo-ndk
|
2023-12-06 13:53:26 +00:00
|
|
|
git clone https://github.com/cake-tech/cake_wallet.git --branch ${{ env.BRANCH_NAME }}
|
2022-11-29 13:19:51 +00:00
|
|
|
cd cake_wallet/scripts/android/
|
|
|
|
./install_ndk.sh
|
2023-03-01 05:01:17 +00:00
|
|
|
source ./app_env.sh cakewallet
|
2023-10-12 22:50:16 +00:00
|
|
|
chmod +x pubspec_gen.sh
|
2022-11-29 13:19:51 +00:00
|
|
|
./app_config.sh
|
2023-01-05 16:02:59 +00:00
|
|
|
|
|
|
|
- name: Cache Externals
|
|
|
|
id: cache-externals
|
|
|
|
uses: actions/cache@v3
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
/opt/android/cake_wallet/cw_haven/android/.cxx
|
|
|
|
/opt/android/cake_wallet/cw_haven/ios/External
|
|
|
|
/opt/android/cake_wallet/cw_monero/android/.cxx
|
|
|
|
/opt/android/cake_wallet/cw_monero/ios/External
|
|
|
|
/opt/android/cake_wallet/cw_shared_external/ios/External
|
2023-08-24 13:54:05 +00:00
|
|
|
key: ${{ hashFiles('**/build_monero.sh', '**/build_haven.sh', '**/monero_api.cpp') }}
|
2023-01-05 16:02:59 +00:00
|
|
|
|
|
|
|
- if: ${{ steps.cache-externals.outputs.cache-hit != 'true' }}
|
|
|
|
name: Generate Externals
|
|
|
|
run: |
|
|
|
|
cd /opt/android/cake_wallet/scripts/android/
|
|
|
|
source ./app_env.sh cakewallet
|
2022-11-29 13:19:51 +00:00
|
|
|
./build_all.sh
|
|
|
|
./copy_monero_deps.sh
|
|
|
|
|
|
|
|
- name: Install Flutter dependencies
|
|
|
|
run: |
|
|
|
|
cd /opt/android/cake_wallet
|
|
|
|
flutter pub get
|
|
|
|
|
|
|
|
- name: Generate KeyStore
|
|
|
|
run: |
|
|
|
|
cd /opt/android/cake_wallet/android/app
|
2022-12-28 20:20:37 +00:00
|
|
|
keytool -genkey -v -keystore key.jks -keyalg RSA -keysize 2048 -validity 10000 -alias testKey -noprompt -dname "CN=CakeWallet, OU=CakeWallet, O=CakeWallet, L=Florida, S=America, C=USA" -storepass $STORE_PASS -keypass $KEY_PASS
|
2022-11-29 13:19:51 +00:00
|
|
|
|
|
|
|
- name: Generate key properties
|
|
|
|
run: |
|
|
|
|
cd /opt/android/cake_wallet
|
2022-12-28 20:20:37 +00:00
|
|
|
flutter packages pub run tool/generate_android_key_properties.dart keyAlias=testKey storeFile=key.jks storePassword=$STORE_PASS keyPassword=$KEY_PASS
|
2022-11-29 13:19:51 +00:00
|
|
|
|
|
|
|
- name: Generate localization
|
|
|
|
run: |
|
|
|
|
cd /opt/android/cake_wallet
|
|
|
|
flutter packages pub run tool/generate_localization.dart
|
|
|
|
|
|
|
|
- name: Build generated code
|
|
|
|
run: |
|
|
|
|
cd /opt/android/cake_wallet
|
2024-03-04 17:32:10 +00:00
|
|
|
./model_generator.sh
|
2022-11-29 13:19:51 +00:00
|
|
|
|
|
|
|
- name: Add secrets
|
|
|
|
run: |
|
|
|
|
cd /opt/android/cake_wallet
|
|
|
|
touch lib/.secrets.g.dart
|
CW-551-Refactor-EVM-Chains (#1256)
* feat: Create central package for EVM chains
* chore: Cleanup pubspec and add core evm dependencies
* feat: Replicated core evm chain files, time to start fixing the issues
* feat: Setup evm central package to handle all evm chains
* feat: Link up Polygon and Ethereum wallets to the centra evm package, fix bugs and issues, and optimze for better performance
* feat: Setup and adjust configs to reflect new evm configurations
* Remove unneeded file
* fix: Changes done while re-reviewing entire structure and refactor
* fix: Add evm chain wallet path to imports in configure file
* feat: Adjust implementation of parent class, remove unneeded files, remove windows, linux and mac directories, restructure the evm child classes
* fix: Make EVMChainWallet a central abstract class and adjust accordingly
* fix: Adjust transaction info, restructure EVMWalletChain to be an abstract, adjust external facing interfaces for polygon and ethereum, adjust configuration for ethereum and polygon in configure file
* fix: Testing issues
* fix: Add localization for nft tile and details page texts and add dashes for null responses
* fix: merge conflicts
* Minor fixes for building Monero.com
---------
Co-authored-by: OmarHatem <omarh.ismail1@gmail.com>
2024-01-30 18:01:48 +00:00
|
|
|
touch cw_evm/lib/.secrets.g.dart
|
CW-555-Add-Solana-Wallet (#1272)
* chore: Create cw_solana package and clean up files
* feat: Add Solana Wallet - Create, Restore form seed, restore from Key, Restore from QR, Send, Receive, transaction history, spl tokens
* fix: Make transactions file specific to solana only for solana transactions
* chore: Revert inject app details script
* fix: Fix issue with node and switch current node to main beta instead of testnet
* fix: Fix merge conflicts and adjust migration version
* fix: Fetch spl token error
Signed-off-by: Blazebrain <davidadegoke16@gmail.com>
* fix: Diplay and activate spl tokens bug
* fix: Review and fixes
* fix: reverted formatting for cryptocurrency class
* fix: Review comments, split sending flow into signing and sending separately, fix issues
* fix: Revert throwing unimplenented error
* chore: Fix comment
* chore: Fix comment
* fix: Errors in flow
* Update provider_types.dart [skip ci]
* fix: Issues with solana wallet
* Update solana_wallet.dart [skip ci]
* fix: Review comments
* fix: Date time config
* fix: Revert bash script for app details
* fix: Error with balance, displaying fees, fixing sent or received identifier bug, displaying token symbol with token transaction item in transactions list
* fix: Issues with address validation when sending spl tokens and walletconnect initial setup
* fix: Issues with sending, fetching transactions history, almost wrapping up walletconnect
* fix: Adjust imports that would affect monerocom building successfully
* fix: Refine transaction direction and continue work on walletconnect
* feat: Display SPL token transfers in the transaction history and finally settle the transaction direction
* fix: Delay in transactions history dispaly, show native token transactions first, then process spl token transactions
* feat: Switch node and revert solana chain id to previous id
* fix: Remove print statement
* fix: Remove await for transactions, fetch all transaction histories instantly and adjust solana send success message
* chore: Code refactoring and streamlined wallet type check for solana send success message
* fix: Make timeout error for node silent and add spl token images
---------
Signed-off-by: Blazebrain <davidadegoke16@gmail.com>
Co-authored-by: Omar Hatem <omarh.ismail1@gmail.com>
2024-02-23 13:39:19 +00:00
|
|
|
touch cw_solana/lib/.secrets.g.dart
|
2022-11-29 13:19:51 +00:00
|
|
|
echo "const salt = '${{ secrets.SALT }}';" > lib/.secrets.g.dart
|
|
|
|
echo "const keychainSalt = '${{ secrets.KEY_CHAIN_SALT }}';" >> lib/.secrets.g.dart
|
|
|
|
echo "const key = '${{ secrets.KEY }}';" >> lib/.secrets.g.dart
|
|
|
|
echo "const walletSalt = '${{ secrets.WALLET_SALT }}';" >> lib/.secrets.g.dart
|
|
|
|
echo "const shortKey = '${{ secrets.SHORT_KEY }}';" >> lib/.secrets.g.dart
|
|
|
|
echo "const backupSalt = '${{ secrets.BACKUP_SALT }}';" >> lib/.secrets.g.dart
|
|
|
|
echo "const backupKeychainSalt = '${{ secrets.BACKUP_KEY_CHAIN_SALT }}';" >> lib/.secrets.g.dart
|
|
|
|
echo "const changeNowApiKey = '${{ secrets.CHANGE_NOW_API_KEY }}';" >> lib/.secrets.g.dart
|
2023-04-14 04:39:08 +00:00
|
|
|
echo "const changeNowApiKeyDesktop = '${{ secrets.CHANGE_NOW_API_KEY_DESKTOP }}';" >> lib/.secrets.g.dart
|
2022-11-29 13:19:51 +00:00
|
|
|
echo "const wyreSecretKey = '${{ secrets.WYRE_SECRET_KEY }}';" >> lib/.secrets.g.dart
|
|
|
|
echo "const wyreApiKey = '${{ secrets.WYRE_API_KEY }}';" >> lib/.secrets.g.dart
|
|
|
|
echo "const wyreAccountId = '${{ secrets.WYRE_ACCOUNT_ID }}';" >> lib/.secrets.g.dart
|
|
|
|
echo "const moonPayApiKey = '${{ secrets.MOON_PAY_API_KEY }}';" >> lib/.secrets.g.dart
|
|
|
|
echo "const moonPaySecretKey = '${{ secrets.MOON_PAY_SECRET_KEY }}';" >> lib/.secrets.g.dart
|
|
|
|
echo "const sideShiftAffiliateId = '${{ secrets.SIDE_SHIFT_AFFILIATE_ID }}';" >> lib/.secrets.g.dart
|
|
|
|
echo "const simpleSwapApiKey = '${{ secrets.SIMPLE_SWAP_API_KEY }}';" >> lib/.secrets.g.dart
|
2023-04-14 04:39:08 +00:00
|
|
|
echo "const simpleSwapApiKeyDesktop = '${{ secrets.SIMPLE_SWAP_API_KEY_DESKTOP }}';" >> lib/.secrets.g.dart
|
2022-11-29 13:19:51 +00:00
|
|
|
echo "const onramperApiKey = '${{ secrets.ONRAMPER_API_KEY }}';" >> lib/.secrets.g.dart
|
|
|
|
echo "const anypayToken = '${{ secrets.ANY_PAY_TOKEN }}';" >> lib/.secrets.g.dart
|
|
|
|
echo "const ioniaClientId = '${{ secrets.IONIA_CLIENT_ID }}';" >> lib/.secrets.g.dart
|
2023-01-26 18:20:01 +00:00
|
|
|
echo "const twitterBearerToken = '${{ secrets.TWITTER_BEARER_TOKEN }}';" >> lib/.secrets.g.dart
|
2023-02-06 20:20:46 +00:00
|
|
|
echo "const trocadorApiKey = '${{ secrets.TROCADOR_API_KEY }}';" >> lib/.secrets.g.dart
|
|
|
|
echo "const trocadorExchangeMarkup = '${{ secrets.TROCADOR_EXCHANGE_MARKUP }}';" >> lib/.secrets.g.dart
|
2023-03-24 15:26:42 +00:00
|
|
|
echo "const anonPayReferralCode = '${{ secrets.ANON_PAY_REFERRAL_CODE }}';" >> lib/.secrets.g.dart
|
2023-03-31 18:22:51 +00:00
|
|
|
echo "const fiatApiKey = '${{ secrets.FIAT_API_KEY }}';" >> lib/.secrets.g.dart
|
2023-03-31 18:34:39 +00:00
|
|
|
echo "const payfuraApiKey = '${{ secrets.PAYFURA_API_KEY }}';" >> lib/.secrets.g.dart
|
CW-584-WalletConnect-For-Solana (#1362)
* chore: Create cw_solana package and clean up files
* feat: Add Solana Wallet - Create, Restore form seed, restore from Key, Restore from QR, Send, Receive, transaction history, spl tokens
* fix: Make transactions file specific to solana only for solana transactions
* chore: Revert inject app details script
* fix: Fix issue with node and switch current node to main beta instead of testnet
* fix: Fix merge conflicts and adjust migration version
* fix: Fetch spl token error
Signed-off-by: Blazebrain <davidadegoke16@gmail.com>
* fix: Diplay and activate spl tokens bug
* fix: Review and fixes
* fix: reverted formatting for cryptocurrency class
* fix: Review comments, split sending flow into signing and sending separately, fix issues
* fix: Revert throwing unimplenented error
* chore: Fix comment
* chore: Fix comment
* fix: Errors in flow
* Update provider_types.dart [skip ci]
* fix: Issues with solana wallet
* Update solana_wallet.dart [skip ci]
* fix: Review comments
* fix: Date time config
* fix: Revert bash script for app details
* fix: Error with balance, displaying fees, fixing sent or received identifier bug, displaying token symbol with token transaction item in transactions list
* fix: Issues with address validation when sending spl tokens and walletconnect initial setup
* fix: Issues with sending, fetching transactions history, almost wrapping up walletconnect
* fix: Adjust imports that would affect monerocom building successfully
* fix: Refine transaction direction and continue work on walletconnect
* feat: Display SPL token transfers in the transaction history and finally settle the transaction direction
* fix: Delay in transactions history dispaly, show native token transactions first, then process spl token transactions
* feat: Switch node and revert solana chain id to previous id
* fix: Remove print statement
* fix: Remove await for transactions, fetch all transaction histories instantly and adjust solana send success message
* chore: Code refactoring and streamlined wallet type check for solana send success message
* fix: Make timeout error for node silent and add spl token images
* fix: Still trying to figure out what's wrong
* Sync with remote
* feat: First run for walletconnect for solana
* chore: Add ankr api key to secrets
* remove duplicate transaction [skip ci]
---------
Signed-off-by: Blazebrain <davidadegoke16@gmail.com>
Co-authored-by: Omar Hatem <omarh.ismail1@gmail.com>
2024-04-09 00:26:11 +00:00
|
|
|
echo "const ankrApiKey = '${{ secrets.ANKR_API_KEY }}';" >> lib/.secrets.g.dart
|
CW-551-Refactor-EVM-Chains (#1256)
* feat: Create central package for EVM chains
* chore: Cleanup pubspec and add core evm dependencies
* feat: Replicated core evm chain files, time to start fixing the issues
* feat: Setup evm central package to handle all evm chains
* feat: Link up Polygon and Ethereum wallets to the centra evm package, fix bugs and issues, and optimze for better performance
* feat: Setup and adjust configs to reflect new evm configurations
* Remove unneeded file
* fix: Changes done while re-reviewing entire structure and refactor
* fix: Add evm chain wallet path to imports in configure file
* feat: Adjust implementation of parent class, remove unneeded files, remove windows, linux and mac directories, restructure the evm child classes
* fix: Make EVMChainWallet a central abstract class and adjust accordingly
* fix: Adjust transaction info, restructure EVMWalletChain to be an abstract, adjust external facing interfaces for polygon and ethereum, adjust configuration for ethereum and polygon in configure file
* fix: Testing issues
* fix: Add localization for nft tile and details page texts and add dashes for null responses
* fix: merge conflicts
* Minor fixes for building Monero.com
---------
Co-authored-by: OmarHatem <omarh.ismail1@gmail.com>
2024-01-30 18:01:48 +00:00
|
|
|
echo "const etherScanApiKey = '${{ secrets.ETHER_SCAN_API_KEY }}';" >> cw_evm/lib/.secrets.g.dart
|
2024-04-08 22:53:14 +00:00
|
|
|
echo "const moralisApiKey = '${{ secrets.MORALIS_API_KEY }}';" >> cw_evm/lib/.secrets.g.dart
|
2023-08-15 00:47:25 +00:00
|
|
|
echo "const chatwootWebsiteToken = '${{ secrets.CHATWOOT_WEBSITE_TOKEN }}';" >> lib/.secrets.g.dart
|
2023-10-12 00:20:19 +00:00
|
|
|
echo "const exolixApiKey = '${{ secrets.EXOLIX_API_KEY }}';" >> lib/.secrets.g.dart
|
2023-09-14 19:14:49 +00:00
|
|
|
echo "const robinhoodApplicationId = '${{ secrets.ROBINHOOD_APPLICATION_ID }}';" >> lib/.secrets.g.dart
|
2024-03-25 18:16:57 +00:00
|
|
|
echo "const exchangeHelperApiKey = '${{ secrets.ROBINHOOD_CID_CLIENT_SECRET }}';" >> lib/.secrets.g.dart
|
2023-10-03 14:56:10 +00:00
|
|
|
echo "const walletConnectProjectId = '${{ secrets.WALLET_CONNECT_PROJECT_ID }}';" >> lib/.secrets.g.dart
|
2023-11-22 17:43:26 +00:00
|
|
|
echo "const moralisApiKey = '${{ secrets.MORALIS_API_KEY }}';" >> lib/.secrets.g.dart
|
CW-551-Refactor-EVM-Chains (#1256)
* feat: Create central package for EVM chains
* chore: Cleanup pubspec and add core evm dependencies
* feat: Replicated core evm chain files, time to start fixing the issues
* feat: Setup evm central package to handle all evm chains
* feat: Link up Polygon and Ethereum wallets to the centra evm package, fix bugs and issues, and optimze for better performance
* feat: Setup and adjust configs to reflect new evm configurations
* Remove unneeded file
* fix: Changes done while re-reviewing entire structure and refactor
* fix: Add evm chain wallet path to imports in configure file
* feat: Adjust implementation of parent class, remove unneeded files, remove windows, linux and mac directories, restructure the evm child classes
* fix: Make EVMChainWallet a central abstract class and adjust accordingly
* fix: Adjust transaction info, restructure EVMWalletChain to be an abstract, adjust external facing interfaces for polygon and ethereum, adjust configuration for ethereum and polygon in configure file
* fix: Testing issues
* fix: Add localization for nft tile and details page texts and add dashes for null responses
* fix: merge conflicts
* Minor fixes for building Monero.com
---------
Co-authored-by: OmarHatem <omarh.ismail1@gmail.com>
2024-01-30 18:01:48 +00:00
|
|
|
echo "const polygonScanApiKey = '${{ secrets.POLYGON_SCAN_API_KEY }}';" >> cw_evm/lib/.secrets.g.dart
|
2024-02-08 19:59:06 +00:00
|
|
|
echo "const breezApiKey = '${{ secrets.BREEZ_API_KEY }}';" >> cw_lightning/lib/.secrets.g.dart
|
|
|
|
echo "const breezInviteCode = '${{ secrets.BREEZ_INVITE_CODE }}';" >> cw_lightning/lib/.secrets.g.dart
|
CW-555-Add-Solana-Wallet (#1272)
* chore: Create cw_solana package and clean up files
* feat: Add Solana Wallet - Create, Restore form seed, restore from Key, Restore from QR, Send, Receive, transaction history, spl tokens
* fix: Make transactions file specific to solana only for solana transactions
* chore: Revert inject app details script
* fix: Fix issue with node and switch current node to main beta instead of testnet
* fix: Fix merge conflicts and adjust migration version
* fix: Fetch spl token error
Signed-off-by: Blazebrain <davidadegoke16@gmail.com>
* fix: Diplay and activate spl tokens bug
* fix: Review and fixes
* fix: reverted formatting for cryptocurrency class
* fix: Review comments, split sending flow into signing and sending separately, fix issues
* fix: Revert throwing unimplenented error
* chore: Fix comment
* chore: Fix comment
* fix: Errors in flow
* Update provider_types.dart [skip ci]
* fix: Issues with solana wallet
* Update solana_wallet.dart [skip ci]
* fix: Review comments
* fix: Date time config
* fix: Revert bash script for app details
* fix: Error with balance, displaying fees, fixing sent or received identifier bug, displaying token symbol with token transaction item in transactions list
* fix: Issues with address validation when sending spl tokens and walletconnect initial setup
* fix: Issues with sending, fetching transactions history, almost wrapping up walletconnect
* fix: Adjust imports that would affect monerocom building successfully
* fix: Refine transaction direction and continue work on walletconnect
* feat: Display SPL token transfers in the transaction history and finally settle the transaction direction
* fix: Delay in transactions history dispaly, show native token transactions first, then process spl token transactions
* feat: Switch node and revert solana chain id to previous id
* fix: Remove print statement
* fix: Remove await for transactions, fetch all transaction histories instantly and adjust solana send success message
* chore: Code refactoring and streamlined wallet type check for solana send success message
* fix: Make timeout error for node silent and add spl token images
---------
Signed-off-by: Blazebrain <davidadegoke16@gmail.com>
Co-authored-by: Omar Hatem <omarh.ismail1@gmail.com>
2024-02-23 13:39:19 +00:00
|
|
|
echo "const ankrApiKey = '${{ secrets.ANKR_API_KEY }}';" >> cw_solana/lib/.secrets.g.dart
|
2022-11-29 13:19:51 +00:00
|
|
|
|
2022-11-29 13:49:24 +00:00
|
|
|
- name: Rename app
|
2024-03-04 17:32:10 +00:00
|
|
|
run: |
|
2024-03-10 02:02:30 +00:00
|
|
|
echo -e "id=com.cakewallet.test_${{ env.PR_NUMBER }}\nname=${{ env.BRANCH_NAME }}" > /opt/android/cake_wallet/android/app.properties
|
2022-11-29 13:49:24 +00:00
|
|
|
|
2022-11-29 13:19:51 +00:00
|
|
|
- name: Build
|
|
|
|
run: |
|
|
|
|
cd /opt/android/cake_wallet
|
2024-03-04 17:32:10 +00:00
|
|
|
flutter build apk --release --split-per-abi
|
2022-11-27 20:10:21 +00:00
|
|
|
|
CW-555-Add-Solana-Wallet (#1272)
* chore: Create cw_solana package and clean up files
* feat: Add Solana Wallet - Create, Restore form seed, restore from Key, Restore from QR, Send, Receive, transaction history, spl tokens
* fix: Make transactions file specific to solana only for solana transactions
* chore: Revert inject app details script
* fix: Fix issue with node and switch current node to main beta instead of testnet
* fix: Fix merge conflicts and adjust migration version
* fix: Fetch spl token error
Signed-off-by: Blazebrain <davidadegoke16@gmail.com>
* fix: Diplay and activate spl tokens bug
* fix: Review and fixes
* fix: reverted formatting for cryptocurrency class
* fix: Review comments, split sending flow into signing and sending separately, fix issues
* fix: Revert throwing unimplenented error
* chore: Fix comment
* chore: Fix comment
* fix: Errors in flow
* Update provider_types.dart [skip ci]
* fix: Issues with solana wallet
* Update solana_wallet.dart [skip ci]
* fix: Review comments
* fix: Date time config
* fix: Revert bash script for app details
* fix: Error with balance, displaying fees, fixing sent or received identifier bug, displaying token symbol with token transaction item in transactions list
* fix: Issues with address validation when sending spl tokens and walletconnect initial setup
* fix: Issues with sending, fetching transactions history, almost wrapping up walletconnect
* fix: Adjust imports that would affect monerocom building successfully
* fix: Refine transaction direction and continue work on walletconnect
* feat: Display SPL token transfers in the transaction history and finally settle the transaction direction
* fix: Delay in transactions history dispaly, show native token transactions first, then process spl token transactions
* feat: Switch node and revert solana chain id to previous id
* fix: Remove print statement
* fix: Remove await for transactions, fetch all transaction histories instantly and adjust solana send success message
* chore: Code refactoring and streamlined wallet type check for solana send success message
* fix: Make timeout error for node silent and add spl token images
---------
Signed-off-by: Blazebrain <davidadegoke16@gmail.com>
Co-authored-by: Omar Hatem <omarh.ismail1@gmail.com>
2024-02-23 13:39:19 +00:00
|
|
|
# - name: Push to App Center
|
|
|
|
# run: |
|
|
|
|
# echo 'Installing App Center CLI tools'
|
|
|
|
# npm install -g appcenter-cli
|
|
|
|
# echo "Publishing test to App Center"
|
|
|
|
# appcenter distribute release \
|
|
|
|
# --group "Testers" \
|
|
|
|
# --file "/opt/android/cake_wallet/build/app/outputs/apk/release/app-release.apk" \
|
|
|
|
# --release-notes ${{ env.BRANCH_NAME }} \
|
|
|
|
# --app Cake-Labs/Cake-Wallet \
|
|
|
|
# --token ${{ secrets.APP_CENTER_TOKEN }} \
|
|
|
|
# --quiet
|
2022-11-27 20:10:21 +00:00
|
|
|
|
2022-11-29 13:49:24 +00:00
|
|
|
- name: Rename apk file
|
2022-11-29 12:16:04 +00:00
|
|
|
run: |
|
2024-03-04 17:32:10 +00:00
|
|
|
cd /opt/android/cake_wallet/build/app/outputs/flutter-apk
|
2022-11-29 12:23:58 +00:00
|
|
|
mkdir test-apk
|
2024-03-04 17:32:10 +00:00
|
|
|
cp app-arm64-v8a-release.apk test-apk/${{env.BRANCH_NAME}}.apk
|
2022-11-29 12:14:31 +00:00
|
|
|
|
2022-11-29 12:46:03 +00:00
|
|
|
- name: Upload Artifact
|
2022-11-29 13:01:20 +00:00
|
|
|
uses: kittaakos/upload-artifact-as-is@v0
|
2022-11-29 12:46:03 +00:00
|
|
|
with:
|
2024-03-04 17:32:10 +00:00
|
|
|
path: /opt/android/cake_wallet/build/app/outputs/flutter-apk/test-apk/
|
2022-12-19 17:41:00 +00:00
|
|
|
|
|
|
|
- name: Send Test APK
|
2022-12-28 20:20:37 +00:00
|
|
|
continue-on-error: true
|
2023-08-31 17:09:10 +00:00
|
|
|
uses: adrey/slack-file-upload-action@1.0.5
|
|
|
|
with:
|
|
|
|
token: ${{ secrets.SLACK_APP_TOKEN }}
|
2024-03-04 17:32:10 +00:00
|
|
|
path: /opt/android/cake_wallet/build/app/outputs/flutter-apk/test-apk/${{env.BRANCH_NAME}}.apk
|
2023-08-31 17:09:10 +00:00
|
|
|
channel: ${{ secrets.SLACK_APK_CHANNEL }}
|
2023-12-06 13:53:26 +00:00
|
|
|
title: "${{ env.BRANCH_NAME }}.apk"
|
|
|
|
filename: ${{ env.BRANCH_NAME }}.apk
|
2023-08-31 17:09:10 +00:00
|
|
|
initial_comment: ${{ github.event.head_commit.message }}
|