Skip to content

Commit

Permalink
ci(release): publish latest release
Browse files Browse the repository at this point in the history
  • Loading branch information
hello-happy-puppy committed Jul 2, 2024
1 parent 2a6ff88 commit 5e06d2e
Show file tree
Hide file tree
Showing 1,441 changed files with 21,523 additions and 13,668 deletions.
282 changes: 0 additions & 282 deletions .yarn/patches/react-native-wagmi-charts-npm-2.3.0-8e836a8f3c.patch

This file was deleted.

1 change: 1 addition & 0 deletions CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @uniswap/web-admins
26 changes: 21 additions & 5 deletions RELEASE
Original file line number Diff line number Diff line change
@@ -1,8 +1,24 @@
Here’s the latest:
IPFS hash of the deployment:
- CIDv0: `Qmf3UgVbYneiT58xJcLJYSpvoowcUmhgH1N21P68nkxpvn`
- CIDv1: `bafybeihygb3syfjqxcfwuu4ti6jbim4o2efhlbzg54qrk5feiwz4cqmvom`

Expanded network support — we now support 3 new networks; Zora, Celo, and Avalanche!
The latest release is always mirrored at [app.uniswap.org](https://app.uniswap.org).

You can also access the Uniswap Interface from an IPFS gateway.
**BEWARE**: The Uniswap interface uses [`localStorage`](https://developer.mozilla.org/en-US/docs/Web/API/Window/localStorage) to remember your settings, such as which tokens you have imported.
**You should always use an IPFS gateway that enforces origin separation**, or our hosted deployment of the latest release at [app.uniswap.org](https://app.uniswap.org).
Your Uniswap settings are never remembered across different URLs.

IPFS gateways:
- https://bafybeihygb3syfjqxcfwuu4ti6jbim4o2efhlbzg54qrk5feiwz4cqmvom.ipfs.dweb.link/
- https://bafybeihygb3syfjqxcfwuu4ti6jbim4o2efhlbzg54qrk5feiwz4cqmvom.ipfs.cf-ipfs.com/
- [ipfs://Qmf3UgVbYneiT58xJcLJYSpvoowcUmhgH1N21P68nkxpvn/](ipfs://Qmf3UgVbYneiT58xJcLJYSpvoowcUmhgH1N21P68nkxpvn/)

### 5.37.1 (2024-07-02)


### Bug Fixes

* **web:** avalanche isToken check hotfix (#9790) a60c130

Other changes:

- Transfer more assets from CEXs to the wallet using our built-in integration
- Various bug fixes and performance improvements
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
mobile/1.29.2
web/5.37.1
14 changes: 14 additions & 0 deletions apps/mobile/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,18 @@ module.exports = {
ecmaVersion: 2018,
sourceType: 'module',
},
overrides: [
{
files: ['*.ts', '*.tsx'],
rules: {
'no-relative-import-paths/no-relative-import-paths': [
'error',
{
allowSameFolder: false,
prefix: 'src',
},
],
},
},
],
}
6 changes: 3 additions & 3 deletions apps/mobile/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -131,17 +131,17 @@ android {
dev {
isDefault(true)
applicationIdSuffix ".dev"
versionName "1.29.2"
versionName "1.30"
dimension "variant"
}
beta {
applicationIdSuffix ".beta"
versionName "1.29.2"
versionName "1.30"
dimension "variant"
}
prod {
dimension "variant"
versionName "1.29.2"
versionName "1.30"
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,11 @@ class RNEthersRSModule(reactContext: ReactApplicationContext) : ReactContextBase
}

@ReactMethod fun generateAndStorePrivateKey(mnemonicId: String, derivationIndex: Int, promise: Promise) {
promise.resolve(ethersRs.generateAndStorePrivateKey(mnemonicId, derivationIndex))
try {
promise.resolve(ethersRs.generateAndStorePrivateKey(mnemonicId, derivationIndex))
} catch (error: Exception) {
promise.reject(error)
}
}

@ReactMethod fun removePrivateKey(address: String, promise: Promise) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,8 @@ class RnEthersRs(applicationContext: Context) {
*/
fun generateAndStorePrivateKey(mnemonicId: String, derivationIndex: Int): String {
val mnemonic = retrieveMnemonic(mnemonicId)
?: throw IllegalArgumentException("Mnemonic not found")

val privateKey = privateKeyFromMnemonic(mnemonic, derivationIndex)
val xprv = privateKey.privateKey
val address = privateKey.address
Expand Down
Loading

0 comments on commit 5e06d2e

Please sign in to comment.