Skip to content

Commit f7f9597

Browse files
authored
Release 2.3.2 (#274)
* Realign/2.3.1 (#270) * Adjust version to `2.2.1-next` Adjust `changelog` * More for `CHANGELOG` * fix typo * fix linter error * trigger jenkins * bump version in package and CHANGELOG * Add info to `CHANGELOG` * force Jenkins * bump version in package update CHANGELOG * Adjust CHANGELOG * fix text * forgotten generated docs * bump version * CHANGELOG * trigger Jenkins * Fix/example app (#271) * Fix min gasPrice for contract Change node version in `.env` to `v2.0.0` * Fix `aepp` example app * Force image pull before builds * debug Jenkins * fix contract tests * bump version add 2.3.2 to CHANGELOG * adjust CHANGELOG * Trigger Jenkins * debug Jenkins * revert debug
1 parent a18e448 commit f7f9597

File tree

8 files changed

+33
-13
lines changed

8 files changed

+33
-13
lines changed

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
TAG=minerva
1+
TAG=v2.0.0

CHANGELOG.md

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,24 @@
22
All notable changes to this project will be documented in this file. This change
33
log follows the conventions of [keepachangelog.com](http://keepachangelog.com/).
44

5+
## [2.3.2]
6+
### Added
7+
- none
8+
9+
### Changed
10+
- Change default `gasPrice` from `1e6` to `1e9z
11+
- Fix `AEPP` example app
12+
- Force `image` pull before `builds`
13+
14+
### Removed
15+
- none
16+
17+
### Breaking Changes
18+
- none
19+
20+
### Notes and known Issues
21+
- none
22+
523
## [2.3.1]
624
### Added
725
- `Oracle` fee calculation
@@ -544,5 +562,5 @@ log follows the conventions of [keepachangelog.com](http://keepachangelog.com/).
544562
[2.2.1-next]: https://github.com/aeternity/aepp-sdk-js/compare/2.1.1-0.1.0-next...2.2.1-next
545563
[2.3.0-next]: https://github.com/aeternity/aepp-sdk-js/compare/2.2.1-next...2.3.0-next
546564
[2.3.0]: https://github.com/aeternity/aepp-sdk-js/compare/2.3.0-next...2.3.0
547-
[2.3.0]: https://github.com/aeternity/aepp-sdk-js/compare/2.3.0...2.3.1
548-
565+
[2.3.1]: https://github.com/aeternity/aepp-sdk-js/compare/2.3.0...2.3.1
566+
[2.3.2]: https://github.com/aeternity/aepp-sdk-js/compare/2.3.1...2.3.2

Jenkinsfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ pipeline {
2323
withCredentials([usernamePassword(credentialsId: 'genesis-wallet',
2424
usernameVariable: 'WALLET_PUB',
2525
passwordVariable: 'WALLET_PRIV')]) {
26+
sh 'docker-compose -H localhost:2376 pull node'
2627
sh 'docker-compose -H localhost:2376 build'
2728
sh 'docker-compose -H localhost:2376 run sdk pnpm run test-jenkins'
2829
}

es/ae/contract.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ const Contract = Ae.compose({
229229
defaults: {
230230
deposit: 0,
231231
vmVersion: 1,
232-
gasPrice: 1000000, // min gasPrice 1e6
232+
gasPrice: 1000000000, // min gasPrice 1e9
233233
amount: 0,
234234
gas: 1600000 - 21000,
235235
options: ''

es/tx/tx.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ import { buildContractId, oracleQueryId } from './builder/helpers'
3434

3535
const ORACLE_VM_VERSION = 0
3636
const CONTRACT_VM_VERSION = 1
37-
const MIN_GAS_PRICE = 1000000 // min gasPrice 1e6
37+
const MIN_GAS_PRICE = 1000000000 // min gasPrice 1e9
3838
// TODO This values using as default for minerva node
3939
const CONTRACT_MINERVA_VM_ABI = 196609
4040
const CONTRACT_MINERVA_VM = 3

examples/connect-two-ae/identity/src/components/Home.vue

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,14 @@ export default {
4848
components: {},
4949
data () {
5050
return {
51-
pub: 'ak_6A2vcm1Sz6aqJezkLCssUXcyZTX7X8D5UwbuS2fRJr9KkYpRU',
52-
priv: 'a7a695f999b1872acb13d5b63a830a8ee060ba688a478a08c6e65dfad8a01cd70bb4ed7927f97b51e1bcb5e1340d12335b2a2b12c8bc5221d63c4bcb39d41e61',
51+
pub: 'ak_6A2vcm1Sz6aqJezkLCssUXcyZTX7X8D5UwbuS2fRJr9KkYpRU', // Your public key
52+
priv: 'a7a695f999b1872acb13d5b63a830a8ee060ba688a478a08c6e65dfad8a01cd70bb4ed7927f97b51e1bcb5e1340d12335b2a2b12c8bc5221d63c4bcb39d41e61', // Your private key
5353
client: null,
5454
wallet: null,
5555
balance: null,
5656
height: null,
57+
url: 'https://sdk-mainnet.aepps.com',
58+
internalUrl: 'https://sdk-mainnet.aepps.com',
5759
aeppUrl: '//0.0.0.0:9001'
5860
}
5961
},
@@ -69,15 +71,14 @@ export default {
6971
window.addEventListener('message', console.log, false)
7072
7173
Wallet({
72-
url: 'https://sdk-mainnet.aepps.com',
73-
internalUrl: 'https://sdk-mainnet.aepps.com',
74+
url: this.url,
75+
internalUrl: this.internalUrl,
7476
accounts: [MemoryAccount({keypair: {secretKey: this.priv, publicKey: this.pub}})],
7577
address: this.pub,
7678
onTx: this.confirmDialog,
7779
onChain: this.confirmDialog,
7880
onAccount: this.confirmDialog,
79-
onContract: this.confirmDialog,
80-
networkId: 'ae_mainnet'
81+
onContract: this.confirmDialog
8182
}).then(ae => {
8283
this.client = ae
8384
console.log('status', this.client.api.getTopBlock())

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aeternity/aepp-sdk",
3-
"version": "2.3.1",
3+
"version": "2.3.2",
44
"description": "SDK for the æternity blockchain",
55
"main": "dist/aepp-sdk.js",
66
"browser": "dist/aepp-sdk.browser.js",

test/integration/transaction.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ contract Identity =
4949
`
5050
let contractId
5151
const deposit = 4
52-
const gasPrice = 1000000
52+
const gasPrice = 1000000000
5353
const gas = 1600000 - 21000 // MAX GAS
5454

5555
let _salt

0 commit comments

Comments
 (0)