Skip to content
This repository was archived by the owner on Nov 5, 2024. It is now read-only.

Commit 60a623d

Browse files
committed
Remove @onflow/config
1 parent 491279f commit 60a623d

File tree

7 files changed

+5
-9
lines changed

7 files changed

+5
-9
lines changed

package-lock.json

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@
4848
]
4949
},
5050
"dependencies": {
51-
"@onflow/config": "^1.0.3-alpha.0",
5251
"@onflow/fcl": "^1.2.1-alpha.0",
5352
"@onflow/fcl-config": "^0.0.1",
5453
"@onflow/flow-cadut": "0.2.0-alpha.8",

src/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
*/
1818

1919
import {flowConfig} from "@onflow/fcl-config"
20-
import {config} from "@onflow/config"
20+
import {config} from "@onflow/fcl"
2121

2222
/**
2323
* Get value from provided scope and path.

src/crypto.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
import * as rlp from "rlp"
2020
import {ec as EC} from "elliptic"
21-
import {config} from "@onflow/config"
21+
import {config} from "@onflow/fcl"
2222
import {isObject, isString} from "./utils"
2323

2424
import {sha3_256} from "js-sha3"

src/emulator.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@
1515
* See the License for the specific language governing permissions and
1616
* limitations under the License.
1717
*/
18-
import {send, build, getBlock, decode} from "@onflow/fcl"
19-
import {config} from "@onflow/config"
18+
import {send, build, getBlock, decode, config} from "@onflow/fcl"
2019
import {getAvailablePorts} from "./utils"
2120

2221
const {spawn} = require("child_process")

src/file.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
import fs from "fs"
2020
import path from "path"
21-
import {config} from "@onflow/config"
21+
import {config} from "@onflow/fcl"
2222

2323
import {replaceImportAddresses} from "./imports"
2424
import {isObject} from "./utils"

src/manager.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@
1717
*/
1818

1919
import {executeScript, sendTransaction} from "./interaction"
20-
import {config} from "@onflow/config"
21-
import {withPrefix} from "@onflow/fcl"
20+
import {withPrefix, config} from "@onflow/fcl"
2221
import {hexContract} from "./deploy-code"
2322
import registry from "./generated"
2423

0 commit comments

Comments
 (0)