Skip to content

Commit

Permalink
Release Adena Wallet 'v1.8.4' (#296)
Browse files Browse the repository at this point in the history
  • Loading branch information
jinoosss authored Nov 17, 2023
2 parents 1be20f1 + bff556b commit 8877db5
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "adena-wallet",
"version": "1.8.3",
"version": "1.8.4",
"description": "Adena Wallet",
"license": "Adena License",
"private": true,
Expand Down
2 changes: 1 addition & 1 deletion packages/adena-extension/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "adena-extension",
"version": "1.8.3",
"version": "1.8.4",
"private": true,
"description": "Adena is a friendly browser extension wallet for the Gnoland blockchain.",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/adena-extension/public/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "Adena",
"description": "Adena is a friendly browser extension wallet for the Gnoland blockchain.",
"manifest_version": 3,
"version": "1.8.3",
"version": "1.8.4",
"action": {
"default_popup": "popup.html"
},
Expand Down
2 changes: 2 additions & 0 deletions packages/adena-extension/src/inject.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import {
RequestAddedNetworkMessage,
RequestDocontractMessage,
} from './inject/executor/executor';
import manifest from '@pulbic/manifest.json';

function callbackCustomEvent<T>(event: CustomEvent<T>, callback: (message: T) => void) {
event.stopImmediatePropagation();
Expand All @@ -12,6 +13,7 @@ function callbackCustomEvent<T>(event: CustomEvent<T>, callback: (message: T) =>

const init = () => {
const adena = {
version: manifest.version,
async AddEstablish(name: string) {
const executor = new AdenaExecutor();
const response = await executor.addEstablish(name);
Expand Down
5 changes: 4 additions & 1 deletion packages/adena-extension/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
"module": "esnext",
"target": "es5",
"moduleResolution": "node",
"resolveJsonModule": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"sourceMap": false,
"skipLibCheck": true,
Expand All @@ -30,7 +32,8 @@
"@inject/*": ["src/inject/*"],
"@assets/*": ["src/assets/*"],
"@migrates/*": ["src/migrates/*"],
"@models/*": ["src/models/*"]
"@models/*": ["src/models/*"],
"@pulbic/*": ["public/*"]
}
},
"include": ["./src/**/*"]
Expand Down
1 change: 1 addition & 0 deletions packages/adena-extension/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ const config = {
'@containers': path.resolve(__dirname, 'src/containers'),
'@migrates': path.resolve(__dirname, 'src/migrates'),
'@models': path.resolve(__dirname, 'src/models'),
'@pulbic': path.resolve(__dirname, 'public/'),
},
},
plugins: [
Expand Down
2 changes: 1 addition & 1 deletion packages/adena-module/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "adena-module",
"private": true,
"version": "1.8.3",
"version": "1.8.4",
"description": "Adena's Wallet",
"main": "./dist/index.umd.js",
"module": "./dist/index.esm.js",
Expand Down
2 changes: 1 addition & 1 deletion scripts/build.info
Original file line number Diff line number Diff line change
@@ -1 +1 @@
qa.3
qa.1

0 comments on commit 8877db5

Please sign in to comment.