Skip to content

Commit 30b3506

Browse files
committed
use standard import placeholders
1 parent 68ecf99 commit 30b3506

File tree

286 files changed

+1263
-1282
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

286 files changed

+1263
-1282
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ git
1515

1616
coverage.json
1717
coverage.lcov
18+
lcov.info
1819
*.pkey
1920

2021
# Private flow.jsons

contracts/FlowFees.cdc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import FungibleToken from "FungibleToken"
2-
import FlowToken from "FlowToken"
3-
import FlowStorageFees from "FlowStorageFees"
1+
import "FungibleToken"
2+
import "FlowToken"
3+
import "FlowStorageFees"
44

55
access(all) contract FlowFees {
66

contracts/FlowIDTableStaking.cdc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@
2727
2828
*/
2929

30-
import FungibleToken from "FungibleToken"
31-
import FlowToken from "FlowToken"
32-
import Burner from "Burner"
33-
import FlowFees from "FlowFees"
30+
import "FungibleToken"
31+
import "FlowToken"
32+
import "Burner"
33+
import "FlowFees"
3434
import Crypto
3535

3636
access(all) contract FlowIDTableStaking {

contracts/FlowServiceAccount.cdc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
import FungibleToken from "FungibleToken"
2-
import FlowToken from "FlowToken"
3-
import FlowFees from "FlowFees"
4-
import FlowStorageFees from "FlowStorageFees"
5-
import FlowExecutionParameters from "FlowExecutionParameters"
1+
import "FungibleToken"
2+
import "FlowToken"
3+
import "FlowFees"
4+
import "FlowStorageFees"
5+
import "FlowExecutionParameters"
66

77
access(all) contract FlowServiceAccount {
88

contracts/FlowStakingCollection.cdc

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@
1010
1111
*/
1212

13-
import FungibleToken from "FungibleToken"
14-
import FlowToken from "FlowToken"
15-
import FlowIDTableStaking from "FlowIDTableStaking"
16-
import LockedTokens from "LockedTokens"
17-
import FlowStorageFees from "FlowStorageFees"
18-
import FlowClusterQC from "FlowClusterQC"
19-
import FlowDKG from "FlowDKG"
20-
import FlowEpoch from "FlowEpoch"
21-
import Burner from "Burner"
13+
import "FungibleToken"
14+
import "FlowToken"
15+
import "FlowIDTableStaking"
16+
import "LockedTokens"
17+
import "FlowStorageFees"
18+
import "FlowClusterQC"
19+
import "FlowDKG"
20+
import "FlowEpoch"
21+
import "Burner"
2222

2323
access(all) contract FlowStakingCollection {
2424

contracts/FlowStorageFees.cdc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
*
1515
*/
1616

17-
import FungibleToken from "FungibleToken"
18-
import FlowToken from "FlowToken"
17+
import "FungibleToken"
18+
import "FlowToken"
1919

2020
access(all) contract FlowStorageFees {
2121

contracts/FlowToken.cdc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import FungibleToken from "FungibleToken"
2-
import MetadataViews from "MetadataViews"
3-
import FungibleTokenMetadataViews from "FungibleTokenMetadataViews"
1+
import "FungibleToken"
2+
import "MetadataViews"
3+
import "FungibleTokenMetadataViews"
44

55
access(all) contract FlowToken: FungibleToken {
66

contracts/LockedTokens.cdc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@
2525
2626
*/
2727

28-
import FlowToken from "FlowToken"
29-
import FungibleToken from "FungibleToken"
30-
import FlowIDTableStaking from "FlowIDTableStaking"
31-
import FlowStorageFees from "FlowStorageFees"
32-
import StakingProxy from "StakingProxy"
28+
import "FlowToken"
29+
import "FungibleToken"
30+
import "FlowIDTableStaking"
31+
import "FlowStorageFees"
32+
import "StakingProxy"
3333

3434
access(all) contract LockedTokens {
3535

contracts/epochs/FlowEpoch.cdc

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import FungibleToken from "FungibleToken"
2-
import FlowToken from "FlowToken"
3-
import FlowIDTableStaking from "FlowIDTableStaking"
4-
import FlowClusterQC from "FlowClusterQC"
5-
import FlowDKG from "FlowDKG"
6-
import FlowFees from "FlowFees"
1+
import "FungibleToken"
2+
import "FlowToken"
3+
import "FlowIDTableStaking"
4+
import "FlowClusterQC"
5+
import "FlowDKG"
6+
import "FlowFees"
77

88
// The top-level smart contract managing the lifecycle of epochs. In Flow,
99
// epochs are the smallest unit of time where the identity table (the set of

contracts/testContracts/TestFlowIDTableStaking.cdc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
88
*/
99

10-
import FungibleToken from "FungibleToken"
11-
import FlowToken from "FlowToken"
10+
import "FungibleToken"
11+
import "FlowToken"
1212
// import Burner from "Burner"
1313

1414
access(all) contract FlowIDTableStaking {

0 commit comments

Comments
 (0)