Skip to content

Commit 192f9d5

Browse files
author
jerome p
committed
Update imports to be replaced from config
1 parent 83fafa6 commit 192f9d5

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

script/cadence/scripts/get-balances-basic.cdc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import FlowToken from 0x0ae53cb6e3f42a79
2-
import FungibleToken from 0xee82856bf20e2aa6
1+
import FlowToken from 0x{{.Contracts.FlowToken}}
2+
import FungibleToken from 0x{{.Contracts.FungibleToken}}
33

44
access(all) struct AccountBalances {
55
access(all) let default_balance: UFix64

script/cadence/scripts/get-balances.cdc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
// restored then it's a bridge to cross at that time
33
//import FlowColdStorageProxy from 0xProxy
44

5-
import FlowToken from 0x0ae53cb6e3f42a79
6-
import FungibleToken from 0xee82856bf20e2aa6
5+
import FlowToken from 0x{{.Contracts.FlowToken}}
6+
import FungibleToken from 0x{{.Contracts.FungibleToken}}
77

88
access(all) struct AccountBalances {
99
access(all) let default_balance: UFix64

script/cadence/transactions/basic-transfer.cdc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import FlowToken from 0x0ae53cb6e3f42a79
2-
import FungibleToken from 0xee82856bf20e2aa6
1+
import FlowToken from 0x{{.Contracts.FlowToken}}
2+
import FungibleToken from 0x{{.Contracts.FungibleToken}}
33

44
transaction(receiver: Address, amount: UFix64) {
55

0 commit comments

Comments
 (0)