Skip to content

Commit

Permalink
fix: update clarity ts imports (v0.13)
Browse files Browse the repository at this point in the history
  • Loading branch information
lgalabru committed Jun 23, 2021
1 parent 56b664f commit 9be1f72
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ command:
$ clarinet test
```

You can review the available testing commands in the [Deno Clarity library](https://deno.land/x/clarinet@v0.6.0/index.ts).
You can review the available testing commands in the [Deno Clarity library](https://deno.land/x/clarinet@v0.13.0/index.ts).

### Load contracts in a console

Expand Down
2 changes: 1 addition & 1 deletion examples/counter/scripts/abi.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Clarinet, Contract, Account, StacksNode } from 'https://deno.land/x/clarinet@v0.12.0/index.ts';
import { Clarinet, Contract, Account, StacksNode } from 'https://deno.land/x/clarinet@v0.13.0/index.ts';

Clarinet.run({
async fn(accounts: Map<string, Account>, contracts: Map<string, Contract>, node: StacksNode) {
Expand Down
2 changes: 1 addition & 1 deletion examples/counter/tests/counter_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Clarinet, Tx, Chain, Account, Contract, types } from 'https://deno.land/x/clarinet@v0.12.0/index.ts';
import { Clarinet, Tx, Chain, Account, Contract, types } from 'https://deno.land/x/clarinet@v0.13.0/index.ts';
import { assertEquals } from "https://deno.land/[email protected]/testing/asserts.ts";

Clarinet.test({
Expand Down
2 changes: 1 addition & 1 deletion src/generators/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ impl GetChangesForNewContract {
fn create_template_test(&mut self) {
let content = format!(
r#"
import {{ Clarinet, Tx, Chain, Account, types }} from 'https://deno.land/x/clarinet@v0.12.0/index.ts';
import {{ Clarinet, Tx, Chain, Account, types }} from 'https://deno.land/x/clarinet@v0.13.0/index.ts';
import {{ assertEquals }} from 'https://deno.land/[email protected]/testing/asserts.ts';
Clarinet.test({{
Expand Down

0 comments on commit 9be1f72

Please sign in to comment.