Skip to content

Commit

Permalink
fix: dependencies to run examples
Browse files Browse the repository at this point in the history
  • Loading branch information
Stanislav-Povolotsky committed Nov 5, 2023
1 parent cd33725 commit 3c201fa
Show file tree
Hide file tree
Showing 4 changed files with 3,990 additions and 2,368 deletions.
10 changes: 10 additions & 0 deletions examples/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
node_modules
dist

# yarn
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
12 changes: 6 additions & 6 deletions examples/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "@ton-community/sandbox-examples",
"name": "@ton/sandbox-examples",
"version": "0.0.1",
"license": "MIT",
"devDependencies": {
"@ton-community/sandbox": "^0.11.0",
"@ton/test-utils": "^0.2.0",
"@ton/core": "^0.52.2",
"@ton/crypto": "^3.2.0",
"@ton/sandbox": "^0.11.0",
"@ton/test-utils": "^0.3.1",
"@ton/ton": "^13.5.1",
"@types/jest": "^29.5.1",
"jest": "^29.5.0",
"@ton/ton": "^13.5.1",
"@ton/core": "^0.49.1",
"@ton/crypto": "^3.2.0",
"ts-jest": "^29.1.0",
"typescript": "^4.9.5"
},
Expand Down
2 changes: 1 addition & 1 deletion examples/remote-storage/RemoteStorage.spec.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { TonClient4 } from "@ton/ton"
import { Address, toNano, SendMode } from "@ton/core"
import { Blockchain, RemoteBlockchainStorage, wrapTonClient4ForRemote } from "@ton-community/sandbox"
import { Blockchain, RemoteBlockchainStorage, wrapTonClient4ForRemote } from "@ton/sandbox"
import { NftSaleV3 } from "../contracts/NftSaleV3"
import { NftItem } from "../contracts/NftItem"
import "@ton/test-utils" // register matchers
Expand Down
Loading

0 comments on commit 3c201fa

Please sign in to comment.