-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: disable notaries application button while loading kyc requirements (#2571) * Fix passports marketplace missing data check (#2572) * feat: WalletConnect (#2580) * feat: update selfkey-ui * feat: WalletConnect scan qr-code and manage sessions (#2579) * feat: refactor deep link WalletConnect connector * feat: ui adjustments to WalletConnect sign and transaction screens (#2579) * fix: dashboard token list UI fix (#2581) * fix: default gas and nonce (#2583) * fix: frameless border and sidebar in windows (#2586) * feat: safe gas multiplier (#2585) * feat(version): bump to 1.9.3 Co-authored-by: Kovalov Maxim <max.kovalov@gmail.com> Co-authored-by: Maycon Mello <maycon.mellos@gmail.com> Co-authored-by: Andre Goncalves <andre@andregoncalves.com>
- Loading branch information
1 parent
aeb888d
commit 9baa003
Showing
37 changed files
with
11,610 additions
and
192 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
src/main/migrations/20210420093508_wallet_connect_sessions.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
exports.up = async (knex, Promise) => { | ||
try { | ||
await knex.schema.createTable('wallet_connect_sessions', t => { | ||
t.increments('id'); | ||
t.string('address'); | ||
t.string('session'); | ||
t.string('name'); | ||
t.string('url'); | ||
t.string('icon'); | ||
t.integer('createdAt').notNullable(); | ||
t.integer('updatedAt'); | ||
}); | ||
} catch (error) { | ||
console.error(error); | ||
throw error; | ||
} | ||
}; | ||
|
||
exports.down = async (knex, Promise) => { | ||
await knex.schema.dropTable('wallet_connect_sessions'); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.