Skip to content

Commit

Permalink
Merge pull request #781 from airgap-it/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
AndreasGassmann authored May 15, 2024
2 parents 8452a04 + fbc47b6 commit 82a6778
Show file tree
Hide file tree
Showing 36 changed files with 563 additions and 483 deletions.
8 changes: 4 additions & 4 deletions examples/dapp.html
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@
el.innerText = `'time' ${start} ${label}`
el.setAttribute('style', 'background-color: grey')
document.getElementById('logger-output').appendChild(el)
console.time(label)
start ? console.time(label) : console.timeEnd(label)
}

timeLog(method, ...args) {
Expand Down Expand Up @@ -234,7 +234,7 @@
},
featuredWallets: ['kukai', 'metamask', 'airgap'],
network: {
type: beacon.NetworkType.GHOSTNET
type: beacon.NetworkType.MAINNET
},
enableMetrics: true
// matrixNodes: ['test.papers.tech', 'test2.papers.tech', 'matrix.papers.tech']
Expand Down Expand Up @@ -275,7 +275,8 @@
})
}

client.subscribeToEvent('ACTIVE_ACCOUNT_SET', () => {
client.subscribeToEvent('ACTIVE_ACCOUNT_SET', (account) => {
console.log('ACTIVE_ACCOUNT_SET received', account)
updateActiveAccount()
})

Expand Down Expand Up @@ -407,7 +408,6 @@
.disconnect()
.then(() => console.log('disconnected.'))
.catch((err) => console.error(err.message))

}

const requestSimulatedProofOfEventChallenge = () => {
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"version": "4.2.1",
"version": "4.2.2",
"$schema": "node_modules/lerna/schemas/lerna-schema.json"
}
102 changes: 51 additions & 51 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions packages/beacon-blockchain-substrate/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@airgap/beacon-blockchain-substrate",
"version": "4.2.1",
"version": "4.2.2",
"description": "This package adds support for `substrate` based blockchains. It can be used in combination with the `@airgap/beacon-dapp` or `@airgap/beacon-wallet` packages.",
"author": "Andreas Gassmann <[email protected]>",
"homepage": "https://walletbeacon.io",
Expand Down Expand Up @@ -34,7 +34,7 @@
"url": "https://github.com/airgap-it/beacon-sdk/issues"
},
"dependencies": {
"@airgap/beacon-types": "4.2.1",
"@airgap/beacon-ui": "4.2.1"
"@airgap/beacon-types": "4.2.2",
"@airgap/beacon-ui": "4.2.2"
}
}
6 changes: 3 additions & 3 deletions packages/beacon-blockchain-tezos-sapling/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@airgap/beacon-blockchain-tezos-sapling",
"version": "4.2.1",
"version": "4.2.2",
"description": "This package adds support for `tezos-sapling`, the sapling integration on the Tezos blockchain. It can be used in combination with the `@airgap/beacon-dapp` or `@airgap/beacon-wallet` packages.",
"author": "Andreas Gassmann <[email protected]>",
"homepage": "https://walletbeacon.io",
Expand Down Expand Up @@ -34,7 +34,7 @@
"url": "https://github.com/airgap-it/beacon-sdk/issues"
},
"dependencies": {
"@airgap/beacon-types": "4.2.1",
"@airgap/beacon-ui": "4.2.1"
"@airgap/beacon-types": "4.2.2",
"@airgap/beacon-ui": "4.2.2"
}
}
6 changes: 3 additions & 3 deletions packages/beacon-blockchain-tezos/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@airgap/beacon-blockchain-tezos",
"version": "4.2.1",
"version": "4.2.2",
"description": "This package adds support for the `tezos` blockchain. It can be used in combination with the `@airgap/beacon-dapp` or `@airgap/beacon-wallet` packages.",
"author": "Andreas Gassmann <[email protected]>",
"homepage": "https://walletbeacon.io",
Expand Down Expand Up @@ -34,7 +34,7 @@
"url": "https://github.com/airgap-it/beacon-sdk/issues"
},
"dependencies": {
"@airgap/beacon-types": "4.2.1",
"@airgap/beacon-ui": "4.2.1"
"@airgap/beacon-types": "4.2.2",
"@airgap/beacon-ui": "4.2.2"
}
}
6 changes: 3 additions & 3 deletions packages/beacon-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@airgap/beacon-core",
"version": "4.2.1",
"version": "4.2.2",
"description": "This package contains internal methods that are used by both the dApp and wallet client.",
"author": "Andreas Gassmann <[email protected]>",
"homepage": "https://walletbeacon.io",
Expand Down Expand Up @@ -34,8 +34,8 @@
"url": "https://github.com/airgap-it/beacon-sdk/issues"
},
"dependencies": {
"@airgap/beacon-types": "4.2.1",
"@airgap/beacon-utils": "4.2.1",
"@airgap/beacon-types": "4.2.2",
"@airgap/beacon-utils": "4.2.2",
"@stablelib/ed25519": "^1.0.3",
"@stablelib/nacl": "^1.0.4",
"@stablelib/utf8": "^1.0.1",
Expand Down
Loading

0 comments on commit 82a6778

Please sign in to comment.