github.com/onflow/flow-go@v0.35.7-crescendo-preview.23-atree-inlining/fvm/blueprints/scripts/deployFlowTokenTransactionTemplate.cdc (about)

     1  transaction(code: String) {
     2    prepare(flowTokenAccount: auth(AddContract) &Account, serviceAccount: auth(Storage, Capabilities) &Account) {
     3      let adminAccount = serviceAccount
     4      flowTokenAccount.contracts.add(name: "FlowToken", code: code.decodeHex(), adminAccount: adminAccount)
     5    }
     6  }