github.com/onflow/flow-go@v0.33.17/fvm/blueprints/scripts/setContractOperationAuthorizersTransactionTemplate.cdc (about)

     1  transaction(addresses: [Address], path: StoragePath) {
     2  	prepare(signer: AuthAccount) {
     3  		signer.load<[Address]>(from: path)
     4  		signer.save(addresses, to: path)
     5  	}
     6  }