mirror of
https://github.com/status-im/status-react.git
synced 2025-01-10 02:56:07 +00:00
Jakub Sokołowski
8ec2f23203
Here the injection of OpenSea API key was done at compile time: https://github.com/status-im/status-mobile/commit/aa72ac57 But this makes `status-go` builds impure, and also prevents them from being extracted from `status-mobile` into `status-go` repo. Instead we pass the `OPENSEA_API_KEY` env variable to JS bundle at build time, which is then passed to `status-go` via the `Statusgo.saveAccountAndLogin` call in `saveAccountAndLogin`: https://github.com/status-im/status-mobile/blob/51174f84/modules/react-native-status/android/src/main/java/im/status/ethereum/module/StatusModule.java#L323-L327 Which sends `NodeConfig` that also contains `WalletConfig` which can include `OpenseaAPIKey`: ```go type WalletConfig struct { Enabled bool OpenseaAPIKey string `json:"OpenseaAPIKey"` } ``` https://github.com/status-im/status-go/blob/0135cc15/params/config.go#L510-L514 Signed-off-by: Jakub Sokołowski <jakub@status.im>
31 lines
1.2 KiB
Nix
31 lines
1.2 KiB
Nix
#
|
|
# This prepares status-go build file called Statusgo.xcframework for XCode.
|
|
# It copies the status-go build result to 'modules/react-native-status/ios/RCTStatus'.
|
|
#
|
|
|
|
{ mkShell, status-go }:
|
|
|
|
mkShell {
|
|
shellHook = ''
|
|
export STATUS_GO_IOS_LIBDIR=${status-go}/Statusgo.xcframework
|
|
|
|
RCTSTATUS_DIR="$STATUS_MOBILE_HOME/modules/react-native-status/ios/RCTStatus"
|
|
targetBasename='Statusgo.xcframework'
|
|
|
|
# Compare target folder with source to see if copying is required
|
|
if [ -d "$RCTSTATUS_DIR/$targetBasename" ] && [ -d $STATUS_MOBILE_HOME/ios/Pods/ ] && \
|
|
diff -qr --no-dereference $RCTSTATUS_DIR/$targetBasename/ $STATUS_GO_IOS_LIBDIR/ > /dev/null; then
|
|
echo "$RCTSTATUS_DIR/$targetBasename already in place"
|
|
else
|
|
sourceBasename="$(basename $STATUS_GO_IOS_LIBDIR)"
|
|
echo "Copying $sourceBasename from Nix store to $RCTSTATUS_DIR"
|
|
rm -rf "$RCTSTATUS_DIR/$targetBasename/"
|
|
cp -a $STATUS_GO_IOS_LIBDIR $RCTSTATUS_DIR
|
|
chmod -R 755 "$RCTSTATUS_DIR/$targetBasename"
|
|
if [ "$sourceBasename" != "$targetBasename" ]; then
|
|
mv "$RCTSTATUS_DIR/$sourceBasename" "$RCTSTATUS_DIR/$targetBasename"
|
|
fi
|
|
fi
|
|
'';
|
|
}
|