Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# GitHub Credentials for Circle W3S Android SDK
# Replace with your actual GitHub username and Personal Access Token (PAT)
# PAT needs 'read:packages' permission

PWSDK_MAVEN_URL=https://maven.pkg.github.com/circlefin/w3s-android-sdk
PWSDK_MAVEN_USERNAME=<YOUR_GITHUB_USERNAME>
PWSDK_MAVEN_PASSWORD=<YOUR_GITHUB_PAT>
70 changes: 0 additions & 70 deletions .eslintrc.js

This file was deleted.

98 changes: 41 additions & 57 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,66 +1,50 @@
# OSX
#
.DS_Store
# Learn more https://docs.github.com/en/get-started/getting-started-with-git/ignoring-files

# Xcode
#
build/
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata
*.xccheckout
*.moved-aside
DerivedData
*.hmap
*.ipa
*.xcuserstate
ios/.xcode.env.local
# dependencies
node_modules/

# Android/IntelliJ
#
build/
.idea
.gradle
local.properties
*.iml
*.hprof
.cxx/
*.keystore
!debug.keystore
# Expo
.expo/
dist/
web-build/
expo-env.d.ts

# Native
.kotlin/
*.orig.*
*.jks
*.p8
*.p12
*.key
*.mobileprovision

# Metro
.metro-health-check*

# node.js
#
node_modules/
npm-debug.log
yarn-error.log
# debug
npm-debug.*
yarn-debug.*
yarn-error.*

# fastlane
#
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
# screenshots whenever they are needed.
# For more information about the recommended setup visit:
# https://docs.fastlane.tools/best-practices/source-control/
# macOS
.DS_Store
*.pem

**/fastlane/report.xml
**/fastlane/Preview.html
**/fastlane/screenshots
**/fastlane/test_output
# local env files
.env*.local
.env

# Bundle artifact
*.jsbundle
# typescript
*.tsbuildinfo

# Ruby / CocoaPods
/ios/Pods/
/vendor/bundle/
app-example

# Temporary files created by Metro to check the health of the file watcher
.metro-health-check*
# generated native folders
/ios
/android

# testing
/coverage
# sensitive configuration files (added protection)
.npmrc
local.properties
google-services.json
GoogleService-Info.plist
7 changes: 0 additions & 7 deletions .prettierrc.js

This file was deleted.

1 change: 0 additions & 1 deletion .watchmanconfig

This file was deleted.

12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

> This changelog keeps track of all updates and improvements made to `W3sSampleWallet`.

## v2.0.0 - _(2026-03-10)_
### 🚀 What's New
- Migrated from **bare React Native** to **Expo 54**
- Upgraded `@circle-fin/w3s-pw-react-native-sdk` from v1 to v2
- Updated README with configuration details
- Added MIGRATION_GUIDE

## v1.1.6 - _(2026-03-06)_
### 🚀 What's New
- Bumped `@circle-fin/w3s-pw-react-native-sdk` to v1.1.7 [(npm)](https://www.npmjs.com/package/@circle-fin/w3s-pw-react-native-sdk)
- Upgraded dependencies and improved SDK integration.

## v1.1.2 - _(2025-03-19)_
### 🚀 What's New
- Upgrade React Native version from _0.73.6_ to _0.75.5_.
Expand Down
2 changes: 1 addition & 1 deletion COPYRIGHT
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2024, Circle Internet Financial, LTD. All rights reserved.
Copyright (c) 2024-2025, Circle Internet Financial, LTD. All rights reserved.

This file is licensed to you under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. You may obtain a copy
Expand Down
10 changes: 0 additions & 10 deletions Gemfile

This file was deleted.

101 changes: 0 additions & 101 deletions Gemfile.lock

This file was deleted.

2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@

END OF TERMS AND CONDITIONS

© 2024, Circle Internet Financial, LTD. All rights reserved.
© 2024-2025, Circle Internet Financial, LTD. All rights reserved.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
Loading