Skip to content

Commit

Permalink
Merge branch 'dev' into documentation_updates
Browse files Browse the repository at this point in the history
  • Loading branch information
ipopescu authored Mar 13, 2024
2 parents dd786d1 + 6ec9d34 commit 02d97ed
Show file tree
Hide file tree
Showing 10 changed files with 2,891 additions and 9,462 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-casper-rust-contract.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
strategy:
matrix:
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
node-version: [16.x]
node-version: [16.x, 20.x]

steps:
- name: Checkout
Expand All @@ -48,7 +48,7 @@ jobs:
uses: actions/setup-node@5b949b50c3461bbcd5a540b150c368278160234a #v3.4.0
with:
node-version: ${{ matrix.node-version }}
registry-url: "https://registry.npmjs.org"
registry-url: 'https://registry.npmjs.org'

- name: Install
working-directory: client-js
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-js-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
node-version: [16.x]
node-version: [16.x, 20.x]

steps:
- name: Checkout
Expand All @@ -34,7 +34,7 @@ jobs:
uses: actions/setup-node@5b949b50c3461bbcd5a540b150c368278160234a #v3.4.0
with:
node-version: ${{ matrix.node-version }}
registry-url: "https://registry.npmjs.org"
registry-url: 'https://registry.npmjs.org'

- name: Install
working-directory: ./client-js
Expand Down
4 changes: 2 additions & 2 deletions cep18-test-contract/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ doctest = false
test = false

[dependencies]
casper-contract = "2.0.0"
casper-types = "2.0.0"
casper-contract = "3.0.0"
casper-types = "3.0.0"
7 changes: 3 additions & 4 deletions cep18/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,8 @@ test = false

[dependencies]
base64 = { version = "0.20.0", default-features = false, features = ["alloc"] }
casper-contract = "2.0.0"
casper-types = "2.0.0"
casper-contract = "3.0.0"
casper-types = "3.0.0"
hex = { version = "0.4.3", default-features = false }
once_cell = { version = "1.16.0", default-features = false }
casper-event-standard = { version = "0.3.0", default-features = false }
getrandom = { version = "0.2", features = ["js"] }
casper-event-standard = { version = "0.4.1", default-features = false }
2 changes: 1 addition & 1 deletion client-js/examples/install.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const install = async () => {
const deploy = cep18.install(
ContractWASM,
tokenInfo,
150_000_000_000,
250_000_000_000,
owner.publicKey,
NETWORK_NAME,
[owner]
Expand Down
Loading

0 comments on commit 02d97ed

Please sign in to comment.