Skip to content

Commit 843c622

Browse files
authored
Release 0.3.39 (#1164)
Bump version to 0.3.39
1 parent 47d414a commit 843c622

File tree

65 files changed

+462
-468
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+462
-468
lines changed

contracts/captcha/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@prosopo/captcha-contract",
3-
"version": "0.3.38",
3+
"version": "0.3.39",
44
"description": "The captcha contract",
55
"main": "dist/index.js",
66
"type": "module",

contracts/captcha/src/captcha.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"source": {
3-
"hash": "0x9a7f4bc2f1cbd2d447c398ad433b8c6e931c497707c34818baba4b16e25cadb7",
3+
"hash": "0x3f80b04a1c1b67e125025480b400bec73ab213d3c3f9325dab0de4b7678608bb",
44
"language": "ink! 4.3.0",
55
"compiler": "rustc 1.69.0",
66
"build_info": {
@@ -15,7 +15,7 @@
1515
},
1616
"contract": {
1717
"name": "captcha",
18-
"version": "0.3.38",
18+
"version": "0.3.39",
1919
"authors": [
2020
"Chris Taylor <chris@prosopo.io>",
2121
"George Oastler <george@prosopo.io>",

contracts/captcha/src/contract-info/captcha.ts

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

contracts/captcha/src/events/captcha.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export default class EventsClass {
3737
const [address, data] = record.event.data
3838

3939
if (address.toString() === this.__nativeContract.address.toString()) {
40-
const { args, event } = this.__nativeContract.abi.decodeEvent(data)
40+
const { args, event } = this.__nativeContract.abi.decodeEvent(record)
4141

4242
if (filter(event.identifier.toString())) callback(args, event)
4343
}

contracts/captcha/src/shared/utils.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,7 @@ export function decodeEvents(events: any[], contract: ContractPromise, types: an
3232
return event.method == 'ContractEmitted' && address.toString() === contract.address.toString()
3333
})
3434
.map((record: any) => {
35-
const [address, data] = record.event.data
36-
37-
const { args, event } = contract.abi.decodeEvent(data)
35+
const { args, event } = contract.abi.decodeEvent(record)
3836

3937
const _event: Record<string, any> = {}
4038

contracts/common/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@prosopo/common-contract",
3-
"version": "0.3.38",
3+
"version": "0.3.39",
44
"description": "The common contract",
55
"main": "dist/index.js",
66
"type": "module",

contracts/common/src/common.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"source": {
3-
"hash": "0x11b5ce7b725c926fdb1a2ad532c981c424a8e7e1ce2720f9dc8602a2ea129b88",
3+
"hash": "0x8222c56428a5d9088623edf6b12b29d6e7a26e440e5e391646cc82dad8ef8c84",
44
"language": "ink! 4.3.0",
55
"compiler": "rustc 1.69.0",
66
"build_info": {
@@ -15,7 +15,7 @@
1515
},
1616
"contract": {
1717
"name": "common",
18-
"version": "0.3.38",
18+
"version": "0.3.39",
1919
"authors": [
2020
"Chris Taylor <chris@prosopo.io>",
2121
"George Oastler <george@prosopo.io>",

contracts/common/src/contract-info/common.ts

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

contracts/common/src/events/common.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export default class EventsClass {
3737
const [address, data] = record.event.data
3838

3939
if (address.toString() === this.__nativeContract.address.toString()) {
40-
const { args, event } = this.__nativeContract.abi.decodeEvent(data)
40+
const { args, event } = this.__nativeContract.abi.decodeEvent(record)
4141

4242
if (filter(event.identifier.toString())) callback(args, event)
4343
}

contracts/common/src/shared/utils.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,7 @@ export function decodeEvents(events: any[], contract: ContractPromise, types: an
3232
return event.method == 'ContractEmitted' && address.toString() === contract.address.toString()
3333
})
3434
.map((record: any) => {
35-
const [address, data] = record.event.data
36-
37-
const { args, event } = contract.abi.decodeEvent(data)
35+
const { args, event } = contract.abi.decodeEvent(record)
3836

3937
const _event: Record<string, any> = {}
4038

contracts/proxy/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@prosopo/proxy-contract",
3-
"version": "0.3.38",
3+
"version": "0.3.39",
44
"description": "The proxy contract",
55
"main": "dist/index.js",
66
"type": "module",

contracts/proxy/src/contract-info/proxy.ts

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

contracts/proxy/src/events/proxy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export default class EventsClass {
3737
const [address, data] = record.event.data
3838

3939
if (address.toString() === this.__nativeContract.address.toString()) {
40-
const { args, event } = this.__nativeContract.abi.decodeEvent(data)
40+
const { args, event } = this.__nativeContract.abi.decodeEvent(record)
4141

4242
if (filter(event.identifier.toString())) callback(args, event)
4343
}

contracts/proxy/src/proxy.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"source": {
3-
"hash": "0x05727273ab612900dc4ca91b5268e6a43cb083a3018f2984604e70ae6af63c29",
3+
"hash": "0xbaa5425507478a690724b271a945c10fffe219a3f2533ac9d6d34e9d50147209",
44
"language": "ink! 4.3.0",
55
"compiler": "rustc 1.69.0",
66
"build_info": {
@@ -15,7 +15,7 @@
1515
},
1616
"contract": {
1717
"name": "proxy",
18-
"version": "0.3.38",
18+
"version": "0.3.39",
1919
"authors": ["Chris Taylor <chris@prosopo.io>", "George Oastler <george@prosopo.io>"]
2020
},
2121
"spec": {

contracts/proxy/src/shared/utils.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,7 @@ export function decodeEvents(events: any[], contract: ContractPromise, types: an
3232
return event.method == 'ContractEmitted' && address.toString() === contract.address.toString()
3333
})
3434
.map((record: any) => {
35-
const [address, data] = record.event.data
36-
37-
const { args, event } = contract.abi.decodeEvent(data)
35+
const { args, event } = contract.abi.decodeEvent(record)
3836

3937
const _event: Record<string, any> = {}
4038

demos/client-bundle-example/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"dotenv": "^16.0.1",
2121
"vite": "^5.1.7"
2222
},
23-
"version": "0.3.38",
23+
"version": "0.3.39",
2424
"devDependencies": {
2525
"tslib": "2.6.2",
2626
"typescript": "5.1.6"

demos/client-example-server/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@prosopo/client-example-server",
3-
"version": "0.3.38",
3+
"version": "0.3.39",
44
"description": "Backend for client-example",
55
"main": "dist/app.js",
66
"type": "module",
@@ -38,11 +38,11 @@
3838
"@noble/hashes": "^1.3.1",
3939
"@polkadot/util": "12.6.2",
4040
"@polkadot/util-crypto": "12.6.2",
41-
"@prosopo/api": "0.3.38",
42-
"@prosopo/contract": "0.3.38",
43-
"@prosopo/procaptcha": "0.3.38",
44-
"@prosopo/server": "0.3.38",
45-
"@prosopo/types": "0.3.38",
41+
"@prosopo/api": "0.3.39",
42+
"@prosopo/contract": "0.3.39",
43+
"@prosopo/procaptcha": "0.3.39",
44+
"@prosopo/server": "0.3.39",
45+
"@prosopo/types": "0.3.39",
4646
"@typegoose/auto-increment": "3.3.0",
4747
"cors": "^2.8.5",
4848
"jsonwebtoken": "^9.0.0",
@@ -57,6 +57,6 @@
5757
"tslib": "2.6.2",
5858
"typescript": "5.1.6",
5959
"vite": "^5.1.7",
60-
"@prosopo/config": "0.3.38"
60+
"@prosopo/config": "0.3.39"
6161
}
6262
}

demos/client-example/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@prosopo/client-example",
3-
"version": "0.3.38",
3+
"version": "0.3.39",
44
"private": true,
55
"type": "module",
66
"engines": {
@@ -13,11 +13,11 @@
1313
"@mui/material": "^5.9.1",
1414
"@polkadot/extension-dapp": "0.46.9",
1515
"@polkadot/extension-inject": "0.46.9",
16-
"@prosopo/common": "0.3.38",
17-
"@prosopo/procaptcha": "0.3.38",
18-
"@prosopo/procaptcha-frictionless": "0.3.38",
19-
"@prosopo/procaptcha-react": "0.3.38",
20-
"@prosopo/types": "0.3.38",
16+
"@prosopo/common": "0.3.39",
17+
"@prosopo/procaptcha": "0.3.39",
18+
"@prosopo/procaptcha-frictionless": "0.3.39",
19+
"@prosopo/procaptcha-react": "0.3.39",
20+
"@prosopo/types": "0.3.39",
2121
"@types/react-dom": "^18.2.4",
2222
"electron": "25.8.4",
2323
"react": "^18.2.0",
@@ -38,9 +38,9 @@
3838
}
3939
},
4040
"devDependencies": {
41-
"@prosopo/cli": "0.3.38",
42-
"@prosopo/config": "0.3.38",
43-
"@prosopo/vite-plugin-watch-workspace": "^0.3.38",
41+
"@prosopo/cli": "0.3.39",
42+
"@prosopo/config": "0.3.39",
43+
"@prosopo/vite-plugin-watch-workspace": "0.3.39",
4444
"@types/node": "^20.3.1",
4545
"css-loader": "^6.8.1",
4646
"eslint-config-react-app": "^7.0.1",

demos/client-frictionless-example/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@prosopo/client-frictionless-example",
3-
"version": "0.3.38",
3+
"version": "0.3.39",
44
"private": true,
55
"type": "module",
66
"engines": {
@@ -11,20 +11,20 @@
1111
"@emotion/react": "^11.9.3",
1212
"@emotion/styled": "^11.9.3",
1313
"@mui/material": "^5.9.1",
14-
"@prosopo/common": "0.3.38",
15-
"@prosopo/procaptcha": "0.3.38",
16-
"@prosopo/procaptcha-frictionless": "0.3.38",
17-
"@prosopo/types": "0.3.38",
14+
"@prosopo/common": "0.3.39",
15+
"@prosopo/procaptcha": "0.3.39",
16+
"@prosopo/procaptcha-frictionless": "0.3.39",
17+
"@prosopo/types": "0.3.39",
1818
"@types/react-dom": "^18.2.4",
1919
"electron": "25.8.4",
2020
"react": "^18.2.0",
2121
"react-dom": "^18.2.0",
2222
"web-vitals": "^2.1.4",
23-
"@prosopo/procaptcha-pow": "0.3.38"
23+
"@prosopo/procaptcha-pow": "0.3.39"
2424
},
2525
"devDependencies": {
26-
"@prosopo/cli": "0.3.38",
27-
"@prosopo/config": "0.3.38",
26+
"@prosopo/cli": "0.3.39",
27+
"@prosopo/config": "0.3.39",
2828
"@types/node": "^20.3.1",
2929
"css-loader": "^6.8.1",
3030
"eslint-config-react-app": "^7.0.1",

demos/client-pow-example/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@prosopo/client-pow-example",
3-
"version": "0.3.38",
3+
"version": "0.3.39",
44
"private": true,
55
"type": "module",
66
"engines": {
@@ -11,20 +11,20 @@
1111
"@emotion/react": "^11.9.3",
1212
"@emotion/styled": "^11.9.3",
1313
"@mui/material": "^5.9.1",
14-
"@prosopo/common": "0.3.38",
15-
"@prosopo/procaptcha": "0.3.38",
16-
"@prosopo/procaptcha-react": "0.3.38",
17-
"@prosopo/types": "0.3.38",
14+
"@prosopo/common": "0.3.39",
15+
"@prosopo/procaptcha": "0.3.39",
16+
"@prosopo/procaptcha-react": "0.3.39",
17+
"@prosopo/types": "0.3.39",
1818
"@types/react-dom": "^18.2.4",
1919
"electron": "25.8.4",
2020
"react": "^18.2.0",
2121
"react-dom": "^18.2.0",
2222
"web-vitals": "^2.1.4",
23-
"@prosopo/procaptcha-pow": "0.3.38"
23+
"@prosopo/procaptcha-pow": "0.3.39"
2424
},
2525
"devDependencies": {
26-
"@prosopo/cli": "0.3.38",
27-
"@prosopo/config": "0.3.38",
26+
"@prosopo/cli": "0.3.39",
27+
"@prosopo/config": "0.3.39",
2828
"@types/node": "^20.3.1",
2929
"css-loader": "^6.8.1",
3030
"eslint-config-react-app": "^7.0.1",

demos/cypress-shared/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"name": "@prosopo/cypress-shared",
3-
"version": "0.3.38",
3+
"version": "0.3.39",
44
"private": true,
55
"type": "module",
66
"engines": {
77
"node": ">=18",
88
"npm": ">=9"
99
},
1010
"dependencies": {
11-
"@prosopo/types": "0.3.38",
12-
"@prosopo/util": "0.3.38"
11+
"@prosopo/types": "0.3.39",
12+
"@prosopo/util": "0.3.39"
1313
},
1414
"devDependencies": {
1515
"@cypress/xpath": "^2.0.3",

demos/dapp-example/contracts/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dapp"
3-
version = "0.3.38"
3+
version = "0.3.39"
44
authors = [ "Chris Taylor chris@prosopo.io" ]
55
edition = "2021"
66

demos/provider-mock/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@prosopo/provider-mock",
3-
"version": "0.3.38",
3+
"version": "0.3.39",
44
"author": "PROSOPO LIMITED <info@prosopo.io>",
55
"license": "Apache-2.0",
66
"main": "./dist/index.js",
@@ -21,9 +21,9 @@
2121
"lint:fix": "npm run eslint:fix && npm run prettier:fix"
2222
},
2323
"dependencies": {
24-
"@prosopo/cli": "0.3.38",
25-
"@prosopo/common": "0.3.38",
26-
"@prosopo/types": "0.3.38",
24+
"@prosopo/cli": "0.3.39",
25+
"@prosopo/common": "0.3.39",
26+
"@prosopo/types": "0.3.39",
2727
"es-main": "^1.3.0",
2828
"express": "^4.18.1"
2929
},

dev/config/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@prosopo/config",
3-
"version": "0.3.38",
3+
"version": "0.3.39",
44
"description": "Prosopo config library",
55
"main": "./dist/index.js",
66
"type": "module",
@@ -23,9 +23,9 @@
2323
"license": "Apache-2.0",
2424
"dependencies": {
2525
"@polkadot/dev": "^0.76.11",
26-
"@prosopo/common": "0.3.38",
27-
"@prosopo/types": "0.3.38",
28-
"@prosopo/util": "0.3.38",
26+
"@prosopo/common": "0.3.39",
27+
"@prosopo/types": "0.3.39",
28+
"@prosopo/util": "0.3.39",
2929
"@rollup/plugin-alias": "^5.1.0",
3030
"@rollup/plugin-babel": "^6.0.4",
3131
"@rollup/plugin-commonjs": "^25.0.7",

dev/flux/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@prosopo/flux",
3-
"version": "0.3.38",
3+
"version": "0.3.39",
44
"description": "Tools for managing Flux deployment",
55
"main": "dist/index.js",
66
"bin": {
@@ -30,9 +30,9 @@
3030
"@noble/curves": "^1.3.0",
3131
"@polkadot/util": "12.6.2",
3232
"@polkadot/util-crypto": "12.6.2",
33-
"@prosopo/cli": "0.3.38",
34-
"@prosopo/common": "0.3.38",
35-
"@prosopo/util": "0.3.38",
33+
"@prosopo/cli": "0.3.39",
34+
"@prosopo/common": "0.3.39",
35+
"@prosopo/util": "0.3.39",
3636
"consola": "^3.2.3",
3737
"dotenv": "^16.0.3",
3838
"glob": "^10.0.0",

dev/gh-actions/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gh-actions",
3-
"version": "0.3.38",
3+
"version": "0.3.39",
44
"description": "",
55
"private": true,
66
"scripts": {

dev/prosoponator-bot/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "prosoponator-bot",
3-
"version": "0.3.38",
3+
"version": "0.3.39",
44
"description": "",
55
"private": true,
66
"scripts": {

0 commit comments

Comments
 (0)